/* ================================================
   DOLCE VITA — Pizzeria & Restaurant Italien
   Color palette: Burgundy, warm brown, cream, white
   ================================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
    --clr-primary: #6B1D2A;
    --clr-primary-dark: #4A0E1A;
    --clr-primary-light: #8C3344;
    --clr-accent: #B8860B;
    --clr-accent-light: #D4A849;
    --clr-text: #2C2C2C;
    --clr-text-light: #6B6B6B;
    --clr-bg: #FFFFFF;
    --clr-bg-alt: #F7F5F3;
    --clr-bg-warm: #FAF8F5;
    --clr-border: #E8E2DC;

    --ff-heading: 'Playfair Display', 'Georgia', serif;
    --ff-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-semibold: 600;
    --fw-bold: 700;

    --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8rem);
    --fs-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
    --fs-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
    --fs-md: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
    --fs-lg: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    --fs-xl: clamp(2rem, 1.5rem + 2vw, 3rem);
    --fs-xxl: clamp(2.5rem, 2rem + 3vw, 4.5rem);

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --navbar-height: 72px;
    --container-max: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-body);
    font-weight: var(--fw-regular);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

address { font-style: normal; }

/* ---------- UTILITIES ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    text-align: center;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
}

.section-title--light {
    color: var(--clr-bg);
}

.section-subtitle {
    font-size: var(--fs-base);
    color: var(--clr-text-light);
    text-align: center;
    margin-bottom: var(--space-lg);
    font-weight: var(--fw-light);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85em 2em;
    border-radius: var(--radius-sm);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--clr-primary);
    color: #fff;
    border: 2px solid var(--clr-primary);
}

.btn--primary:hover {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 29, 42, 0.3);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn--outline:hover {
    background: #fff;
    color: var(--clr-primary);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    transition: all var(--transition);
    background: transparent;
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.navbar--scrolled .navbar__logo-text,
.navbar--scrolled .navbar__link {
    color: var(--clr-text);
}

.navbar--scrolled .navbar__toggle span {
    background: var(--clr-text);
}

.navbar__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo-text {
    font-family: var(--ff-heading);
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
    color: #fff;
    font-style: italic;
    transition: color var(--transition);
}

.navbar__logo-img {
    height: 36px;
    width: auto;
    transition: filter var(--transition);
}

.navbar--scrolled .navbar__logo-img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(60%) saturate(2000%) hue-rotate(330deg) brightness(70%);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.navbar__link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-regular);
    color: #fff;
    position: relative;
    padding: 0.25em 0;
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: width var(--transition);
}

.navbar--scrolled .navbar__link::after {
    background: var(--clr-primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

.navbar__link:not(.navbar--scrolled .navbar__link)::after {
    background: #fff;
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6em 1.5em;
    border-radius: var(--radius-sm);
    background: var(--clr-primary);
    color: #fff !important;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition);
}

.navbar__cta:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-1px);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
    border-radius: 2px;
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(74, 14, 26, 0.55) 0%,
        rgba(44, 10, 18, 0.7) 50%,
        rgba(20, 5, 8, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: var(--space-md);
    max-width: 800px;
}

.hero__subtitle {
    font-family: var(--ff-body);
    font-size: var(--fs-md);
    font-weight: var(--fw-light);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-xxl);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero__title span {
    font-weight: var(--fw-regular);
    font-style: italic;
    display: block;
    font-size: 0.6em;
    letter-spacing: 0.1em;
    margin-top: 0.2em;
}

.hero__tagline {
    font-size: var(--fs-md);
    font-weight: var(--fw-light);
    margin-bottom: var(--space-lg);
    opacity: 0.85;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    opacity: 0.7;
    transition: opacity var(--transition);
    animation: bounce 2s infinite;
}

.hero__scroll:hover { opacity: 1; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- ATOUTS ---------- */
.atouts {
    padding: var(--space-xl) 0;
    background: var(--clr-bg);
}

.atouts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.atout {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.atout:hover {
    background: var(--clr-bg-alt);
    transform: translateY(-4px);
}

.atout__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
    color: var(--clr-primary);
    transition: transform var(--transition);
}

.atout:hover .atout__icon {
    transform: scale(1.1);
}

.atout__icon svg,
.atout__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.atout__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    color: var(--clr-text);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: var(--fs-sm);
}

.atout__text {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.6;
}

/* ---------- CARTE INTRO NAV ---------- */
.carte-intro {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--clr-bg-warm);
}

.carte-intro__nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.carte-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    background: var(--clr-bg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 120px;
}

.carte-nav__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--clr-primary);
}

.carte-nav__icon {
    width: 40px;
    height: 40px;
    color: var(--clr-primary);
}

.carte-nav__icon svg {
    width: 100%;
    height: 100%;
}

/* ---------- MENU SECTIONS ---------- */
.menu-section {
    padding: var(--space-xl) 0;
}

.menu-section--alt {
    background: var(--clr-bg-alt);
}

.menu-section__category {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: var(--clr-primary-light);
    text-align: center;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    position: relative;
}

.menu-section__category:first-of-type {
    margin-top: var(--space-sm);
}

.menu-section__category span {
    display: block;
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-light);
    color: var(--clr-text-light);
    margin-top: 0.25em;
}

