@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --bg-dark: #0f0f13;
    --bg-card: #1c1c21;
    --primary: #f24e1e;
    --primary-glow: rgba(242, 78, 30, 0.4);
    --secondary: #ff8c00;
    --text-main: #f5f5f7;
    --text-muted: #a0a0a5;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 15, 19, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }

.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* ============================
   HEADER
   ============================ */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.9rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px; /* Léger arrondi pour le style */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

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

/* Call button in nav */
.nav-call-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: #fff !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 30px;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 3px 12px var(--primary-glow);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(242, 78, 30, 0.6) !important;
    color: #fff !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--primary-glow);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 78, 30, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(242, 78, 30, 0.05);
}

.btn-order {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.btn-order:hover {
    background: rgba(242, 78, 30, 0.1);
    transform: translateY(-2px);
}

.btn-google-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    color: #333;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-google-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.btn-leave-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: .95rem;
    white-space: nowrap;
}

.btn-leave-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 5% 3rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 70% 30%, rgba(242, 78, 30, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
}

.hero-content { max-width: 580px; z-index: 1; }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 44%;
    max-width: 580px;
    z-index: 0;
    filter: drop-shadow(0 0 40px rgba(0,0,0,0.6));
}

.hero-image img { width: 100%; border-radius: 20px; }

/* ============================
   MENU SECTION
   ============================ */
.menu-section {
    padding: 5rem 5%;
    background-color: var(--bg-dark);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.55rem 1.2rem;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.category-tab.active, .category-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 14px var(--primary-glow);
}

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

