/* ================= HEADER ================= */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    
    padding: 0;
    margin-bottom: 40px;

    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    line-height: 1.2;

    color: #4a3b22;
}

/* ---------- Logo ---------- */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 999px;

    background: linear-gradient(135deg, #ffe7a3, #fff3c9);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    cursor: pointer;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    cursor: pointer;
}

/* ---------- Navigation ---------- */

nav {
    display: flex;
    gap: 18px;
}

nav a {
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 999px;

    font-size: 0.95em;
    font-weight: 400;

    color: #7e6c4a;
    transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a.highlight {
    background: rgba(255, 235, 180, 0.9);
    color: #4a3b22;
}

/* ---------- Responsive ---------- */

@media (max-width: 700px) {
    header {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 30px;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}
