:root {
  --gold: #d4af37;
  --gold-dim: #b39030;
  --dark-green: #0f3d2e;
  --emerald: #0b2e23;
  --cream: #fdfbf7;
  --black-overlay: rgba(0, 0, 0, 0.65);
  --glass-bg: rgba(255, 255, 255, 0.05);
  /* Very subtle glass */
  --border-color: rgba(212, 175, 55, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--cream);
  background-color: var(--emerald);
  /* Fallback */
  min-height: 100vh;
  /* overflow: hidden; Removed to allow scrolling if content is tall */
  position: relative;
  margin: 0;
}

.coming-soon-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Background Image & Overlay */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/bg.png') no-repeat center center/cover;
  z-index: -2;
  filter: brightness(0.6) contrast(1.1);
  /* Slightly darken the premium bg */
  animation: zoomEffect 20s infinite alternate;
}

.bg-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  z-index: -1;
}

/* Header / Logo */
header {
  width: 100%;
  display: flex;
  justify-content: center;
  /* Removed absolute positioning */
  padding-top: 2rem;
  z-index: 10;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  /* Removed background/blur for a cleaner look with image logo */
}

.brand-logo {
  width: 180px;
  /* Adjust based on logo aspect ratio */
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  /* Subtle shadow for depth */
  transition: transform 0.5s ease;
  animation: floatLogo 6s ease-in-out infinite;
}

.brand-logo:hover {
  transform: scale(1.05);
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}



.content-wrapper {
  flex-grow: 1;
  /* Pushes content to fill space */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  /* Breathing room */
  z-index: 1;
}

/* Main Content Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 3rem 4rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  max-width: 800px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative Gold Lines */
.glass-card::before,
.glass-card::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  opacity: 0.5;
  transition: all 0.5s ease;
}

.glass-card::before {
  top: 20px;
  left: 20px;
  border-bottom: none;
  border-right: none;
}

.glass-card::after {
  bottom: 20px;
  right: 20px;
  border-top: none;
  border-left: none;
}

.glass-card:hover::before,
.glass-card:hover::after {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  opacity: 1;
}


/* Typography Details */
.status-badge {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: center;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  /* Use poster font style similar to serif */
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  /* Fallback */
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  text-align: center;
  letter-spacing: 2px;
}

.divider {
  font-weight: 300;
  color: var(--cream);
  padding: 0 10px;
  opacity: 0.6;
}



.collections-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.collection-item {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  padding: 8px 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: default;
  letter-spacing: 0.5px;
}

.collection-item:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tagline {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.tagline p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
}

.cta-button {
  position: relative;
  margin-top: 2rem;
  display: inline-block;
  padding: 14px 35px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  overflow: hidden;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.4s ease;
  align-self: center;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gold);
  z-index: -1;
  transition: width 0.4s ease;
}

.cta-button:hover {
  color: var(--dark-green);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  border-color: var(--gold);
}

.cta-button:hover::before {
  width: 100%;
}


/* Footer */
footer {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  z-index: 10;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.9rem;
}

.info-item i {
  color: var(--gold);
  font-style: normal;
}

.info-item a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.info-item a:hover {
  color: var(--gold);
}




/* Animations */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* --- Navigation --- */
.main-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-brand-logo {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}


/* --- Lookbook Layout --- */
.lookbook-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding-top: 80px;
  /* Space for fixed nav */
  display: flex;
  flex-direction: column;
}

.lookbook-header {
  text-align: center;
  margin: 3rem 0 2rem;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: var(--cream);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.lookbook-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  width: 100%;
}

.collection-section {
  margin-bottom: 6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold-dim);
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: inline-block;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #000;
  aspect-ratio: 3/4;
  /* Protrait aspect ratio */
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

/* Actual Saree Images */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
  opacity: 0.6;
  /* Dim image slightly so text is readable */
}

/* Overlay Text */
.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: center;
}

.gallery-item:hover .item-overlay {
  transform: translateY(0);
}

.item-overlay h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.item-overlay p {
  font-family: 'Montserrat', sans-serif;
  color: var(--cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .glass-card {
    padding: 2rem 1.5rem;
    width: 95%;
  }

  .brand-name {
    font-size: 2.2rem;
  }



  .glass-card::before,
  .glass-card::after {
    display: none;
    /* Hide decorative borders on small screens if too cramped */
  }

  .contact-info {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    /* Center align for mobile */
  }

  .info-item {
    justify-content: center;
  }

  body {
    overflow-y: auto;
    /* Allow scroll on mobile */
    height: auto;
    min-height: 100vh;
  }

  .coming-soon-container {
    padding-bottom: 0px;
    height: auto;
  }

  footer {
    position: relative;
    /* Normal flow on mobile */
  }

  .page-title {
    font-size: 2.5rem;
  }

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

  .nav-links {
    display: none;
    /* Hide standard nav on mobile for this MVP, or stick to simple stack */
  }

  /* Simple Mobile Nav Override */
  .main-nav {
    justify-content: center;
  }

  .nav-links {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f3d2e;
    padding: 1rem;
    justify-content: space-around;
    border-top: 1px solid var(--gold);
    z-index: 1000;
  }
}