/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fdfdfd;
}

/* Couleurs de la marque */
:root {
    --primary-color: #e67e22; /* Orange poulet frit */
    --secondary-color: #c0392b; /* Rouge appétit */
    --accent-color: #f1c40f; /* Jaune moutarde/fromage */
    --text-light: #fff;
    --bg-dark: #2d3436;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary-color);
}

a {
    color: #ccc;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--bg-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Boutons */
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    background-color: #a93226;
    transform: scale(1.05);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('heroburger.png'); /* Image placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Menu Section */
.menu-section {
    padding: 4rem 5%;
    text-align: center;
}

.menu-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--bg-dark);
}

.card p {
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.price {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Banner */
.banner {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 3rem 1rem;
}

.banner h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: #ccc;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.8rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification pour l'exemple */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}