/* ==========================================
   NAVBAR DESKTOP
========================================== */
.navbar{
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.navbar-wrapper{
    display: flex;
    justify-content: center;
}

.nav-menu{
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 12px 20px;
}

.nav-link{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: .3s;
}

.nav-link:hover{
    color: #0B6B3A;
}

.nav-link.active{
    color: #0B6B3A;
    font-weight: 600;
}

/* ==========================================
   MOBILE MENU (FULL SCREEN STYLE)
========================================== */
.mobile-menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;

    background: #fff;
    z-index: 9998;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 18px;

    transition: .35s ease;
}

.mobile-menu.active{
    right: 0;
}

.mobile-menu a{
    text-decoration: none;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.mobile-menu a:hover{
    color: #0B6B3A;
}

/* AUTH BUTTON MOBILE */
.mobile-auth{
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-mobile{
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.btn-mobile.login{
    border: 2px solid #0B6B3A;
    color: #0B6B3A;
}

.btn-mobile.daftar{
    background: #0B6B3A;
    color: #fff;
}

/* ==========================================
   HIDE NAVBAR DESKTOP DI HP
========================================== */
@media (max-width: 992px){
    .nav-menu{
        display: none;
    }
}