@import url(./variables.css);

/* ===== Header / Navigation ===== */
header {
    position: sticky;
    top: 0;
    background: rgba(211, 213, 214, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(11, 11, 11, 0.05);
    z-index: 10;
}

nav {
    display: flex;
    padding: 0 1rem;
    justify-content: space-between;
    align-items: center;
}

nav .logo a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

nav .logo span {
    color: var(--color-primary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.3px;
    transition: color var(--transition);
}

nav .logo a:hover {
    color: var(--color-primary);
}

nav a:hover {
    color: var(--color-secondary);
    font-weight: 900;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
}