/* ── Shared Nav Styles ──────────────────────────────── */

.banner {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(18, 18, 20, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(58, 58, 64, 0.5);
    height: var(--banner-h, 72px);
}

.banner-inner {
    width: min(1120px, 92vw);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    font-size: 1.55rem;
    letter-spacing: 0.2px;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    box-shadow: 0 6px 18px var(--shadow, rgba(0, 0, 0, 0.5));
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-links a {
    color: var(--muted, #a8a8b0);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.12s;
}

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

.nav-cta {
    background: var(--accent, #28A745);
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 9px;
    font-size: 0.9rem !important;
    transition: transform 0.12s ease, filter 0.12s ease;
}

.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

.nav-web-app { color: var(--muted, #a8a8b0); font-size: 0.9rem; }
.nav-web-app:hover { color: var(--text, #f0f0f2); }

/* placeholder height while nav partial is fetched */
#nav-placeholder { height: var(--banner-h, 72px); }

@media (max-width: 700px) {
    .banner-inner { padding: 0 4vw; }
    .brand span { display: none; }
}
