/* ══════════════════════════════════════════════════════════════
   LENSLOOP  —  getlensloop.navbar.static.css
   Light sticky bar navbar — sits flush at top of viewport.
   Requires: getlensloop.site.css  +  getlensloop.footer.css
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════
   NAVBAR  — light sticky bar
   ══════════════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(249, 248, 245, .85);   /* --bg at 85% */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 16px;
    max-width: var(--max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo {
    display: flex;
    align-items: center;
    height: 34px;
}

    .logo img {
        height: 100%;
        width: auto;
        display: block;
    }

.nav-links {
    display: flex;
    gap: 22px;
    font-size: 14px;
    color: var(--muted);
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--text);
        }

/* ── Hamburger ── */
.hamburger {
    display: none;
    width: 34px;
    height: 22px;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    margin-right: 10px;
}

    .hamburger span {
        display: block;
        width: 34px;
        height: 3px;
        border-radius: 999px;
        background: var(--brand);
    }

/* ── Mobile menu ── */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 28px 32px 36px;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 18px;
        font-weight: 500;
        color: var(--text);
        text-decoration: none;
    }

/* ══════════════════════════════
   RESPONSIVE  ≤ 900px
   ══════════════════════════════ */
@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}
