/* nav.css */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: var(--color-primary);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container {
    width: 100%;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-white);
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-smooth);
}
.nav-link:hover,
.nav-link.active { color: var(--color-white); font-weight: 600; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-login-pill {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--color-white);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}
.btn-login-pill:hover {
    background: rgba(255,255,255,0.24);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .nav-container { padding: 12px 20px; }
    .nav-links { gap: 20px; }
    .logo-group { font-size: 1rem; }
}
@media (max-width: 560px) {
    .nav-links { display: none; }
}