/* ================= HEADER NAVBAR ================= */
.custom-navbar{
    background:#020617;
    border:none;
    border-radius:0;
    padding:12px 0;
}

.custom-navbar .navbar-brand img{
    height:45px;
}

.custom-navbar .navbar-nav > li > a{
    color:#fff !important;
    font-weight:600;
    padding:12px 18px;
    border-radius:6px;
    transition:0.3s;
}

.custom-navbar .navbar-nav > li > a:hover{
    background:#0ea5e9;
}

/* LOGIN */
.nav-login a{
    background:#0ea5e9;
    color:#fff !important;
}
.nav-login a:hover{
    background:#0284c7;
}

/* KERANJANG */
.nav-riwayat a{
    background:#22c55e;
    color:#fff !important;
}
.nav-riwayat a:hover{
    background:#16a34a;
}

/* CONTACT */
.nav-contact a{
    background:#f59e0b;
    color:#fff !important;
}
.nav-contact a:hover{
    background:#d97706;
}

/* USER */
.user-dropdown > a{
    background:rgba(255,255,255,0.1);
}

/* ================= FOOTER ================= */
.main-footer{
    background:#020617;
    color:#fff;
}

.footer-top{
    padding:40px 0;
}

.footer-top h4{
    color:#0ea5e9;
    font-weight:700;
}

.footer-top p{
    color:#cbd5f5;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:15px 0;
}

.footer-bottom-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-right{
    display:flex;
    gap:15px;
    align-items:center;
}

/* CONTACT ICON */
.contact-us-icon{
    width:50px;
    height:50px;
    background:#0ea5e9;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:0.3s;
}

.contact-us-icon:hover{
    background:#0284c7;
}

/* ADMIN LOGIN */
.admin-login{
    background:#22c55e;
    padding:8px 16px;
    border-radius:20px;
    color:#fff;
    font-weight:600;
    transition:0.3s;
}

.admin-login:hover{
    background:#16a34a;
    color:#fff;
}

/* ================= FORCE REMOVE OLD BANNER ================= */
#banner,
.banner-section{
    background:none !important;
    background-image:none !important;
}

/* ================= VIDEO BANNER ================= */
.video-banner{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.video-banner video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
    z-index:2;
}

.video-banner .container,
.video-banner .div_zindex,
.video-banner .row{
    position:relative;
    z-index:3;
    height:100%;
}

.video-banner .row{
    display:flex;
    align-items:center;
}

.banner_content{
    color:#fff;
}
/* ================= VIDEO BACKGROUND ================= */
.video-banner{
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-banner video{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    min-width:100%;
    min-height:100%;
    object-fit:cover;
    z-index:1;
}

.video-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:2;
}

.div_zindex{
    position:relative;
    z-index:3;
}

/* ================= FLOAT MENU ================= */
.menu-card-section{
    position: relative;
    margin-top: -100px;   /* ini yang bikin icon naik ke video */
    z-index: 10;
    background: transparent;
}


.menu-card{
    display:block;
    background:rgba(255,255,255,0.95);
    border-radius:18px;
    padding:25px 10px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.35);
    transition:0.4s;
}

.menu-card i{
    font-size:30px;
    color:#0ea5e9;
    margin-bottom:10px;
    display:block;
}

.menu-card h5{
    font-weight:700;
    margin:0;
    color:#020617;
}

.menu-card:hover{
    transform:translateY(-12px) scale(1.05);
    background:#0ea5e9;
}

.menu-card:hover i,
.menu-card:hover h5{
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){
    .menu-card{
        padding:18px 8px;
    }
    .menu-card i{
        font-size:22px;
    }
}
