/* =============================================
   HERO WITH SLIDESHOW - Lady M Brautmoden
   ============================================= */

/* ===== HERO CONTAINER ===== */
.hero {
  position: relative !important;
  width: 100% !important;
  height: 68vh !important;
  min-height: 520px !important;
  max-height: 720px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: #1a1a1a !important; /* Fallback if images don't load */
}

/* ===== SLIDESHOW ===== */
.slideshow {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 0 !important;
}

.slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-size: cover !important;
  background-position: center 25% !important;
  background-repeat: no-repeat !important;
  opacity: 0 !important;
  transform: scale(1.05) !important;
  transition: opacity 1.5s ease-in-out, transform 6s ease-out !important;
}

.slide.active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* ===== OVERLAY ===== */
.hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 35%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.1) 100%
  ) !important;
  pointer-events: none !important;
}

/* ===== SHIMMER EFFECT ===== */
.hero-shimmer {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2 !important;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.12) 55%,
    transparent 70%
  ) !important;
  animation: heroShimmer 7s ease-in-out infinite !important;
  pointer-events: none !important;
}

@keyframes heroShimmer {
  0% { transform: translateX(-150%); }
  100% { transform: translateX(150%); }
}

/* ===== CONTENT ===== */
.hero-content {
  position: relative !important;
  z-index: 10 !important;
  padding-left: 8% !important;
  max-width: 650px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  letter-spacing: 6px !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0.5rem !important;
  animation: heroFadeInUp 1s ease-out !important;
}

.hero-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif !important;
  font-size: clamp(3rem, 8vw, 4.8rem) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  letter-spacing: 3px !important;
  line-height: 1.1 !important;
  text-shadow: 2px 4px 25px rgba(0, 0, 0, 0.5) !important;
  margin-bottom: 0.8rem !important;
  text-align: left !important;
  animation: heroFadeInUp 1s ease-out 0.15s both !important;
}

.sale-dates {
  display: block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  letter-spacing: 5px !important;
  margin-bottom: 0.6rem !important;
  animation: heroFadeInUp 1s ease-out 0.3s both !important;
}

.sale-tagline {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  font-style: italic !important;
  color: #ffffff !important;
  letter-spacing: 1px !important;
  margin: 0 0 2rem 0 !important;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5) !important;
  animation: heroFadeInUp 1s ease-out 0.4s both !important;
}

/* ===== HERO EYEBROW ===== */
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
  letter-spacing: 6px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 0.6rem !important;
  animation: heroFadeInUp 1s ease-out both !important;
}

/* ===== HERO DESC ===== */
.hero-desc {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.05rem !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.7 !important;
  max-width: 480px !important;
  margin: 0 0 1.75rem 0 !important;
  animation: heroFadeInUp 1s ease-out 0.45s both !important;
}

/* ===== CTA BUTTON ===== */
.hero .cta-button {
  display: inline-block !important;
  padding: 1.1rem 2.8rem !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #1a1a1a !important;
  background: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  animation: heroFadeInUp 1s ease-out 0.5s both !important;
}

.hero .cta-button:hover {
  background: #b5924f !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35) !important;
  text-decoration: none !important;
}

/* ===== GLITTER PARTICLES ===== */
.hero-glitter {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

/* ===== SLIDE INDICATORS ===== */
.slide-indicators {
  position: absolute !important;
  bottom: 25px !important;
  right: 8% !important;
  z-index: 15 !important;
  display: flex !important;
  gap: 12px !important;
}

.indicator {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.5) !important;
}

.indicator.active {
  background: #ffffff !important;
  transform: scale(1.2) !important;
}

/* ===== ANIMATION ===== */
@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2.5rem, 7vw, 3.8rem) !important;
  }
  .hero-content {
    padding-left: 6% !important;
  }
}

@media (max-width: 768px) {
  .hero-glitter:not(.glitter-mobile-on) {
    display: none !important;
  }

  .slide,
  .slide.active {
    transform: none !important;
  }

  .slide {
    transition: opacity 0.7s ease-in-out !important;
  }

  .hero-eyebrow,
  .hero-title,
  .sale-dates,
  .sale-tagline,
  .hero-desc,
  .hero .cta-button {
    animation: none !important;
  }

  .hero-content {
    max-width: 100% !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero {
    justify-content: center !important;
  }

  .hero-eyebrow {
    font-size: 0.65rem !important;
    letter-spacing: 4px !important;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem) !important;
    letter-spacing: 1px !important;
  }

  .sale-dates {
    font-size: 1rem !important;
    letter-spacing: 3px !important;
  }

  .sale-tagline {
    font-size: 1.05rem !important;
  }

  .hero-desc {
    font-size: 0.9rem !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero .cta-button {
    align-self: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shimmer,
  .hero-glitter,
  .bk-hero::before {
    display: none !important;
  }

  .slide,
  .slide.active,
  .hero-eyebrow,
  .hero-title,
  .sale-dates,
  .sale-tagline,
  .hero-desc,
  .hero .cta-button,
  .bk-hero-title,
  .bk-hero-desc {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
