/* ═══════════════════════════════════════════════════════════
   Napoli Theme — Sage & Tricolore (Panuozzo edition)
   Sage-green palette inspired by the Panuozzo Nice brand,
   with Italian-red accents and warm cream backgrounds.
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

html { scroll-behavior: smooth; }

:root {
    /* Primary: SAGE green from the Panuozzo Nice logo — dominant brand colour */
    --primary: #a3b594;
    --primary-dark: #82967a;
    --primary-light: #c0cdb2;
    /* Accent: warm khaki gold from the menu dividers — used sparingly for prices/highlights */
    --accent: #a8884a;
    --accent-light: #c4a165;
    /* Bottle green — the deep awning green, used only for navbar/footer/headings to anchor */
    --bottle: #234b3b;
    --bottle-dark: #142d22;
    --dark: #234b3b;          /* navbar / footer */
    --dark-soft: #2c5e44;
    --dark-card: #fffdf7;     /* popular cards = cream, not dark */
    --text: #233028;
    --text-light: #4f5b51;
    --text-muted: #7d8a80;
    --bg: #faf7f1;            /* warm cream backdrop */
    --bg-alt: #eef2e8;        /* very light sage-tinted surface */
    --white: #fff;
    --green: #a3b594;
    --red: #c8102e;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 14px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
}

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

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

html { height: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex; flex-direction: column; min-height: 100%;
}
main { flex: 1 0 auto; }
.footer { flex-shrink: 0; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Navigation ─────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(13, 27, 42, 0.94);
    backdrop-filter: blur(24px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1100;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.3rem;
}

.nav-logo-img {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    padding: 2px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.15);
    transition: transform 0.25s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.08) rotate(-3deg);
}

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

.nav-link {
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,27,42,0.4) 0%, rgba(13,27,42,0.05) 40%, rgba(13,27,42,0.6) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.hero-logo {
    display: block;
    margin: 0 auto 1.1rem;
    width: clamp(110px, 13vw, 150px);
    height: clamp(110px, 13vw, 150px);
    border-radius: 50%;
    background: var(--white);
    padding: 4px;
    object-fit: cover;
    box-shadow: 0 12px 36px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.18);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 700;
    color: var(--white);
    margin: 0.6rem 0 1.2rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.5);
}

.hero-badge {
    display: inline-block;
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.4);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 4rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.text-accent { color: var(--accent); }

.hero-box {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-status { display: flex; align-items: center; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.status-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    backdrop-filter: blur(8px);
}
.status-open { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.status-open i { font-size: 0.5rem; animation: pulse-dot 2s infinite; }
.status-closed { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.status-closed i { font-size: 0.5rem; }
.status-emergency { font-size: 0.85rem; font-weight: 600; color: #fbbf24; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.stars { color: var(--accent); font-size: 1.1rem; }
.stars-lg { font-size: 1.5rem; }

.rating-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ── Buttons ────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44,111,187,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-dark {
    background: rgba(50,50,50,0.85);
    color: var(--white);
    border-color: transparent;
}

.btn-dark:hover {
    background: rgba(40,40,40,0.92);
    border-color: transparent;
}

.btn-ubereats {
    background: #06C167;
    color: #fff;
    border-color: #06C167;
}

.btn-ubereats:hover {
    background: #05a857;
    border-color: #05a857;
}


.btn-ubereats {
    background: #06C167;
    color: #fff;
    border: 2px solid #06C167;
}

.btn-ubereats:hover {
    background: #05a857;
    border-color: #05a857;
}

.section .btn-outline,
.cta-section .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.section .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* ── Sections ───────────────────────────────────────────── */

.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--primary);
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.section-dark .text-accent { color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-dark .section-label { color: var(--accent); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-desc { color: rgba(255,255,255,0.7); }

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ── Page Hero ──────────────────────────────────────────── */

.page-hero {
    position: relative;
    padding: 10rem 0 4rem;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.32);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,27,42,0.4) 0%, rgba(13,27,42,0.05) 40%, rgba(13,27,42,0.6) 100%);
}

.page-hero .container { position: relative; }

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.page-hero .section-label { color: var(--accent); }

/* ── About ──────────────────────────────────────────────── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(44,111,187,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover .about-photo {
    transform: scale(1.05);
}

/* ── Menu Cards (Home popular) ──────────────────────────── */

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
    gap: 1.5rem;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.4);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.menu-card-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-alt));
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
}

.badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.badge-popular {
    background: var(--accent);
    color: var(--white);
}

.menu-card-body {
    padding: 1.2rem;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--bottle);
}

.menu-card-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
    font-family: var(--font-heading);
}

.menu-card-desc {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0.8rem;
}

.menu-card-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
}

.tag-green { color: var(--green); background: rgba(46,158,90,0.1); }
.tag-red { color: var(--red); background: rgba(217,64,64,0.1); }

/* ── Menu Page ──────────────────────────────────────────── */

.menu-filter-section {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.menu-filter {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.filter-select {
    width: 100%;
    max-width: 360px;
    padding: 0.65rem 2.5rem 0.65rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--bg-alt);
    background: var(--white);
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a7a95' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary);
    outline: none;
}

.menu-section { margin-bottom: 3rem; }

.menu-section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-alt);
}

.menu-section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-section-title i { color: var(--primary); }

.menu-section-desc {
    color: var(--text-light);
    margin-top: 0.3rem;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
    gap: 1.5rem;
}

.menu-item-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(35,75,59,0.08);
    transition: var(--transition);
}

.menu-item-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: rgba(35,75,59,0.18);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    display: block;
    background: var(--bg-alt);
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-alt), var(--bg));
    font-size: 2.8rem;
    color: var(--accent);
    opacity: 0.45;
}

.menu-item-body {
    padding: 1.2rem 1.4rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
}

.menu-item-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    line-height: 1.25;
}

.badge-inline {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.badge-inline.badge-popular { background: rgba(168,136,74,0.15); color: var(--accent); }
.badge-inline.badge-veggie { background: rgba(163,181,148,0.18); color: var(--primary-dark); }
.badge-inline.badge-spicy { background: rgba(200,16,46,0.12); color: var(--red); }

.menu-item-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.35rem;
    white-space: nowrap;
    font-family: var(--font-heading);
}

.menu-item-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: center;
    margin: 0;
}

