/* ==========================================================
   TOP BAR
   ========================================================== */

.topbar {
    height: 40px;
    background: #08111f;
    color: white;
    font-size: .9rem;
    display: flex;
    align-items: center;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .25s;
}

    .topbar a:hover {
        color: white;
    }

.topbar i {
    color: var(--color-accent);
    margin-right: 8px;
}

/* ==========================================================
   HEADER
   ========================================================== */

header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(18px);
}

.navbar {
    height: 86px;
    background: rgba(48,67,91,.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: .3s;
}

.container {
    height: 100%;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

/* ==========================================================
   LOGO
   ========================================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-logo-image {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    object-fit: contain;
    opacity: .9;
}
.logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

    .logo-name span {
        color: white;
        font-weight: 700;
        font-size: 1.15rem;
    }

    .logo-name small {
        color: rgba(255,255,255,.65);
        font-size: .82rem;
    }

.footer-brand-logo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
}

/* ==========================================================
   MENU
   ========================================================== */

.navbar-nav {
    gap: 6px;
}

.nav-link {
    color: rgba(255,255,255,.82) !important;
    font-weight: 600;
    padding: 10px 18px !important;
    border-radius: 999px;
    transition: .25s;
}

    .nav-link:hover {
        color: white !important;
        background: rgba(255,255,255,.08);
    }

    .nav-link.active {
        background: rgba(255,255,255,.12);
        color: white !important;
    }

/* ==========================================================
   BUTTON
   ========================================================== */

.navbar .btn-primary-custom {
    padding: 14px 28px;
}

/* ==========================================================
   MOBILE
   ========================================================== */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width:991px) {

    .topbar {
        display: none;
    }

    .navbar {
        height: auto;
        padding: 15px 0;
    }

    .navbar-collapse {
        margin-top: 20px;
        background: rgba(48,67,91,.99);
        padding: 20px;
        border-radius: 20px;
    }

    .navbar-nav {
        gap: 14px;
    }

    .logo-name small {
        display: none;
    }

    .navbar .btn-primary-custom {
        width: 100%;
    }
}
/* ==========================================================
   SCROLL
   ========================================================== */


.header-scrolled .navbar {
    height: 74px;
    background: rgba(43,61,84,.99);
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}
header {
    transition: .35s;
    will-change: transform;
}
@media (max-width: 575px) {
    .brand-logo-image {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .logo { gap: 9px; }
    .logo-name span { font-size: 1rem; }
}







@media (max-width:991px) {
    .mobile-utility-start { margin-top:8px; padding-top:16px; border-top:1px solid rgba(255,255,255,.12); }
    .mobile-utility-link .nav-link { display:flex; align-items:center; gap:12px; color:#fff !important; background:rgba(255,255,255,.06); }
    .mobile-utility-link .nav-link:hover { background:rgba(212,175,55,.16); }
    .mobile-utility-link i { width:20px; color:var(--color-accent); text-align:center; }
}
