/* Styling untuk Slider Frontend */
.carousel-caption h1 {
    font-size: 3rem;  /* Bisa diubah sesuai kebutuhan */
    color: #ffffff;
}

.carousel-caption p {
    font-size: 1.5rem;
    color: #f8f9fa;
}

.carousel-caption a.btn {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption a.btn {
        padding: 8px 15px;
        font-size: 1rem;
    }
}

/* Penyesuaian animasi */
.animated {
    transition: all 0.5s ease-in-out;
}




.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: #cececf;
    border: 5px solid #4761ff14;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 250px;
        object-fit: contain;
    }
    
    #header-carousel .carousel-item img {
        position: relative
        width: 100%;
        height: 100%;

    }
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 600px; /* Default max height */
}

/* Untuk layar kecil seperti smartphone */
@media (max-width: 576px) {
    .carousel-item img {
        max-height: 300px;
    }

}

/* Untuk layar tablet */
@media (min-width: 577px) and (max-width: 991px) {
    .carousel-item img {
        max-height: 400px;
    }
}

/* Untuk layar desktop */
@media (min-width: 992px) {
    .carousel-item img {
        max-height: 600px;
    }

}