.menu-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.fade-in {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Services ───────────────────────────────────────────── */

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

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(44,111,187,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.service-card p { color: var(--text-light); font-size: 0.95rem; }

.service-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(44,111,187,0.06);
    color: var(--primary);
    border: 1px solid rgba(44,111,187,0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-badge i {
    font-size: 1rem;
}

a.service-badge-link {
    text-decoration: none;
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

a.service-badge-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-cta-secondary {
    background: transparent !important;
    border: 1.5px solid var(--primary) !important;
    color: var(--primary) !important;
}

.nav-cta-secondary:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}

/* ── Reviews ────────────────────────────────────────────── */

.rating-summary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    justify-content: center;
    gap: 1.4rem;
}

.review-card {
    background: var(--white);
    border: 1px solid rgba(35,75,59,0.08);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(20,45,34,0.10);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(20,45,34,0.18);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-avatar-lg {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
}

.review-stars {
    color: var(--accent);
    font-size: 0.8rem;
}

.review-text {
    color: var(--text);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.review-read-more {
    background: none;
    border: none;
    color: var(--bottle);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.5rem;
    display: block;
}
.review-read-more:hover {
    text-decoration: underline;
}

.review-card strong { color: var(--bottle); }

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

/* Reviews page */
.rating-summary-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.rating-big {
    display: flex;
    align-items: baseline;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
}

.rating-max {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-left: 0.2rem;
}

.rating-details .stars { margin-bottom: 0.3rem; }
.rating-details p { color: var(--text-light); font-size: 0.95rem; }

.rating-summary-card .btn-outline {
    margin-left: auto;
    color: var(--text);
    border-color: var(--text-muted);
}

.rating-summary-card .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card-full {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card-full:hover {
    box-shadow: var(--shadow);
}

.review-card-full .review-stars { margin-bottom: 0.2rem; }
.review-card-full .review-date { color: var(--text-muted); }

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-text-full {
    color: var(--text);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1rem;
}

/* ── Hours & Location ───────────────────────────────────── */

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.hours-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.hours-day {
    font-weight: 600;
    min-width: 100px;
}

.hours-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(0,0,0,0.1);
    min-width: 20px;
}

.hours-slots {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hours-note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(44,111,187,0.06);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 1.05rem;
}

.map-address i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.map-embed { margin-bottom: 1rem; }

/* ── Contact Page ───────────────────────────────────────── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(44,111,187,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-card a { color: var(--primary); }

.contact-socials {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: var(--bg-alt);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.services-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-card {
    background: var(--white); padding: 2rem;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem;
}
.contact-form-card h3 i { color: var(--accent); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { margin-bottom: 1rem; }
.cf-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.cf-required { color: #ef4444; }
.cf-group input, .cf-group textarea, .cf-group select {
    width: 100%; padding: 0.7rem 1rem; border-radius: 8px;
    border: 1px solid #e5e7eb; background: #fafafa;
    color: var(--text); font-family: inherit; font-size: 0.9rem;
    transition: border-color 0.3s;
}
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus { outline: none; border-color: var(--accent); }
.cf-group input::placeholder, .cf-group textarea::placeholder { color: #9ca3af; }
.cf-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.cf-submit { width: 100%; justify-content: center; cursor: pointer; border: none; font-family: inherit; font-size: 0.95rem; }
.cf-status { text-align: center; margin-top: 0.8rem; font-size: 0.85rem; }
.cf-status.success { color: #22c55e; }
.cf-status.error { color: #ef4444; }

.hours-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.hours-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-card h3 i { color: var(--primary); }

.map-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ── CTA Section ────────────────────────────────────────── */

.cta-section {
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,111,187,0.6), rgba(13,27,42,0.7));
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(44, 111, 187, 0.3);
}

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

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-contact-form {
    max-width: 600px; margin: 2.5rem auto 0; text-align: left;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2rem;
}
.cta-contact-form h3 {
    font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.5rem; justify-content: center;
}
.cta-contact-form h3 i { color: var(--accent); }
.cta-contact-form .cf-group label { color: rgba(255,255,255,0.8); }
.cta-contact-form .cf-group input,
.cta-contact-form .cf-group textarea,
.cta-contact-form .cf-group select {
    background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: #fff;
}
.cta-contact-form .cf-group input::placeholder,
.cta-contact-form .cf-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.cta-contact-form .cf-group input:focus,
.cta-contact-form .cf-group textarea:focus,
.cta-contact-form .cf-group select:focus { border-color: var(--accent); }
.cta-contact-form .cf-status.success { color: #34d399; }

/* ── Footer ─────────────────────────────────────────────── */

.footer {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: rgba(255,255,255,0.9);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i { color: var(--accent); }

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--bottle);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--white); text-decoration: underline; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.footer-contact i { color: var(--white); margin-top: 0.2rem; font-size: 0.85rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.22);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.footer-pricing { color: var(--accent); font-weight: 600; }

/* ── Flash Messages ─────────────────────────────────────── */

.flash-container {
    position: fixed;
    top: 80px;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
}

.flash {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    animation: slideIn 0.3s ease;
}

.flash-success { background: var(--green); color: var(--white); }
.flash-danger { background: var(--red); color: var(--white); }
.flash-warning { background: var(--accent); color: var(--dark); }

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.7;
}

.flash-close:hover { opacity: 1; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ── Promo Banner ───────────────────────────────────────── */

.promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, #1a2332 0%, #243044 100%);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    transform: translateY(100%);
    animation: promoSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

.promo-banner.hidden {
    transform: translateY(100%);
    animation: none;
    transition: transform 0.4s ease;
}

/* Mini tab when banner is dismissed */
.promo-banner-tab {
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 9997;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.promo-banner-tab.visible {
    transform: translateY(0);
}

.promo-banner-tab:hover {
    filter: brightness(1.1);
}

@keyframes promoSlideUp {
    to { transform: translateY(0); }
}

.promo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.promo-banner-close {
    position: absolute;
    top: -8px;
    right: 8px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: rgba(255,255,255,0.7);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    line-height: 1;
}

.promo-banner-close:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.promo-banner-text {
    flex: 1;
    min-width: 0;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.promo-no-fee {
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.promo-title {
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
}

.promo-title strong {
    color: #f59e0b;
    font-size: 1.15rem;
}

.promo-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    margin: 0.15rem 0 0;
}

.promo-urgency {
    color: #f87171 !important;
    font-size: 0.75rem;
    margin: 0.3rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.promo-urgency strong {
    color: #f59e0b !important;
}

.promo-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.promo-btn i {
    font-size: 1rem;
}

.promo-btn-info {
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
    color: #fff !important;
}

.promo-btn-phone {
    background: #3b82f6;
    color: #fff;
}

.promo-btn-sms {
    background: #8b5cf6;
    color: #fff;
}

.promo-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.footer { padding-bottom: 100px; }

/* ── Traiteur (catering formules) ──────────────────────── */
.traiteur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: center;
    gap: 1.6rem;
    margin-bottom: 3rem;
}

.traiteur-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.4rem 1.6rem 1.8rem;
    text-align: center;
    border: 1px solid rgba(35,75,59,0.08);
    box-shadow: 0 6px 24px rgba(20,45,34,0.08);
    position: relative;
    transition: var(--transition);
}

.traiteur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(20,45,34,0.18);
    border-color: rgba(35,75,59,0.18);
}

.traiteur-card-highlight {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-alt) 100%);
    box-shadow: 0 12px 36px rgba(35,75,59,0.16);
}

