@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&family=Open+Sans:wght@400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff7ed; /* Fond Crème très clair */
    color: #431407; /* Texte marron foncé (plus doux que le noir) */
    line-height: 1.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Fredoka', sans-serif; /* Police un peu "ronde" style fast food */
    font-size: 1.8rem;
    font-weight: 600;
    color: #ea580c; /* Orange vif */
}

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: #431407; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: #ea580c; }

/* Hero Section avec Image de fond */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p { font-size: 1.4rem; max-width: 700px; margin: 0 auto 2rem auto; font-weight: 600; }

.btn-principal {
    display: inline-block;
    background-color: #ea580c;
    color: white;
    padding: 15px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}

.btn-principal:hover {
    background-color: #c2410c;
    transform: scale(1.05);
}

/* Sections */
.section-padding { padding: 80px 5%; }
.section-title { 
    text-align: center; 
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem; 
    margin-bottom: 60px; 
    color: #431407; 
}

/* Grille Menu */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden; /* Pour que l'image ne dépasse pas */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: none;
}

.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Images dans les cartes */
.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content { padding: 25px; text-align: center; }
.card h3 { font-family: 'Fredoka', sans-serif; font-size: 1.5rem; margin-bottom: 10px; color: #431407; }
.price { color: #ea580c; font-weight: bold; font-size: 1.2rem; margin-bottom: 10px; display: block; }

/* Section Concept (Texte + Image coté à coté) */
.concept-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.concept-text { flex: 1; min-width: 300px; }
.concept-img { flex: 1; min-width: 300px; border-radius: 20px; width: 100%; }

/* Footer */
.footer { background-color: #431407; color: #fed7aa; padding: 60px 20px; text-align: center; }
.footer p { margin: 5px 0; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
}