.menu-section__category::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--clr-accent);
    margin: var(--space-sm) auto 0;
}

/* ---------- MENU GRID ---------- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs) var(--space-lg);
    max-width: 960px;
    margin: 0 auto var(--space-md);
}

.menu-item {
    padding: var(--space-sm) 0;
    border-bottom: 1px dashed var(--clr-border);
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-sm);
}

.menu-item__name {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: var(--fs-sm);
}

.menu-item__price {
    font-family: var(--ff-body);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    white-space: nowrap;
    font-size: var(--fs-sm);
}

.menu-item__desc {
    font-size: var(--fs-xs);
    color: var(--clr-text-light);
    font-style: italic;
    margin-top: 2px;
}

/* ---------- MENUS (formules) GRID ---------- */
.menus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
}

.menu-card {
    background: var(--clr-bg);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition);
    border: 1px solid var(--clr-border);
    flex: 0 1 320px;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.menu-card--featured {
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-md);
    flex: 0 1 560px;
}

.menu-card--featured .menu-card__badge {
    background: var(--clr-primary);
}

.menu-card__badge {
    display: inline-block;
    padding: 0.25em 0.75em;
    border-radius: var(--radius-sm);
    background: var(--clr-accent);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.menu-card__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    color: var(--clr-text);
    margin-bottom: var(--space-xs);
}

.menu-card__price {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    margin-bottom: var(--space-xs);
}

.menu-card__detail {
    font-size: var(--fs-xs);
    color: var(--clr-text-light);
    margin-bottom: var(--space-sm);
}

.menu-card__list {
    list-style: none;
}

.menu-card__list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.4em;
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    line-height: 1.5;
}

.menu-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-weight: bold;
}

/* ---------- PARALLAX DIVIDER ---------- */
.parallax-divider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.parallax-divider img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: -10%;
    left: 0;
}

/* ---------- BOISSONS BANNER ---------- */
.boissons-banner {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
    text-align: center;
}

.boissons-banner__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-md);
    font-weight: var(--fw-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- GALERIE ---------- */
.galerie {
    padding: var(--space-xl) 0;
    background: var(--clr-bg);
}

.galerie__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-md);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.galerie__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.galerie__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.galerie__item:hover img {
    transform: scale(1.05);
}

/* ---------- FOOTER ---------- */
.footer__top {
    padding: var(--space-xl) 0 var(--space-lg);
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, #3A0A12 100%);
    color: #fff;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: var(--space-lg);
}

.footer__logo {
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: var(--fw-bold);
    font-style: italic;
    display: block;
    margin-bottom: var(--space-sm);
}

.footer__logo-img {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.footer__tagline {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer__nav h3,
.footer__info h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.footer__nav a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer__nav a:hover {
    color: #fff;
}

.footer__info address p {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer__info address svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--clr-accent-light);
}

.footer__info address a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__info address a:hover {
    color: #fff;
}

.footer__bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-sm) 0;
    text-align: center;
}

.footer__bottom p {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__bottom a:hover {
    color: #fff;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--clr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
}

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .atouts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-card {
        flex: 0 1 calc(50% - var(--space-md));
    }

    .menu-card--featured {
        flex: 0 1 100%;
        max-width: 560px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 64px;
    }

    /* Mobile menu */
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--clr-primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        transition: right var(--transition);
        z-index: 1000;
    }

    .navbar__menu.open {
        right: 0;
    }

    .navbar__menu .navbar__link {
        color: #fff !important;
        font-size: var(--fs-md);
    }

    .navbar__menu .navbar__link::after {
        background: #fff !important;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .menu-card {
        flex: 0 1 100%;
    }

    .menu-card--featured {
        flex: 0 1 100%;
    }

    .galerie__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__info address p {
        justify-content: center;
    }

    .parallax-divider {
        height: 260px;
    }

    .carte-intro__nav {
        gap: var(--space-sm);
    }

    .carte-nav__item {
        min-width: 100px;
        padding: var(--space-sm);
        font-size: var(--fs-xs);
    }

    .atouts__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .atouts__grid {
        grid-template-columns: 1fr;
    }

    .galerie__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carte-intro__nav {
        flex-direction: column;
        align-items: center;
    }

    .carte-nav__item {
        width: 100%;
        max-width: 200px;
        flex-direction: row;
        justify-content: center;
    }
}

/* ---------- MENTIONS LEGALES PAGE ---------- */
.legal-page {
    padding-top: calc(var(--navbar-height) + var(--space-lg));
    padding-bottom: var(--space-xl);
    min-height: 100vh;
}

.legal-page h1 {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    color: var(--clr-primary);
    margin-bottom: var(--space-md);
}

.legal-page h2 {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    color: var(--clr-text);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-page h3 {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.legal-page p,
.legal-page li {
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

.legal-page a {
    color: var(--clr-primary);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--clr-primary-dark);
}

.legal-page ul {
    padding-left: 1.5em;
    list-style: disc;
}

/* ---------- MOBILE NAV OVERLAY ---------- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ---------- PRINT ---------- */
@media print {
    .navbar, .hero, .atouts, .carte-intro, .boissons-banner,
    .galerie, .parallax-divider, .back-to-top, .footer {
        display: none !important;
    }

    .menu-section {
        break-inside: avoid;
        padding: 1rem 0;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
