/* Hero Section Styling */

.hero-section {
  position: relative;
  width: 100%;
  /*height: 100vh;*/
  min-height: 500px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  margin-top:80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(4, 53, 82, 0.85) 0%,
    rgba(8, 85, 150, 0.6) 60%,
    rgba(236, 31, 40, 0.2) 100%
  );
  z-index: 2;
}

/* Background Media Elements */
.hero-media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img, .hero-video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Carousel/Slider */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.carousel-slide.active {
  opacity: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 60px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  animation: slideUp 0.8s ease forwards;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 35px;
  color: rgba(250, 248, 245, 0.9);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  animation: slideUp 1s ease forwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUp 1.2s ease forwards;
}

/* Slider indicators */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.indicator.active {
  background-color: var(--color-accent);
  transform: scale(1.3);
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .hero-cta .btn {
    width: 100%;
  }
}
