/* ══════════════════════════════════════════════════════════════
   Shared navbar — one design, included on every page via
   {% include '_navbar.html' %}. Colors are hardcoded (not CSS vars)
   so this file renders identically regardless of a page's :root.
   ══════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.logo-text {
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: #f1f1f4;
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: #f1f1f4;
    background: rgba(99, 102, 241, 0.15);
}

.lang-toggle {
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #f1f1f4;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.lang-toggle:hover {
    border-color: #818cf8;
    background: rgba(99, 102, 241, 0.1);
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
    }
}
