
/* Global Navbar CSS extracted from main site */
:root {
    --moe-blue: #004d99;
    --moe-light-blue: #e6f0fa;
    --moe-cyan: #009eb3;
    --moe-accent: #ffb300;
}
.top-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.85rem;
    padding: 5px 0;
}
.top-bar a {
    color: #6c757d;
    text-decoration: none;
    margin-left: 15px;
}
.top-bar a:hover {
    color: var(--moe-blue);
}
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 0;
}
.header-banner {
    width: 100%;
    height: clamp(150px, 20vw, 300px);
    background: url('../images/hero-bg.png?v=3') center/cover no-repeat;
    background-color: #55b2d4;
}
@media (max-width: 768px) {
    .header-banner {
        height: 140px;
    }
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 20px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.brand-title {
    color: var(--moe-blue);
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.brand-subtitle {
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    line-height: 1.1;
}
.nav-link {
    color: #212529;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: all 0.2s ease-in-out;
}
.nav-link:hover {
    color: var(--moe-blue);
    background-color: var(--moe-light-blue);
    border-radius: 5px;
}
.navbar-user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--moe-blue);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}
.navbar-user-avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(0,77,153,0.2);
    border-color: var(--moe-accent);
}
.navbar-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-icon-link {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 12px !important;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent !important;
}
.nav-icon-link i {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: #004d99;
    transition: color 0.2s ease;
}
.nav-icon-link span {
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 600;
}
.nav-icon-link:hover {
    transform: scale(1.15);
    color: #ffb300 !important;
}
.nav-icon-link:hover i {
    color: #ffb300;
}
