/* =========================================================
   LA TERRASSE D'ABIDJAN — STYLE PREMIUM
   ========================================================= */

:root {
    --dark: #11100e;
    --dark-soft: #191714;
    --cream: #f5f1e8;
    --white: #ffffff;
    --gold: #c8a96b;
    --text: #27231e;
    --muted: #77716a;

    --container: 1180px;
    --radius: 4px;

    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "DM Sans", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-family: var(--font-display);
    font-size: 21px;
    letter-spacing: 2px;
}

.logo small {
    margin-top: 6px;
    font-size: 8px;
    letter-spacing: 4px;
    color: var(--gold);
    text-align: center;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-menu a {
    position: relative;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    transition: 0.3s ease;
}

.desktop-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.desktop-menu a:hover {
    color: var(--white);
}

.desktop-menu a:hover::after {
    width: 100%;
}

.nav-button {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 20px;
    font-size: 12px;
    transition: 0.3s ease;
}

.nav-button:hover {
    background: var(--white);
    color: var(--dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;

    background:
        url("../images/hero.jpg")
        center / cover no-repeat;

    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 9, 7, 0.88) 0%,
            rgba(10, 9, 7, 0.64) 48%,
            rgba(10, 9, 7, 0.32) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    max-width: 820px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 500;
    line-height: 1.03;
    max-width: 850px;
    letter-spacing: -2px;
}

.hero h1 span,
.intro-content h2 span,
.cta h2 span,
.contact h2 span {
    color: var(--gold);
}

.hero-text {
    max-width: 580px;
    margin: 30px 0 38px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 27px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: #d8bc83;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: white;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.65;
}

.scroll-indicator div {
    width: 1px;
    height: 45px;
    background: linear-gradient(white, transparent);
}


/* =========================================================
   INTRO
   ========================================================= */

.intro {
    padding: 130px 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image::before {
    content: "";

    position: absolute;
    left: -20px;
    top: 20px;

    width: 100%;
    height: 100%;

    border: 1px solid var(--gold);
    z-index: 0;
}

.intro-image img {
    position: relative;
    z-index: 1;

    height: 580px;
    object-fit: cover;
}

.intro-content {
    max-width: 500px;
}

.section-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.intro-content h2,
.section-heading h2,
.cta h2,
.contact h2 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.12;
}

.intro-content h2 {
    font-size: clamp(42px, 5vw, 62px);
    margin-bottom: 30px;
}

.intro-content p {
    color: #66605a;
    font-size: 15px;
    margin-bottom: 18px;
}

.text-link {
    display: inline-block;
    margin-top: 18px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;

    border-bottom: 1px solid var(--gold);
    padding-bottom: 7px;

    transition: 0.3s ease;
}

.text-link:hover {
    color: var(--gold);
}


/* =========================================================
   MENU
   ========================================================= */

.menu-section {
    padding: 125px 0;
    background: #eee9df;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: clamp(42px, 5vw, 60px);
}

.section-heading > p {
    max-width: 370px;
    color: var(--muted);
    font-size: 14px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dish-card {
    background: var(--white);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30, 25, 18, 0.12);
}

.dish-image {
    height: 340px;
    overflow: hidden;
}

.dish-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.06);
}

.dish-info {
    min-height: 130px;
    padding: 23px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.dish-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 7px;
}

.dish-info p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.dish-info strong {
    white-space: nowrap;
    color: var(--gold);
    font-size: 13px;
}

