:root {
    --primary: #2d3436;
    --accent: #d63031;
    --bg: #f5f6fa;
    --text: #636e72;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: var(--bg);
    color: var(--primary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
}

.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.5rem; margin-bottom: 2rem; font-weight: 300; }

button {
    padding: 1rem 2rem;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

button:hover { transform: translateY(-2px); }

.menu-section { padding: 4rem 2rem; text-align: center; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

dialog {
    border: none;
    border-radius: 12px;
    padding: 2rem;
    max-width: 520px;
    width: calc(100% - 3rem);
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

dialog::backdrop {
    background: rgba(0,0,0,0.45);
}

#meal-dialog h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

#meal-dialog p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
}

#meal-dialog form {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}
