.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 32px;
    gap: 24px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #152a47 0%, #1e3a5f 60%, #2d5282 100%);
    border-bottom: 1px solid rgba(226,185,111,0.25);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-logo img {
    width: auto;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}
.nav-logo-text { font-size: 16px; font-weight: 700; color: white; line-height: 1.3; }
.nav-logo-sub  { font-size: 10px; color: var(--gold); letter-spacing: 1px; }

.nav-divider {
    width: 1px;
    height: 30px;
    background: rgba(200,169,110,0.3);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.nav-link {
    padding: 8px 13px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: none;
    white-space: nowrap;
    font-family: Tahoma, Arial, sans-serif;
}

.nav-link:hover  { background: rgba(200,169,110,0.1); color: var(--gold); }
.nav-link.active { background: var(--gold); color: var(--navy-dark); font-weight: 700; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
    margin-right: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    right: 0;
    left: 0;
    background: var(--navy-dark);
    padding: 12px 16px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(200,169,110,0.2);
}

.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { width: 100%; text-align: right; padding: 12px 16px; }

@media (max-width: 640px) {
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
    .navbar     { padding: 0 16px; }
}