/* ===== HERO SECTION STYLES ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 80px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity var(--transition-slow);
  display: flex;
  align-items: center;
}
.slide-bleu { /* keep face centered on desktop */
  background-position: 60% center;
}

.slide-elevate { /* center subject a bit lower */
  background-position: center 40%;
}

.slide-lamour { /* keep bottle and face visible */
  background-position: 45% center;
}


.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(26, 26, 46, 0.55) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--spacing-xl);
}

.hero-text {
  color: var(--text-primary);
}

.hero-title {
  font-size: var(--font-size-6xl);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
}

.hero-subtitle {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-2xl);
  color: var(--text-secondary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-md);
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
  background: var(--secondary-color);
  border-color: var(--text-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 20px;
  background: var(--text-secondary);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    margin-top: 70px;
    min-height: 500px;
    height: 100svh;
  }
  
  .hero-content {
    padding: 0 var(--spacing-lg);
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-description {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .hero-indicators {
    bottom: var(--spacing-xl);
  }
  
  .hero-scroll-indicator {
    bottom: var(--spacing-md);
  }
  /* On mobile, shift backgrounds to keep titles clear and subject centered */
  .slide-bleu {
    background-position: 50% 30%;
  }
  .slide-elevate {
    background-position: 50% 20%;
  }
  .slide-lamour {
    background-position: 50% 35%;
  }
  /* Ensure hero content has breathing room above bottom UI bars */
  .hero-content {
    padding-bottom: var(--spacing-2xl);
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 60px;
    min-height: 400px;
  }
  
  .hero-content {
    padding: 0 var(--spacing-md);
  }
  
  .hero-title {
    font-size: var(--font-size-2xl);
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-xs);
  }
  
  .hero-description {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
  }
  
  .hero-actions {
    gap: var(--spacing-sm);
  }
  
  .hero-indicators {
    bottom: var(--spacing-lg);
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 360px) {
  .hero {
    margin-top: 60px;
    min-height: 350px;
    height: 100svh;
  }
  
  .hero-content {
    padding: 0 var(--spacing-sm);
  }
  
  .hero-title {
    font-size: var(--font-size-xl);
    letter-spacing: 0;
    margin-bottom: var(--spacing-xs);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
  }
  
  .hero-description {
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-actions {
    gap: var(--spacing-xs);
  }
  
  .slide-elevate {
    background-position: 50% 15%;
  }

  .hero-actions .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-sm);
  }
}
