html {
  scroll-behavior: smooth;
}

/* Fonts */
body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background-color: #fff;
  color: #000;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo */
.logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Nav */
nav a.active {
  border-bottom: 2px solid #000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #000;
  transition: color 0.3s;
  padding: 5px 0;
  display: block;
}

nav ul li a:hover {
  color: #aaa;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 160px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 10px 0;
}

.dropdown-menu li a {
  padding: 8px 16px;
  font-size: 0.95rem;
  color: #000;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* WhatsApp CTA in header */
.whatsapp-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  padding: 8px 14px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-cta a:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
}

.whatsapp-cta i {
  font-size: 18px;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;      /* Force it to fill the screen */
  margin: 0 auto;
  background-color: #fff; /* ESSENTIAL: Prevents white flash before poster loads */
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures both poster and video cover the screen identically */
  display: block;
}

/* Ensure the hero section matches the container */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
}

/* Animation for the Hero Section */
.video-container {
  animation: fadeInHero 1.5s ease-in-out;
}

@keyframes fadeInHero {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* About Us Section */
.about {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Fashion Lines */
#fashion-lines {
  padding: 50px 20px;
  text-align: center;
}

#fashion-lines h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.fashion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fashion-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}

.fashion-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fashion-item:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px;
  text-align: center;
  transition: background 0.3s ease;
}

.overlay p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.fashion-item:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* Collections Headings and writeup Sections */
.board-content {
  text-align: center;
  margin: 40px auto;
}

