.section-bg {
    background-image: url('/assets/images/section/background-bcf.png');
    background-size: 100% 100%;    
    background-repeat: no-repeat;
    background-position: center top;
    display: flex;
    align-items: flex-start;       
    justify-content: center;
    padding-top: 20px;
}

@media (min-width: 1025px) {
    .section-bg {
        min-height: 370vh;        
        background-size: cover;    
        background-position: center;
    }
}
@media (max-width: 1024px) {
    .section-bg {
        min-height: 195vh;
        background-size: 100% auto; 
        background-position: center top;
    }
}

@media (max-width: 768px) {
    .section-bg {
        min-height: 100vh;
        background-size: 100% auto; 
        background-position: center top;
        padding-top: 15px;       
    }
}

.section-one-banner {
    background-image: url('/assets/images/section/background-bcf.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 180vh;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Untuk mobile */
@media (max-width: 768px) {
    .section-one-banner {
        background-image: url('/assets/images/section/section-one.png');
        background-size: 100% auto; /* Lebar penuh, tinggi proporsional */
        background-position: center top;
        min-height: auto; /* Hapus min-height */
        padding-top: 56.25%; /* Rasio 16:9 (9/16*100) */
        height: 0;
    }
}

.section-wos {
    background-image: url('/assets/images/section/wos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    z-index: 2;
    margin-top: -2rem;
    position: inherit;
}

/* Untuk mobile */
@media (max-width: 768px) {
    .section-wos {
        background-image: url('/assets/images/section/wos.png');
        background-size: 100% auto;
        background-position: center top;
        min-height: auto;
        padding-top: 56.25%;
        height: 0;
    }
}

.section-lineup {
    background-image: url('/assets/images/section/lineup.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    z-index: 2;
    margin-top: -2rem;
    position: inherit;
}

/* Untuk mobile */
@media (max-width: 768px) {
    .section-lineup {
        background-image: url('/assets/images/section/lineup.png');
        background-size: 100% auto;
        background-position: center top;
        min-height: auto;
        padding-top: 56.25%;
        height: 0;
    }
}

.footer-section {
    background-image: url('/assets/images/section/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 20px;
    min-height: 40vh;
    text-align: center;
    position: relative;
    /* Tambahkan properti berikut */
    display: block; /* Pastikan elemen adalah block-level */
    overflow: auto; /* Handle overflow jika ada */
}

/* Mobile */
@media (max-width: 768px) {
    .footer-section {
        padding: 10px;
        background-position: top;
        width: 100%;
    }
}