/* Variables & Reset */
:root {
    --black: #050505; 
    --dark-gray: #1d1d1f;
    --light-gray: #f5f5f7;
    --border-gray: #d2d2d7;
    --white: #ffffff;
    --yellow: #FFCC00; 
    --yellow-hover: #E6B800;
}

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

html {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior: smooth;
    color: var(--dark-gray);
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--white);
    line-height: 1.6;
}

/* Typography & Colors */
h1 { font-size: 3.5rem; letter-spacing: -0.04em; font-weight: 700; line-height: 1.1; margin-bottom: 1rem; color: var(--black); }
h2 { font-size: 2.5rem; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 1rem; color: var(--black); }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--black); }
h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--black); }
p { font-size: 1.1rem; color: #86868b; margin-bottom: 1.5rem; font-weight: 400; }
strong { color: var(--black); }

.text-yellow { color: var(--yellow); }
.yellow-bg { background-color: var(--yellow); }

/* Layout & Spacing */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 6rem 0; }
.text-center { text-align: center; }
.gray-bg { background-color: var(--light-gray); }
.black-bg { background-color: var(--black); color: var(--white); }
.black-bg p { color: #a1a1a6; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 980px; 
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn.large { padding: 1.1rem 2.2rem; font-size: 1.1rem; }

.btn-solid { background-color: var(--black); color: var(--white); }
.btn-solid:hover { background-color: #333; transform: translateY(-2px); }

.btn-yellow { background-color: var(--yellow); color: var(--black); }
.btn-yellow:hover { background-color: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4); }

.btn-outline { background-color: transparent; color: var(--black); border-color: var(--border-gray); }
.btn-outline:hover { border-color: var(--black); background-color: var(--black); color: var(--white); }

.btn-outline-black { background-color: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-black:hover { background-color: var(--black); color: var(--white); }

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; padding: 1.2rem 2rem; }
.logo { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; color: var(--black); }
.nav-links a { margin-left: 2.5rem; text-decoration: none; color: var(--dark-gray); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--yellow); }

/* Hero Section */
.hero { text-align: center; padding: 8rem 2rem 5rem; position: relative; }
.trust-badge { display: inline-block; padding: 0.5rem 1.2rem; background: var(--white); border: 1px solid var(--border-gray); border-radius: 980px; font-size: 0.9rem; font-weight: 600; margin-bottom: 2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; }
.hero-image-placeholder { height: 60vh; background-color: var(--black); border-radius: 24px; margin: 4rem auto 0; max-width: 1100px; background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)); }

/* Engagements (Features) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-top: 4rem; }
.feature-card { text-align: center; }
.feature-icon { font-size: 3rem; margin-bottom: 1rem; }

/* Menu Grid */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.menu-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--border-gray); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); border-color: var(--yellow); }
.card-img { height: 220px; width: 100%; background-color: var(--light-gray); }
.card-content { padding: 2rem; }
.price { font-weight: 700; font-size: 1.2rem; display: block; margin-top: 1rem; }

/* Galerie */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
.gallery-item { background-color: var(--light-gray); height: 300px; border-radius: 16px; transition: transform 0.3s ease; }
.gallery-item:hover { transform: scale(1.02); }

/* Reviews */
.review-card { max-width: 700px; margin: 0 auto; padding: 4rem; background: var(--white); border-radius: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); border-top: 4px solid var(--yellow); }
.stars { font-size: 1.8rem; margin-bottom: 1.5rem; letter-spacing: 2px; }
.quote { font-size: 1.4rem; font-style: italic; color: var(--black); font-weight: 500; line-height: 1.4; }
.author { font-weight: 700; font-size: 1rem; display: block; margin-top: 2rem; color: #86868b; }

/* FAQ */
.faq-list { max-width: 800px; margin: 3rem auto 0; text-align: left; }
.faq-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border-gray); }
.faq-item:last-child { border-bottom: none; }

/* Location & Form */
.dual-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.form-group { margin-bottom: 1.5rem; }
label { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--black); }
input, select, textarea { width: 100%; padding: 1.2rem; border: 1px solid var(--border-gray); border-radius: 12px; font-family: inherit; font-size: 1rem; background: var(--white); transition: all 0.2s ease; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.15); }

/* Footer */
.footer { padding: 5rem 2rem 3rem; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid #333; padding-top: 3rem; }
.footer-logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.footer-details p, .footer-legal p { margin: 0; color: #a1a1a6; font-size: 0.95rem; }

/* Mobile Sticky CTA */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 1rem; box-shadow: 0 -5px 20px rgba(0,0,0,0.08); z-index: 1000; border-top: 1px solid var(--border-gray); }
.mobile-cta-bar .btn { flex: 1; margin: 0 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .dual-col { grid-template-columns: 1fr; gap: 3rem; }
    .hero-buttons { flex-direction: column; }
    .nav-links { display: none; }
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 90px; }
    .footer-content { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .review-card { padding: 2rem; }
}

/* Style spécifique pour le bouton Uber Eats */
.btn-uber {
    background-color: #06C167; /* Vert Uber Eats */
    color: #ffffff;
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
    box-shadow: 0 4px 15px rgba(6, 193, 103, 0.2);
}

.btn-uber:hover {
    background-color: #05a357;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 193, 103, 0.3);
    color: #ffffff;
}

/* On s'assure que le formulaire reste propre dessous */
.contact-form form {
    border-top: 1px solid var(--border-gray);
    padding-top: 2rem;
}