/* Custom Hero Carousel Styling */
.hero-carousel {
    position: relative;
    background-color: #000;
}

.hero-carousel .carousel-item {
    height: 80vh; /* Tinggi banner di desktop */
    min-height: 450px;
    transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out !important; /* Membuat transisi fade super mulus */
}

.carousel-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mencegah gambar terdistorsi */
}

/* Layer Gelap (Overlay) di atas gambar agar teks mudah dibaca */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 30, 62, 0.2); /*Warna overlay biru gelap transparan */
    /* background: rgba(0, 0, 0, 0); Warna overlay biru gelap transparan */
}

/* Caption Positioning */
.hero-carousel .carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
}

/* Kustomisasi Indicators (Bintik Navigasi) */
.hero-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    background-color: var(--bs-primary, #06A3DA);
}

/* Kustomisasi Navigasi Panah Kiri & Kanan */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--bs-primary, #06A3DA);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    margin: 0 20px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    opacity: 1;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        height: 60vh;
        min-height: 350px;
    }

    .hero-carousel h1.display-3 {
        font-size: 2rem;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
}