/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.hero-slide.active .hero-image {
  transform: scale(1.1);
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: left;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-content h1 {
  font-size: var(--font-size-xxxl);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.2s;
}

.hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.4s;
}

.hero-content .btn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.6s;
}

.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content p,
.hero-slide.active .hero-content .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: var(--space-xl);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.prev-slide, .next-slide {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-normal);
  margin: 0 var(--space-md);
}

.prev-slide:hover, .next-slide:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.slide-indicators {
  display: flex;
  gap: var(--space-sm);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.indicator.active {
  background-color: var(--white);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: var(--font-size-xxl);
  }

  .hero-content p {
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 576px) {
  .hero-content {
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    justify-content: center;
    padding-top: 50%;
  }

  .hero-content h1 {
    font-size: var(--font-size-xl);
  }

  .hero-content p {
    font-size: var(--font-size-md);
    margin-left: auto;
    margin-right: auto;
  }
}
