/* ============================================================
   Menu page — Category navigation, elegant dish listings
   ============================================================ */

/* --- Menu container --- */

.menu-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Category navigation --- */

.menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
}

.menu-nav-item {
    font-family: var(--font-heading), Georgia, serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text_muted);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: color 0.2s, background-color 0.2s;
}

.menu-nav-item:hover {
    color: var(--color-accent);
    background: color-mix(in srgb, var(--color-accent) 8%, transparent);
}

/* --- Menu category --- */

.menu-category {
    margin-bottom: 3rem;
}

.menu-category:last-of-type {
    margin-bottom: 0;
}

.menu-category-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-accent);
}

.menu-category-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.menu-category-header p {
    color: var(--color-text_muted);
    font-size: 0.9375rem;
    font-style: italic;
}

/* --- Dish items --- */

.menu-dishes {
    display: flex;
    flex-direction: column;
}

.dish-item {
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

.dish-item:last-child {
    border-bottom: none;
}

.dish-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.dish-name {
    font-family: var(--font-heading), Georgia, serif;
    font-size: 1.0625rem;
    font-weight: 600;
    white-space: nowrap;
}

.dish-dots {
    flex: 1;
    border-bottom: 1px dotted color-mix(in srgb, var(--color-text) 20%, transparent);
    min-width: 2rem;
    margin-bottom: 0.25rem;
}

.dish-price {
    font-family: var(--font-heading), Georgia, serif;
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1rem;
    white-space: nowrap;
}

.dish-description {
    color: var(--color-text_muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.25rem;
    max-width: 90%;
}

@media (min-width: 768px) {
    .menu-category-header h2 {
        font-size: 1.75rem;
    }

    .dish-name {
        font-size: 1.125rem;
    }

    .dish-description {
        font-size: 0.9375rem;
    }
}

/* --- Menu note (allergies etc.) --- */

.menu-note {
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
    border-radius: 6px;
    border-left: 3px solid var(--color-accent);
}

.menu-note p {
    color: var(--color-text_muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}
