/* =========================================
         FULL SCREEN CAROUSEL SLIDER
      ========================================= */
#heroCarousel {
  height: 100vh;
  min-height: 600px;
  width: 100%;
  position: relative;
}
.carousel-inner,
.carousel-item,
.carousel-bg {
  height: 100%;
  width: 100%;
}
.carousel-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  top: 0;
  bottom: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.hero-subtitle {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}
.hero-title {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}
.carousel-caption p {
  font-size: 1.1rem;
  max-width: 700px;
  opacity: 0.9;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease;
}
.carousel-caption .btn-group-custom {
  animation: fadeInUp 1.4s ease;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  transition: 0.3s;
}
.carousel-indicators .active {
  background-color: var(--primary);
  transform: scale(1.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
