/* V4: Bold Typography
   - Typography-first design
   - Giant headlines
   - List-based layout
   - Images as small accents (grayscale → color on hover)
   - High contrast black/white with red accent
*/

:root {
    --bg: #f5f5f5;
    --text: #000;
    --accent: #ff3b30;
    --muted: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.3;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 3rem;
}

.brand {
    display: flex;
    flex-direction: column;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 0.9;
    letter-spacing: 0.05em;
}

.lang-btn {
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.lang-btn:hover {
    opacity: 0.8;
}

/* Intro section with giant text */
.intro {
    padding: 4rem 3rem;
}

.intro h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
}

.intro .line {
    display: block;
}

.intro .line.accent {
    color: var(--accent);
}

/* Dish list - table-like layout */
.dishes-list {
    padding: 2rem 0;
    border-top: 1px solid #ddd;
}

.dish-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    border-bottom: 1px solid #ddd;
    transition: background 0.2s;
    cursor: pointer;
}

.dish-row:hover {
    background: #eee;
}

.dish-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--muted);
}

.dish-name h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.dish-region {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.dish-thumb {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.dish-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.dish-row:hover .dish-thumb img {
    filter: grayscale(0%);
}

.dish-desc {
    font-size: 0.875rem;
    color: var(--muted);
    max-width: 300px;
}

/* Footer */
footer {
    padding: 4rem 3rem;
    border-top: 1px solid #ddd;
    margin-top: auto;
}

.footer-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
    header, .intro, footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .intro h1 {
        font-size: clamp(3rem, 20vw, 6rem);
    }
    
    .dish-row {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem 1rem;
        padding: 1.5rem;
    }
    
    .dish-number {
        grid-row: span 2;
        align-self: start;
        font-size: 1.25rem;
    }
    
    .dish-thumb {
        display: none;
    }
    
    .dish-desc {
        grid-column: 2;
    }
    
    .dish-name h2 {
        font-size: 1.5rem;
    }
}
