/* --- VARIABLES ET BASES --- */
:root {
    --primary: #1a1a1a;
    --secondary: #f4f4f4;
    --accent: #ff4757;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background-color: #fff;
}

.container { width: 90%; max-width: 1100px; margin: auto; }

/* --- ENTÊTE --- */
.main-header { padding: 40px 0; text-align: center; background: var(--secondary); }
.site-logo { max-width: 180px; height: auto; border-radius: 10px; }
.tagline { font-style: italic; color: #666; margin-top: 10px; }

/* --- GRILLE DE MENU --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.card-img { width: 100%; height: 200px; object-fit: cover; background: #ddd; }
.card-content { padding: 20px; }

.price { font-weight: bold; color: var(--accent); font-size: 1.2rem; display: block; margin: 10px 0; }

.btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* --- FOOTER --- */
.main-footer { background: var(--primary); color: white; padding: 40px 0; margin-top: 60px; text-align: center; }

/* --- MOBILE --- */
@media (max-width: 600px) {
    .menu-grid { grid-template-columns: 1fr; }
}