/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #fff8f0, #fce4ec);
    color: #3E2723;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  /* ===== Header / Navbar ===== */
  header {
    background-color: rgba(255, 255, 255, 0.7);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #800000;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #3E2723;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #D4AF37;
  }
/* ===== Hero Section ===== */
.hero {
    background: url('your-hero-image.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    color: #fff;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    background-color: #800000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #D4AF37;
    color: #3E2723;
  }
/* ===== Our Story Section ===== */
.our-story {
    background-color: #fff8f0;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .story-container {
    max-width: 800px;
    margin: auto;
    color: #3E2723;
  }
  
  .story-logo {
    width: 120px;
    margin-bottom: 1rem;
  }
  
  .our-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #800000;
    margin-bottom: 1rem;
  }
  
  .our-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 400;
  }

  
  /* ===== Collections Section ===== */
.collections {
    padding: 4rem 2rem;
    background-color: #fce4ec;
    text-align: center;
  }
  
  .collections-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .collections h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #800000;
    margin-bottom: 2rem;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #fff;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  .caption {
    padding: 1rem;
    font-weight: 500;
    color: #3E2723;
  }
  

  /* ===== Dropdown Menu Styles ===== */
.dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: #fff8f0;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu li {
    list-style: none;
    margin: 0.5rem 0;
  }
  
  .dropdown-menu li a {
    text-decoration: none;
    color: #3E2723;
    font-weight: 500;
  }
  
  .dropdown-menu li a:hover {
    color: #D4AF37;
  }

  
  /* ===== Request Section ===== */
.request-section {
    padding: 4rem 2rem;
    background-color: #fff8f0;
    text-align: center;
  }
  
  .request-container {
    max-width: 600px;
    margin: auto;
  }
  
  .request-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #800000;
    margin-bottom: 1rem;
  }
  
  .request-section p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #3E2723;
  }
  
  .request-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .request-section input,
  .request-section textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
  }
  
  .request-section button {
    background-color: #800000;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .request-section button:hover {
    background-color: #D4AF37;
    color: #3E2723;
  }

  
  /* ===== Contact Section ===== */
.contact-section {
    padding: 4rem 2rem;
    background-color: #fce4ec;
    text-align: center;
  }
  
  .contact-container {
    max-width: 600px;
    margin: auto;
  }
  
  .contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #800000;
    margin-bottom: 1rem;
  }
  
  .contact-section p {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #3E2723;
  }
  
  .contact-details a {
    color: #800000;
    text-decoration: none;
    font-weight: 500;
  }
  
  .contact-details a:hover {
    color: #D4AF37;
  }
  

  /* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 1.5rem;
    padding: 0.6rem 1rem;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
  }
  
  .whatsapp-float:hover {
    background-color: #128C7E;
  }
  

  /* ===== Footer ===== */
.footer {
    background-color: #800000;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.95rem;
  }
  
  .footer-container p {
    margin: 0.5rem 0;
  }
  
  .footer-quote {
    font-style: italic;
    color: #fce4ec;
  }
  

  /* ===== Enhanced Header / Navbar ===== */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-top: 4px solid #800000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #800000;
    letter-spacing: 1px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    position: relative;
    text-decoration: none;
    color: #3E2723;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #D4AF37;
  }
  
  /* Underline hover effect */
  .nav-links a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -4px;
    left: 0;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  

  /* ===== Modal Styles ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
  }
  
  .modal-content img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
  }
  
  .modal-content h3 {
    font-family: 'Playfair Display', serif;
    color: #800000;
    margin-bottom: 0.5rem;
  }
  
  .modal-content p {
    margin-bottom: 1rem;
  }
  
  .order-btn {
    background-color: #25D366;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .order-btn:hover {
    background-color: #128C7E;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.8rem;
    color: #800000;
    cursor: pointer;
  }
  

  .gallery-item {
    cursor: pointer;
  }
  

  .gallery-item:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
  }
  

  .modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
    position: relative;
  }
  
  .modal-content img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  
  .modal-content h3 {
    font-family: 'Playfair Display', serif;
    color: #800000;
  }
  
  .modal-content p {
    margin: 1rem 0;
  }
  
  .order-btn {
    background-color: #25D366;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .order-btn:hover {
    background-color: #128C7E;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.8rem;
    color: #800000;
    cursor: pointer;
  }
  

/* Gallery Section (Responsive Grid) */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Creates responsive grid */
    gap: 20px; /* Adds space between items */
    padding: 20px;
  }
  
  .jewel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .jewel-card {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background-color: #fffaf2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  
  .jewel-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .jewel-card h3 {
    font-size: 1.1rem;
    margin: 10px 0 5px;
    color: #9c5600;
  }
  
  .jewel-card p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .whatsapp-button {
    background-color: #25d366;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
  }
  
  .whatsapp-button:hover {
    background-color: #1ebe5d;
  }
  
  


  
/* Hero Section */
.hero {
    text-align: center;
    background-color: #f3f3f3;
    padding: 60px 0;
  }
  
  .hero img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .cta-button {
    background-color: #9c5600;
    color: white;
    padding: 10px 20px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .cta-button:hover {
    background-color: #7e3f00;
  }
  
  /* Coming Soon Section */
  .coming-soon {
    background-color: #fff8e1;
    padding: 40px;
    text-align: center;
  }
  
  .coming-soon h2 {
    color: #9c5600;
    font-size: 2rem;
  }
  
  .coming-soon form {
    margin-top: 20px;
  }
  
  .coming-soon input {
    padding: 10px;
    font-size: 1rem;
    width: 250px;
    margin-right: 10px;
    border-radius: 5px;
  }
  
  .coming-soon button {
    background-color: #9c5600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
  }
  
  .coming-soon button:hover {
    background-color: #7e3f00;
  }
  
  /* Gallery Section */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .gallery-item {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
  }
  
  .gallery-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .gallery-item .caption {
    font-size: 1rem;
    color: #333;
  }
  
  


  /* Hero Section for Lehenga Page */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100vh;  /* Adjust the height as needed */
    text-align: center;
    color: #fff;
    padding: 60px 20px;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  
  .hero h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #fff;
  }
  
  .hero .btn {
    padding: 10px 20px;
    background-color: #9c5600;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .hero .btn:hover {
    background-color: #7e3f00;
  }
  

  .hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100vh;  /* Full screen height */
    text-align: center;
    color: #fff;
    padding: 60px 20px;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  
  .hero h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #fff;
  }
  
  .hero .btn {
    padding: 10px 20px;
    background-color: #9c5600;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .hero .btn:hover {
    background-color: #7e3f00;
  }
  

  



  .search-bar {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    margin: 20px auto;
    display: block;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
  }
  

  