.center-button {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

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

.btn-dark:hover {
    background: var(--gold);
    color: var(--dark);
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
    min-height: 620px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;

    background:
        url("../images/hero.jpg")
        center / cover no-repeat;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 12, 9, 0.74);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.cta h2 {
    font-size: clamp(42px, 6vw, 70px);
    margin-bottom: 22px;
}

.cta p:not(.section-label) {
    max-width: 500px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact h2 {
    font-size: clamp(45px, 5vw, 65px);
    margin-bottom: 28px;
}

.contact-grid > div:first-child > p:last-child {
    color: var(--muted);
    font-size: 15px;
}

.contact-details {
    display: grid;
    gap: 35px;
    padding-top: 20px;
}

.contact-details small {
    display: block;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.contact-details p {
    font-family: var(--font-display);
    font-size: 22px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 35px 0;
    background: var(--dark);
    color: white;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp 1s ease both;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .desktop-menu,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .intro-content {
        max-width: 700px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(100% - 32px, 1180px);
    }

    .nav {
        min-height: 75px;
    }

    .logo span {
        font-size: 17px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 14px;
        margin: 24px 0 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .intro,
    .menu-section,
    .contact {
        padding: 80px 0;
    }

    .intro-image img {
        height: 400px;
    }

    .intro-image::before {
        left: -10px;
        top: 10px;
    }

    .intro-content h2,
    .section-heading h2,
    .contact h2 {
        font-size: 43px;
    }

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

    .dish-image {
        height: 300px;
    }

    .cta {
        min-height: 550px;
    }

    .cta h2 {
        font-size: 43px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   MENU MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .desktop-menu {
        position: fixed;
        top: 0;
        right: -100%;

        width: 82%;
        max-width: 380px;
        height: 100vh;

        padding: 120px 40px 40px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;

        background: var(--dark);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);

        transition: right 0.4s ease;

        z-index: 100;
    }

    .desktop-menu.mobile-open {
        right: 0;
    }

    .desktop-menu a {
        font-family: var(--font-display);
        font-size: 25px;
        color: white;
    }

    .desktop-menu a::after {
        display: none;
    }

    .desktop-menu a:hover {
        color: var(--gold);
    }

    .menu-toggle {
        position: relative;
        z-index: 110;
    }
}


/* =========================================================
   GALERIE
   ========================================================= */

.gallery {
    padding: 125px 0;
    background: var(--dark);
    color: white;
}

.gallery-heading {
    margin-bottom: 55px;
}

.gallery-heading h2 {
    font-size: clamp(42px, 5vw, 60px);
}

.gallery-heading h2 span {
    color: var(--gold);
}

.gallery-heading > p {
    color: rgba(255, 255, 255, 0.55);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #222;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}


/* GALERIE MOBILE */

@media (max-width: 600px) {

    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 230px 180px 180px;
        gap: 8px;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-wide {
        grid-column: span 2;
    }
}


/* =========================================================
   RÉSERVATION
   ========================================================= */

.reservation {
    padding: 130px 0;
    background: var(--cream);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.reservation-info {
    max-width: 500px;
}

.reservation-info h2 {
    font-family: var(--font-display);
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 28px;
}

.reservation-info h2 span {
    color: var(--gold);
}

.reservation-description {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 45px;
}

.reservation-details {
    display: grid;
    gap: 25px;
}

.reservation-details > div {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.reservation-details > div > span {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 18px;
}

.reservation-details strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.reservation-details p {
    color: var(--muted);
    font-size: 11px;
}


/* FORMULAIRE */

.reservation-card {
    background: white;
    padding: 45px;
    box-shadow: 0 25px 70px rgba(30, 25, 18, 0.10);
}

.reservation-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;

    padding-bottom: 25px;
    margin-bottom: 30px;

    border-bottom: 1px solid #e5dfd5;
}

.reservation-card-header p {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.reservation-card-header span {
    font-family: var(--font-display);
    font-size: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-group label span {
    color: var(--muted);
    text-transform: none;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd7cd;
    background: #faf8f4;

    padding: 14px 15px;

    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text);

    outline: none;

    transition: border 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.reservation-button {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.form-note {
    text-align: center;
    color: var(--muted);
    font-size: 10px;
    margin-top: 13px;
}


/* RÉSERVATION MOBILE */

@media (max-width: 900px) {

    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .reservation-info {
        max-width: 700px;
    }
}

@media (max-width: 600px) {

    .reservation {
        padding: 80px 0;
    }

    .reservation-info h2 {
        font-size: 43px;
    }

    .reservation-card {
        padding: 25px 20px;
    }

    .reservation-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* =========================================================
   WHATSAPP FLOTTANT
   ========================================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 18px 12px 12px;

    background: #25D366;
    color: white;

    text-decoration: none;

    border-radius: 50px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);

    z-index: 200;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;
    color: #25D366;

    font-size: 11px;
    font-weight: 800;
}

.whatsapp-text {
    font-size: 12px;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 600px) {

    .whatsapp-float {
        right: 18px;
        bottom: 18px;

        width: 54px;
        height: 54px;

        padding: 0;

        justify-content: center;
    }

    .whatsapp-icon {
        width: 42px;
        height: 42px;
    }

    .whatsapp-text {
        display: none;
    }
}


/* =========================================================
   TÉMOIGNAGES
   ========================================================= */

.testimonials {
    padding: 125px 0;
    background: #f5f1e9;
}

.testimonials-heading {
    margin-bottom: 55px;
}

.testimonials-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(45px, 5vw, 65px);
    font-weight: 500;
    line-height: 1.08;
}

.testimonials-heading h2 span {
    color: var(--gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 38px;
    background: white;
    border: 1px solid #e8e1d6;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(30, 25, 18, 0.10);
}

.testimonial-card.featured {
    background: var(--dark);
    color: white;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 35px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-initial {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold);
    color: var(--dark);

    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    font-size: 12px;
}

.testimonial-author span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255, 255, 255, 0.55);
}


/* MOBILE */

@media (max-width: 900px) {

    .testimonials {
        padding: 85px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        padding: 30px;
    }
}
/* =========================================================
   ANIMATIONS AU SCROLL
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   NOUVEAU DESIGN DU MENU
   ========================================================= */

.menu-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;

    margin: 45px 0 50px;

    border-bottom: 1px solid #ddd6ca;
    padding-bottom: 18px;
}

.menu-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #777;

    cursor: pointer;

    transition: color 0.3s ease;
}

.menu-category:hover,
.menu-category.active {
    color: var(--gold);
}

.menu-category.active {
    position: relative;
}

.menu-category.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -19px;

    height: 2px;

    background: var(--gold);
}


/* IMAGE DES PLATS */

.dish-image {
    position: relative;
    overflow: hidden;
}

.dish-image img {
    display: block;

    width: 100%;
    height: 360px;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.04);
}


/* BADGE DU CHEF */

.dish-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 8px 12px;

    background: var(--gold);
    color: var(--dark);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* NUMÉRO DU PLAT */

.dish-number {
    margin: 0 0 8px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* INFORMATIONS DU PLAT */

.dish-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;

    padding: 24px 0;
}

.dish-info h3 {
    margin: 0 0 8px;

    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
}

.dish-info p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}

.dish-info strong {
    flex-shrink: 0;

    color: var(--gold);

    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}


/* PLAT SIGNATURE */

.featured-dish {
    position: relative;
}


/* NOTE SOUS LE MENU */

.menu-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin: 20px auto 45px;

    max-width: 650px;
}

