/* 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 {
  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;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.video-container video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

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

/* Fashion Lines */
#fashion-lines {
  padding: 50px 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

#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);
}

.board-content {
  text-align: center;
  margin: 40px auto;
}

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

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

.board-content h2 {
  font-size: 2rem;
  font-style: italic;
  font-weight: normal;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: white;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-top: 1px solid #ddd;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-left a {
  font-size: 14px;
  color: black;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer-left a:hover {
  color: gray;
}

/* WhatsApp CTA in footer */
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  color: black;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-whatsapp:hover {
  color: gray;
}

.footer-right p {
  margin: 3px 0;
  font-size: 14px;
  font-weight: 400;
}

.footer-right a {
  color: black;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* ============================= */
/* RESPONSIVE STYLES */
/* ============================= */

@media (max-width: 1024px) {
  .fashion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 10px 15px;
  }

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

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

  .whatsapp-cta a {
    font-size: 14px;
    padding: 6px 12px;
  }

  .hero {
    height: 60vh;
  }

  .about h2,
  #fashion-lines h2 {
    font-size: 24px;
  }

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

  footer {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 10px;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-right {
    text-align: center;
  }
}

/* ============================= */
/* CAROUSEL STYLES (shared) */
/* ============================= */

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

/* Scroll-snap + swipe support */
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto; /* allow horizontal scrolling on mobile */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth on iOS */
  scroll-behavior: smooth; /* smooth scroll */
  transition: transform 0.5s ease; /* still works for arrows */
}

.carousel-item {
  flex: 1 0 calc(33.333% - 20px); /* 3 per row on desktop */
  border-radius: 10px;
  overflow: hidden;
  background-color: #f5f5f5;
  text-align: center;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start; /* snap each item */
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #ddd;
}

.carousel-item p {
  padding: 10px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.7);
  color: white;
  border: none;
  padding: 15px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s, transform 0.2s;
}

.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }

.carousel-arrow:hover {
  background-color: rgba(0,0,0,0.9);
  transform: scale(1.15);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ============================= */
/* RESPONSIVE BREAKPOINTS for Carousel */
/* ============================= */

@media (max-width: 1024px) {
  .carousel-item {
    flex: 1 0 calc(50% - 20px); /* 2 per row on tablet */
  }
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 1 0 100%; /* 1 per row on mobile */
  }

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

/* ============================= */
/* MOBILE SPACING ADJUSTMENTS */
/* ============================= */

/* Adjust spacing on mobile */
@media (max-width: 768px) {
  .hero {
    height: auto;        /* let hero shrink to video height */
    margin-bottom: 20px; /* spacing between hero and about */
  }

  .about {
    padding-top: 20px;   /* tighten top of about */
    padding-bottom: 40px; /* match About → Fashion spacing */
  }
}