.menu-note {
    background: rgba(242, 78, 30, 0.08);
    border: 1px solid rgba(242, 78, 30, 0.2);
    color: var(--text-muted);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.menu-note i { color: var(--primary); flex-shrink: 0; }

.menu-note strong { color: var(--text-main); }

.menu-category {
    background: var(--bg-card);
    padding: 1.8rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s;
}

.menu-category:hover { border-color: rgba(242, 78, 30, 0.2); }

.menu-category--highlight {
    border-color: rgba(242, 78, 30, 0.3);
    background: linear-gradient(135deg, #1c1c21, #201510);
}

.menu-category h3 {
    margin-bottom: 1.3rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.menu-cat-note {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}

.menu-item:last-child { border-bottom: none; padding-bottom: 0; }

.item-info h4 { font-size: 1rem; margin-bottom: 0.15rem; font-weight: 600; }

.item-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

.item-price {
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.15rem;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
    line-height: 1.3;
}

.item-price.fire { color: var(--primary); }

.price-cents { font-size: 0.75em; vertical-align: super; font-weight: 700; }

.menu-tag {
    display: inline-block;
    font-size: 0.65rem;
    background: rgba(255,255,255,0.08);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    color: var(--text-muted);
    font-weight: 600;
    vertical-align: middle;
}

/* Viandes & Sauces chips */
.viandes-grid, .sauces-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-top: 0.5rem;
}

.viande-chip {
    background: rgba(242, 78, 30, 0.1);
    border: 1px solid rgba(242, 78, 30, 0.25);
    color: var(--text-main);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
}

.sauce-chip {
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.2);
    color: var(--secondary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Menu include list (Menu Enfant/Etudiant) */
.special-price-badge {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.menu-include-list {
    list-style: none;
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-include-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.menu-include-list i { color: #34A853; font-size: 0.85rem; flex-shrink: 0; }

/* Menu Gallery */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-board-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: zoom-in;
}

.menu-board-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(242, 78, 30, 0.35);
}

.menu-board-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
}

/* ============================
   REVIEWS SECTION
   ============================ */
.reviews-section {
    padding: 5rem 5%;
    background: linear-gradient(180deg, #141418 0%, var(--bg-dark) 100%);
}

.google-rating-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.google-logo-big { width: 48px; height: 48px; flex-shrink: 0; }

.rating-info { text-align: center; }

.rating-score {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
}

.rating-stars-big { color: #ffb400; font-size: 1.5rem; margin: 0.3rem 0; }

.star-empty { opacity: 0.3; }

.rating-count { color: var(--text-muted); font-size: 0.85rem; }

.rating-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    flex-shrink: 0;
}

.rating-cta { text-align: center; }
.rating-cta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.8rem; }

/* 4-column grid */
.reviews-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.review-card {
    background: var(--bg-card);
    padding: 1.3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.review-card:hover {
    border-color: rgba(255, 180, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.review-card-top { display: flex; flex-direction: column; gap: 0.5rem; }

.review-author-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.author-meta { flex: 1; min-width: 0; }

.review-author-name {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date { color: var(--text-muted); font-size: 0.75rem; }

.google-badge { width: 16px; height: 16px; flex-shrink: 0; margin-left: auto; }

.review-stars { color: #ffb400; font-size: 0.85rem; }

.review-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    flex: 1;
}

.google-review-action { text-align: center; margin-top: 1rem; }

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #0a0a0c;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(242, 78, 30, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 { font-size: 1.1rem; margin-bottom: 1.2rem; color: #fff; }

.footer-col p, .footer-col a {
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-col a:hover { color: var(--primary); }

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.contact-info i { color: var(--primary); font-size: 1rem; margin-top: 0.3rem; flex-shrink: 0; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.8;
}

/* ============================
   IMAGE MODAL
   ============================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
}

.modal.active { display: flex; }

.modal-content {
    max-width: 92%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 18px; right: 24px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
}

.close-modal:hover { color: var(--primary); transform: rotate(90deg); }

/* ============================
   ORDER POPUP
   ============================ */
.order-popup {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.order-popup.active { display: flex; }

.order-popup-box {
    background: var(--bg-card);
    border: 1px solid rgba(242, 78, 30, 0.25);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    animation: popIn 0.35s cubic-bezier(.34,1.56,.64,1);
}

@keyframes popIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.order-popup-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }

.order-popup-box h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }

.order-popup-box p { color: var(--text-muted); font-size: 1.05rem; }

.order-popup-sub {
    margin-top: 1rem !important;
    font-size: 0.9rem !important;
}

.order-popup-sub a { color: var(--primary); text-decoration: none; font-weight: 600; }

.order-popup-box .btn-primary,
.order-popup-box .btn-secondary {
    width: 100%;
    justify-content: center;
}

/* ============================
   RESPONSIVE
   ============================ */

/* Avis : responsive grille */
@media (max-width: 1200px) {
    .reviews-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .reviews-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .rating-divider { display: none; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 7rem;
        padding-bottom: 2rem;
    }
    .hero-content { margin: 0 auto; }
    .hero-desc { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-image {
        position: relative;
        right: auto; top: auto;
        transform: none;
        width: 90%;
        margin: 2.5rem auto 0;
    }
}

@media (max-width: 600px) {
    .reviews-grid-4 { grid-template-columns: 1fr; }
}




@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -105%;
        width: 260px;
        height: 100vh;
        background: rgba(10, 10, 12, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
        border-left: 1px solid var(--border-color);
        box-shadow: -15px 0 40px rgba(0,0,0,0.6);
        gap: 1.2rem;
    }

    .nav-links.active { right: 0; }

    .mobile-menu-btn { display: block; }

    .section-title { font-size: 2rem; }

    .btn-primary, .btn-secondary, .btn-order {
        width: 100%;
        justify-content: center;
    }

    .google-rating-banner { gap: 1rem; padding: 1.5rem; }

    .rating-score { font-size: 2.5rem; }

    .text-menu-grid { grid-template-columns: 1fr; }

    .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    header { padding: 0.75rem 4%; }
    .logo { font-size: 1.2rem; }
    .section-title { font-size: 1.75rem; }
    .category-tabs { gap: 0.4rem; }
    .category-tab { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
    .menu-category { padding: 1.3rem; }
}