.menu-note span {
    width: 35px;
    height: 1px;

    background: var(--gold);
}

.menu-note p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}


/* MOBILE */

@media (max-width: 700px) {

    .menu-categories {
        justify-content: flex-start;
        gap: 22px;

        overflow-x: auto;

        padding-bottom: 16px;

        margin-top: 35px;
        margin-bottom: 35px;

        scrollbar-width: none;
    }

    .menu-categories::-webkit-scrollbar {
        display: none;
    }

    .menu-category {
        flex-shrink: 0;
        font-size: 9px;
    }

    .menu-category.active::after {
        bottom: -17px;
    }

    .dish-image img {
        height: 300px;
    }

    .dish-info {
        gap: 12px;
    }

    .dish-info h3 {
        font-size: 21px;
    }

    .dish-info p {
        font-size: 12px;
    }

    .dish-info strong {
        font-size: 12px;
    }

    .menu-note {
        gap: 10px;
    }
}

/* =========================================================
   CONTACT PREMIUM
   ========================================================= */

.contact {
    padding: 120px 0;
    background: var(--dark);
    color: white;
}

.contact-intro {
    max-width: 650px;
    margin-bottom: 65px;
}

.contact-intro h2 {
    margin: 15px 0 25px;

    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.05;
}

.contact-intro h2 span {
    color: var(--gold);
}

.contact-description {
    max-width: 560px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;
    line-height: 1.8;
}


/* GRILLE */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: stretch;
}


/* INFORMATIONS */

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-number {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-item small {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;
}

.contact-item a {
    color: white;
    text-decoration: none;

    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}


/* BOUTONS */

.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    margin-top: 35px;
}

.contact-actions .btn {
    text-align: center;
}

.contact-reserve {
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}


/* BLOC VISUEL */

