/* Desktop Header — Navy & Gold Theme */
@media screen and (min-width: 769px) {
    .navbar {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(232, 224, 216, 0.5);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 0;
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 72px;
    }

    .nav-brand {
        flex-shrink: 0;
        margin-right: auto;
    }

    .nav-logo a {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        text-decoration: none;
    }

    .logo-icon {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 0.25rem;
        margin: 0;
        padding: 0;
        align-items: center;
        margin-left: auto;
    }

    .nav-link {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.55rem 0.85rem;
        color: #4a5568;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 0.88rem;
        font-weight: 500;
        white-space: nowrap;
        position: relative;
    }

    .nav-link:hover {
        color: #1e3a5f;
    }

    .nav-link i { font-size: 0.95rem; }
    .hamburger { display: none; }
    .logo-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        font-weight: 700;
        text-align: left;
        color: #0f172a;
    }
    .logo-title {
        font-size: 0.78rem;
        color: #94a3b8;
        text-align: left;
        font-weight: 500;
    }
}
