

/*==================================================
TOP BAR
==================================================*/

.topbar{
    background:#0B4EA2;
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-right{
    justify-content:flex-end;
}

.topbar a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.topbar a:hover{
    color:#D4AF37;
}

.brand-text{
    text-align:center;
}

.brand-text h2{
    margin:0;
    font-size:30px;
    color:#0B4EA2;
    font-weight:800;
    letter-spacing:2px;
}

.brand-text h3{
    margin:2px 0;
    font-size:16px;
    letter-spacing:6px;
    color:#222;
    font-weight:600;
}

.brand-text p{
    margin:4px 0 0;
    color:#D4AF37;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/*==================================================
MAIN NAVBAR
==================================================*/

.main-navbar{

    position:sticky;

    top:0;

    width:100%;

    background:#fff;

    z-index:9999;

    transition:.35s;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.main-navbar.scrolled{

    padding:0;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}



.menu-left,
.menu-right{

    display:flex;

    align-items:center;

    list-style:none;

    margin:0;

    padding:0;

}

.menu-left{

    justify-content:flex-end;

}

.menu-right{

    justify-content:flex-start;

}

.menu-left li,
.menu-right li{

    margin:0 14px;

}

.menu-left a,
.menu-right a{

    text-decoration:none;

    color:#222;

    font-weight:600;

    font-size:15px;

    position:relative;

    transition:.3s;

}

.right-section{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:25px;
}

.menu-left a:hover,
.menu-right a:hover{

    color:#0B4EA2;

}

.menu-left a::after,
.menu-right a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#D4AF37;

    transition:.3s;

}

.menu-left a:hover::after,
.menu-right a:hover::after{

    width:100%;

}

/*==================================================
CENTER LOGO
==================================================*/

.brand-center{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#000;

}

.brand-center img{
    width:58px;
    height:58px;
    object-fit:contain;
    margin-bottom:6px;
}

.main-navbar.scrolled .brand-center img{
    width:50px;
    height:50px;
}

.brand-center h2{

    margin:0;

    font-size:28px;

    font-weight:800;

    color:#0B4EA2;
    
    font-family:'Cinzel', serif;

    letter-spacing:2px;

}

.brand-text h2{
    margin:0;
    font-size:30px;
    font-weight:800;
    color:#0B4EA2;
    font-family:'Cinzel', serif;
    letter-spacing:2px;
}

.brand-text h3{
    margin:2px 0;
    font-size:16px;
    font-weight:600;
    letter-spacing:5px;
    color:#222;
}

.brand-text p{
    margin-top:5px;
    font-size:11px;
    color:#D4AF37;
    letter-spacing:2px;
    text-transform:uppercase;
}

/*==================================================
BUTTON
==================================================*/

.join-btn{

    background:#0B4EA2;

    color:#fff !important;

    padding:12px 24px;

    border-radius:40px;

    transition:.3s;

    display:inline-block;

}

.join-btn:hover{

    background:#D4AF37;

    color:#000 !important;
    
}
    
    /*==================================================
MOBILE NAVBAR
==================================================*/

.mobile-navbar{
    display:none;
    align-items:center;
    justify-content:space-between;
    min-height:80px;
}

.mobile-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.mobile-logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.mobile-logo h5{
    margin:0;
    color:#0B4EA2;
    font-size:18px;
    font-weight:700;
}

.mobile-logo small{
    display:block;
    color:#D4AF37;
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.navbar-toggler{
    border:none;
    background:none;
    font-size:28px;
    color:#0B4EA2;
    padding:5px;
}

.navbar-toggler:focus{
    box-shadow:none;
    outline:none;
}

/*==================================================
MOBILE MENU
==================================================*/

#mobileMenu{
    background:#fff;
    border-top:1px solid #eee;
}

.mobile-menu{
    list-style:none;
    margin:0;
    padding:15px 0;
}

.mobile-menu li{
    border-bottom:1px solid #f3f3f3;
}

.mobile-menu li:last-child{
    border-bottom:none;
}

.mobile-menu a{
    display:block;
    padding:14px 18px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.mobile-menu a:hover{
    background:#0B4EA2;
    color:#fff;
}

.mobile-menu .join-btn{
    margin:15px;
    text-align:center;
    border-radius:50px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:991px){

    .topbar{
        display:none;
    }

    .desktop-navbar{
        display:none;
    }

    .mobile-navbar{
        display:flex;
    }

}


.desktop-navbar{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    min-height:120px;
    gap:40px;
}

@media (min-width:992px){

    .mobile-navbar,
    #mobileMenu{
        display:none !important;
    }

}

@media (max-width:768px){

    .mobile-logo img{
        width:48px;
        height:48px;
    }

    .mobile-logo h5{
        font-size:16px;
    }

    .mobile-logo small{
        font-size:9px;
    }

}

@media (max-width:576px){

    .mobile-logo img{
        width:42px;
        height:42px;
    }

    .mobile-logo h5{
        font-size:15px;
    }

    .navbar-toggler{
        font-size:24px;
    }

    .mobile-menu a{
        font-size:14px;
    }

}

/*==================================================
SCROLL EFFECT
==================================================*/

.main-navbar.scrolled{

    background:rgba(255,255,255,.97);

    backdrop-filter:blur(12px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.main-navbar.scrolled .brand-center img{

    width:75px;
    height:75px;
    transition:.3s;

}

.main-navbar.scrolled .brand-center h2{

    font-size:24px;

}
.main-navbar.scrolled .brand-text h2{
    font-size:24px;
}

.main-navbar.scrolled .brand-text h3{
    font-size:14px;
}

.main-navbar.scrolled .brand-text p{
    font-size:10px;
}





/*==================================================
SMOOTH ANIMATION
==================================================*/

.brand-center img,
.brand-text h2,
.brand-text h3,
.brand-text p,
.menu-left a,
.menu-right a,
.join-btn{
    transition:all .35s ease;
}