.contact-visual {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(20, 18, 15, 0.85),
            rgba(20, 18, 15, 0.35)
        ),
        url("../images/histoire.jpg") center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-visual-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(196, 161, 94, 0.15),
            transparent 55%
        );
}

.contact-visual-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.location-pin {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin: 0 auto 30px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    color: var(--gold);

    font-size: 14px;
}

.contact-visual-content p {
    margin: 0 0 8px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.contact-visual-content h3 {
    margin: 0;

    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 500;
}

.contact-visual-content > span:last-child {
    display: block;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 12px;
}

.contact-line {
    width: 45px;
    height: 1px;

    margin: 22px auto;

    background: var(--gold);
}

.contact-open {
    position: absolute;

    right: 20px;
    bottom: 20px;

    padding: 9px 13px;

    background: var(--gold);
    color: var(--dark);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* MOBILE */

@media (max-width: 800px) {

    .contact {
        padding: 85px 0;
    }

    .contact-intro {
        margin-bottom: 45px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-visual {
        min-height: 380px;
    }

    .contact-visual-content h3 {
        font-size: 38px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
    }
}

/* =========================================================
   FOOTER PREMIUM
   ========================================================= */

.footer {
    background: #090909;
    color: white;
    padding: 75px 0 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
    gap: 50px;

    padding-bottom: 60px;
}


/* MARQUE */

.footer-brand .logo {
    display: inline-flex;
    flex-direction: column;

    color: white;
    text-decoration: none;
}

.footer-brand .logo span {
    font-family: var(--font-display);

    font-size: 25px;
    letter-spacing: 3px;
}

.footer-brand .logo small {
    margin-top: 5px;

    color: var(--gold);

    font-size: 8px;
    letter-spacing: 4px;
    text-align: center;
}

.footer-brand p {
    max-width: 260px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 13px;
    line-height: 1.8;
}


/* COLONNES */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    margin: 0 0 25px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-column a,
.footer-column span {
    margin-bottom: 13px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    line-height: 1.6;

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-whatsapp {
    margin-top: 10px;

    color: var(--gold) !important;

    font-weight: 600;
}


/* BAS DU FOOTER */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom span {
    margin: 0;

    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
}

.footer-bottom span {
    text-align: right;
}


/* MOBILE */

@media (max-width: 800px) {

    .footer {
        padding: 60px 0 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-bottom span {
        text-align: left;
    }
}


@media (max-width: 480px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

}



/* =========================================================
   CATÉGORIES DU MENU
   ========================================================= */

.menu-categories {
    display: flex;
    align-items: center;
    gap: 35px;

    margin-bottom: 45px;

    border-bottom: 1px solid #d8d1c5;

    overflow-x: auto;

    scrollbar-width: none;
}

.menu-categories::-webkit-scrollbar {
    display: none;
}

.menu-category {
    position: relative;

    flex-shrink: 0;

    padding: 0 0 15px;

    background: transparent;
    border: none;

    color: var(--muted);

    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    cursor: pointer;

    transition:
        color 0.3s ease;
}

.menu-category::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition:
        width 0.3s ease;
}

.menu-category:hover {
    color: var(--text);
}

.menu-category.active {
    color: var(--gold);
}

.menu-category.active::after {
    width: 100%;
}


/* =========================================================
   ANIMATION DES CARTES
   ========================================================= */

.dish-card {
    animation: menuCardAppear 0.35s ease;
}

@keyframes menuCardAppear {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   CATÉGORIES — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .menu-categories {
        gap: 28px;
        margin-bottom: 35px;
    }

    .menu-category {
        font-size: 11px;
    }

}


/* =========================================================
   LIGHTBOX GALERIE
   ========================================================= */

.gallery-item {
    cursor: pointer;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.gallery-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    color: white;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
}

.lightbox-close:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    .gallery-lightbox {
        padding: 15px;
    }

    .gallery-lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 12px;
        right: 15px;
    }
}


/* =========================================================
   GALERIE MOBILE — VERSION PROPRE
   ========================================================= */

@media (max-width: 600px) {

    .gallery-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .gallery-item,
    .gallery-large,
    .gallery-wide {
        width: 100% !important;
        height: 260px !important;
        min-height: 0 !important;
        max-height: none !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .gallery-item img,
    .gallery-large img,
    .gallery-wide img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

}