/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 3rem;
  background: #000;
}

/* Slides Container */
.hero-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual Slide */
.hero-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Slide Image */
.hero-slider__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay for better text readability */
.hero-slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* Content */
.hero-slider__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  animation: slideUpFadeIn 0.8s ease-out;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}

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

.hero-slider__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-slider__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-slider__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-slider__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Navigation Buttons */
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.hero-slider:hover .hero-slider__nav {
  opacity: 1;
}

.hero-slider__nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider__nav--prev {
  left: 2rem;
}

.hero-slider__nav--next {
  right: 2rem;
}

/* Indicators */
.hero-slider__indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.hero-slider__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider__indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.hero-slider__indicator.active {
  background: #fff;
  width: 32px;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-slider {
    height: 500px;
  }

  .hero-slider__content {
    padding: 1.5rem;
  }

  .hero-slider__title {
    font-size: 2rem;
  }

  .hero-slider__description {
    font-size: 1rem;
  }

  .hero-slider__nav {
    width: 40px;
    height: 40px;
  }

  .hero-slider__nav--prev {
    left: 1rem;
  }

  .hero-slider__nav--next {
    right: 1rem;
  }

  .hero-slider__indicators {
    bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 450px;
    border-radius: 0.5rem;
  }

  .hero-slider__eyebrow {
    font-size: 0.75rem;
  }

  .hero-slider__title {
    font-size: 1.75rem;
  }

  .hero-slider__description {
    font-size: 0.95rem;
  }

  .hero-slider__actions .btn {
    font-size: 0.9rem;
    padding: 0.75rem 2rem !important;
  }
}
