.jumbotron {
    position: relative;
    overflow: hidden;
    background: none;
    padding: 0;
}
.jumbotron img {
    width: 100%;
    height: 782px;
    object-fit: cover;
}
.jumbotron .overlay {
    position: absolute;
    top: 50%;
    width: 35%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.jumbotron .lead {
    font-family: "Playfair Display";
    font-size: 24px;
}
.display-4 {
    font-family: "Plus Jakarta Sans";
    font-weight: bold !important;
    font-size: 128px !important;
}

/* Tambahkan media query untuk tampilan mobile */
@media (max-width: 768px) {
    .jumbotron img {
        width: 100%;
        height: 430px;
        object-fit: cover;
    }
    .jumbotron .overlay {
        width: 55%; /* Sesuaikan lebar untuk layar kecil */
        height: auto;
        padding-bottom: 4px;
    }
    
    .display-4 {
        font-size: 50px !important; /* Sesuaikan ukuran font untuk layar kecil */
        /* font-weight: bold; */
    }
    
    .jumbotron .lead {
        font-size: 10px !important; /* Sesuaikan ukuran font untuk layar kecil */
    }
}