/**
 * Hero Section Styles
 * Boutique Suzosky - Luxury E-commerce
 */

.hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 20s ease-out infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(212, 175, 55, 0.2) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 700px;
}

.hero__subtitle {
  font-family: var(--font-secondary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-black);
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__title-highlight {
  color: var(--color-gold);
  display: block;
  font-style: italic;
}

.hero__description {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  line-height: 1.8;
  margin-bottom: var(--spacing-2xl);
  color: var(--color-gray-100);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

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

/* Hero Decorative Elements */
.hero__decorative {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__decorative--circle {
  width: 300px;
  height: 300px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero__decorative--circle-1 {
  top: 10%;
  right: 10%;
}

.hero__decorative--circle-2 {
  bottom: 15%;
  left: 5%;
  width: 200px;
  height: 200px;
  animation-delay: 2s;
}

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

/* Hero Slider */
.hero-slider {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 600px;
}

.hero-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider__slide.active {
  opacity: 1;
}

.hero-slider__controls {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--spacing-md);
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-slider__dot:hover,
.hero-slider__dot.active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.2);
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.hero-slider__arrow:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider__arrow--prev {
  left: var(--spacing-xl);
}

.hero-slider__arrow--next {
  right: var(--spacing-xl);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}

.hero__scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-white);
  border-radius: 20px;
  position: relative;
}

.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

@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 */
@media (max-width: 1024px) {
  .hero__title {
    font-size: var(--font-size-5xl);
  }
  
  .hero__decorative {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    margin-top: var(--header-mobile-height);
  }
  
  .hero__title {
    font-size: var(--font-size-4xl);
  }
  
  .hero__description {
    font-size: var(--font-size-base);
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    width: 100%;
  }
  
  .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }
  
  .hero-slider__arrow--prev {
    left: var(--spacing-md);
  }
  
  .hero-slider__arrow--next {
    right: var(--spacing-md);
  }
}