.traiteur-card-highlight::before {
    content: 'Le plus choisi';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(168,136,74,0.35);
}

.traiteur-card-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 6px 18px rgba(35,75,59,0.25);
}

.traiteur-card-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--bottle);
    margin-bottom: 0.4rem;
}

.traiteur-card-price {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.2rem;
    line-height: 1;
}

.traiteur-card-price span { font-size: 1.4rem; vertical-align: super; }

.traiteur-card-price small {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-style: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.traiteur-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    border-top: 1px solid rgba(35,75,59,0.08);
}

.traiteur-card-list li {
    padding: 0.65rem 0.2rem;
    border-bottom: 1px solid rgba(35,75,59,0.06);
    font-size: 0.92rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.traiteur-card-list li:last-child { border-bottom: none; }

.traiteur-card-list i {
    color: var(--primary-dark);
    background: var(--bg-alt);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.traiteur-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    max-width: 820px;
    margin: 0 auto;
}

.traiteur-detail-card {
    background: var(--white);
    border: 1px solid rgba(35,75,59,0.10);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    box-shadow: 0 4px 18px rgba(20,45,34,0.06);
}

.traiteur-detail-card h4 {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--bottle);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.traiteur-detail-card h4 i {
    color: var(--primary-dark);
    background: var(--bg-alt);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.traiteur-detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.traiteur-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.traiteur-detail-card ul li {
    padding: 0.35rem 0;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.1rem;
}

.traiteur-detail-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

@media (max-width: 768px) {
    .traiteur-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .traiteur-details { grid-template-columns: 1fr; }
}

/* ── Notre Carte (menu boards) ─────────────────────────── */
.section-cards {
    background: var(--bg-alt);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    border-top: 1px solid rgba(35,75,59,0.06);
    border-bottom: 1px solid rgba(35,75,59,0.06);
}

.menu-boards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.2rem;
    max-width: 760px;
    margin: 0 auto;
}

.menu-board {
    position: relative;
    cursor: zoom-in;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(20,45,34,0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(35,75,59,0.08);
}

.menu-board:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 54px rgba(20,45,34,0.26);
}

.menu-board img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop (>= 901px): caption band below image, no floating tag */
.menu-board-tag { display: none; }
.menu-board-caption {
    background: var(--bottle);
    color: var(--white);
    text-align: center;
    padding: 0.95rem 1rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

/* Mobile (<= 900px): floating pill tag, no caption band */
@media (max-width: 900px) {
    .menu-boards { gap: 1.4rem; max-width: 640px; }
    .menu-board-caption { display: none; }
    .menu-board-tag {
        display: inline-block;
        position: absolute;
        top: 1rem;
        left: 1rem;
        z-index: 2;
        background: var(--bottle);
        color: var(--white);
        padding: 0.45rem 1rem;
        border-radius: 50px;
        font-family: var(--font-body);
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        box-shadow: 0 4px 14px rgba(20,45,34,0.25);
    }
}

/* ── Réalisations / Galerie (gallery) ───────────────────── */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: center;
    gap: 1.4rem;
}

.realisation-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    background: var(--bg-alt);
}

