/* Background dengan gambar */
.fi-simple-layout {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/selam.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh !important;
}

/* Background dengan video */
.fi-simple-layout {
    position: relative;
    overflow: hidden;
}

.fi-simple-layout::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../images/selam.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

/* Untuk video background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.6);
}