.board-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.board-content p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center; 
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Fashion line colors for h1 */
.ardor-hero h1 { color: #B22222; }
.regal-hero h1 { color: #8B4513; }
.pearl-hero h1 { color: #800080; }
.empress-hero h1 { color: #C5A000; }
.baberry-hero h1 { color: #FF69B4; }
.allure-hero h1 { color: #800000; }


/* Footer */
.footer {
  display: flex;
  flex-direction: column;      
  justify-content: center;
  align-items: center;         
  text-align: center;
  padding: 2rem 1.5rem 3rem 1.5rem;       
  background-color: #fff;
  border-top: 1px solid #ddd;
  gap: 2rem;                  
}

/* Copyright and Credit text */
.footer p {
  text-align: center;
  font-size: 0.95rem;
  color: #333;
  margin: 0.5rem;          
  padding: 0;        
}

/* Credit smaller */
.footer .credit {
  font-size: 0.75rem;
  color: #333;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;                  /* space between icons */
  margin-bottom: 1.5rem;        /* extra space from bottom of screen */
}

.social-icons a {
  font-size: 1.2rem;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #000;
}


/* Scroll-up arrow (hidden until scroll) */
.scroll-up {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #000;
  color: #fff;
  padding: 0.6rem;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.scroll-up.show {
  opacity: 1;
  visibility: visible;
}


/* Default hover fallback */
.scroll-up:hover {
  background-color: #333;
  transform: translateY(-4px);
}

/* Collection-specific hover colors */
body.regal .scroll-up:hover {
  background-color: #8B4513; /* Regal */
  color: #fff;
}

body.ardor .scroll-up:hover {
  background-color: #B22222; /* Ardor */
  color: #fff;
}

body.pearl .scroll-up:hover {
  background-color: #800080; /* Pearl */
  color: #fff;
}

body.empress .scroll-up:hover {
  background-color: #C5A000; /* Empress */
  color: #000;
}

body.baberry .scroll-up:hover {
  background-color: #FF69B4; /* Baberry */
  color: #000;
}

body.allure .scroll-up:hover {
  background-color: #800000; /* Allure */
  color: #fff;
}

/* --- Global Hint Styling --- */
.view-more-hint {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.view-more-hint i {
  font-size: 0.8rem;
  animation: hintArrowMove 1.5s infinite ease-in-out;
}

@keyframes hintArrowMove {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* --- Collection Specific Colors --- */
body.regal .view-more-hint   { color: #8B4513; } /* Brown */
body.ardor .view-more-hint   { color: #B22222; } /* Red */
body.pearl .view-more-hint   { color: #800080; } /* Purple */
body.empress .view-more-hint { color: #C5A000; } /* Darker Gold for readability */
body.baberry .view-more-hint { color: #FF69B4; } /* Pink */
body.allure .view-more-hint  { color: #800000; } /* Maroon */

/* --- Order Now Button Styling --- */
.product-cta {
  display: block;
  width: 85%;            /* Slightly wider for a better tap target on mobile */
  margin: 15px auto 10px auto;
  padding: 12px 10px;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;      /* Sharp corners look more "couture" than rounded ones */
  transition: all 0.4s ease;
  position: relative;
  z-index: 10;           /* Ensures it stays above the card's click layer */
  text-align: center;
}

/* Default Colors (Black background, White text) */
.product-cta {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

/* Collection Specific Button Colors */
body.regal .product-cta   { background-color: #8B4513; border-color: #8B4513; }
body.ardor .product-cta   { background-color: #B22222; border-color: #B22222; }
body.pearl .product-cta   { background-color: #800080; border-color: #800080; }
body.empress .product-cta { background-color: #C5A000; border-color: #C5A000; }
body.baberry .product-cta { background-color: #FF69B4; border-color: #FF69B4; }
body.allure .product-cta  { background-color: #800000; border-color: #800000; }

/* Elegant Hover State: Transparent Background */
.product-cta:hover {
  background-color: transparent !important; /* Makes the button hallow */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* This ensures the text turns into the THEME color when the background vanishes */
body.regal .product-cta:hover   { color: #8B4513 !important; border-color: #8B4513; }
body.ardor .product-cta:hover   { color: #B22222 !important; border-color: #B22222; }
body.pearl .product-cta:hover   { color: #800080 !important; border-color: #800080; }
body.empress .product-cta:hover { color: #C5A000 !important; border-color: #C5A000; }
body.baberry .product-cta:hover { color: #FF69B4 !important; border-color: #FF69B4; }
body.allure .product-cta:hover  { color: #800000 !important; border-color: #800000; }

/* ================================================================ */
/* 1. RESPONSIVE STYLES (Tablet & Mobile Fixes)                     */
/* ================================================================ */

/* --- TABLET VIEW (769px to 1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .fashion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Carousel: Show 2 per row on Tablet */
  .carousel-item {
    flex: 1 0 calc(50% - 20px) !important;
  }
}

/* --- MOBILE VIEW (Up to 768px) --- */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 10px 15px;
    margin-bottom: 0 !important;
  }

  nav, nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  /* Video Hero Fix: Sticks flush to header */
  .hero, .video-container {
    height: auto !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: block;
  }

  .video-container video {
    height: auto !important;
    width: 100%;
    display: block;
    object-fit: contain;
  }

  .fashion-grid {
    grid-template-columns: 1fr;
  }

  /* Carousel: FORCE 1 per row on Mobile */
  .carousel-item {
    flex: 1 0 100% !important;
  }

  .carousel-arrow {
    font-size: 20px;
    padding: 12px 14px;
  }

  .view-more-hint { font-size: 0.8rem; }

  .product-cta {
    width: 90%;
    padding: 14px 10px;
    font-size: 0.9rem;
  }
}

/* ================================================================ */
/* 2. CAROUSEL BASE & DESKTOP STYLES                                */
/* ================================================================ */

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
  padding: 0 20px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* DESKTOP ONLY: Show 3 per row (Wider than 1024px) */
@media (min-width: 1025px) {
  .carousel-item {
    flex: 1 0 calc(33.333% - 20px);
  }
}

/* Shared Carousel Item Styling */
.carousel-item {
  border-radius: 10px;
  overflow: hidden;
  background-color: #f5f5f5;
  text-align: center;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.carousel-item p {
  padding: 10px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.35);
  color: white;
  border: none;
  padding: 15px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  font-size: 24px;
}
.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }

/* ================================================================ */
/* 3. MODAL / LOOKBOOK POPUP STYLES                                 */
/* ================================================================ */

.look-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  justify-content: center; align-items: center;
}
.look-modal.active { display: flex; }
.look-modal img { max-width: 80%; max-height: 80%; object-fit: contain; border-radius: 10px; }
.look-modal .close-modal { position: absolute; top: 20px; right: 30px; font-size: 2rem; color: #fff; cursor: pointer; }
.look-modal .modal-arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: #fff; cursor: pointer; user-select: none; }
.look-modal .modal-arrow.left { left: 20px; }
.look-modal .modal-arrow.right { right: 20px; }