.realisation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.realisation-card:hover img { transform: scale(1.05); }

.realisation-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 0.9rem;
    background: linear-gradient(transparent, rgba(20,45,34,0.85));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
}

.realisation-overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 75, 59, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.realisation-overlay i {
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.realisation-card:hover .realisation-overlay { background: rgba(35, 75, 59, 0.4); }
.realisation-card:hover .realisation-overlay i { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 25, 18, 0.92);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
}
.lightbox.active { display: flex; flex-direction: column; }
.lightbox img {
    max-width: 92vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
    color: #fff;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
    max-width: 80vw;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { order: -1; }
    .image-frame { max-width: 300px; }
    .location-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(13, 27, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1050;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    }

    .nav-menu.open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        width: auto;
        font-size: 1.4rem;
        text-align: center;
        transform: translateX(30px);
        opacity: 0;
        transition: color 0.3s ease, background 0.3s ease, transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-menu.open .nav-link {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-menu.open li:nth-child(1) .nav-link { transition-delay: 0.1s; }
    .nav-menu.open li:nth-child(2) .nav-link { transition-delay: 0.15s; }
    .nav-menu.open li:nth-child(3) .nav-link { transition-delay: 0.2s; }
    .nav-menu.open li:nth-child(4) .nav-link { transition-delay: 0.25s; }

    .nav-cta {
        margin-top: 1rem;
        justify-content: center;
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        transform: translateX(30px);
        opacity: 0;
        transition: background 0.3s ease, transform 0.4s ease 0.3s, opacity 0.4s ease 0.3s;
    }

    .nav-menu.open .nav-cta {
        transform: translateX(0);
        opacity: 1;
    }

    .hero { align-items: center; padding: 4rem 1rem 3rem; min-height: 90vh; }
    .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
    .hero-content { padding: 1rem; }
    .hero-actions { flex-direction: column; gap: 0.6rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-badge { font-size: 0.75rem; padding: 0.35rem 1rem; }

    .popular-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
    .menu-items-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
    .realisations-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }

    .menu-item-card { flex-direction: column; }
    .menu-item-image { height: 180px; }
    .menu-item-body { padding: 1rem 1.1rem 1.2rem; }
    .menu-item-name { font-size: 1.05rem; }
    .menu-item-price { font-size: 1.2rem; }
    .menu-item-desc { font-size: 0.85rem; }

    .nav-logo-img { height: 46px; width: 46px; }
    .logo-text { font-size: 1.1rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .rating-summary-card {
        flex-direction: column;
        text-align: center;
    }

    .rating-summary-card .btn-outline { margin-left: 0; }

    .section { padding: 3rem 0; }
}

@media (max-width: 768px) {
    .promo-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1rem 0.8rem;
        gap: 0.8rem;
    }

    .promo-banner-close {
        top: 4px;
        right: 4px;
    }

    .promo-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .promo-btn {
        flex: 1;
        justify-content: center;
        padding: 0.55rem 0.8rem;
        font-size: 0.8rem;
    }

    .promo-btn span {
        display: none;
    }

    .promo-btn i {
        font-size: 1.2rem;
    }

    .promo-title { font-size: 0.9rem; }
    .promo-title strong { font-size: 1.05rem; }
    .promo-subtitle { font-size: 0.72rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .menu-legend { flex-direction: column; align-items: center; }
    .realisations-grid { grid-template-columns: 1fr; }
    .menu-items-grid { grid-template-columns: 1fr; gap: 1rem; }
    .menu-item-image { height: 200px; }
    .section { padding: 2.5rem 0; }
    .section-title { font-size: 1.7rem; }
    .container { padding: 0 1rem; }
}

/* ── Holiday / Vacation Banner ─────────────────────────────── */
.holiday-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    padding: 0.85rem 1.5rem;
    text-align: center;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.3);
}
.holiday-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    line-height: 1.4;
}
.holiday-banner-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: holiday-pulse 2s ease-in-out infinite;
}
@keyframes holiday-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@media (max-width: 600px) {
    .holiday-banner { padding: 0.7rem 1rem; }
    .holiday-banner-content { font-size: 0.85rem; }
}
