@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Great Vibes';
    src: url('fonts/GreatVibes-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Baron Neue';
    src: url('fonts/Baron\ Neue\ Black.otf') format('opentype');
    font-weight: 900;
}

@font-face {
    font-family: 'Baron Neue';
    src: url('fonts/Baron\ Neue\ Bold.otf') format('opentype');
    font-weight: bold;
}

@font-face {

    font-family: 'Bebas Neue';
    src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
}

body {
    font-family: 'Georgia', serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loader overlay */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.45s ease;
}

.loader-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    color: #fff;
    position: relative;
    z-index: 1;
    font-family: 'Baron Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.08;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    animation: loaderFadeIn 0.45s ease 0.05s forwards;
}

.loader-logo .orange-o {
    text-transform: none;
}

.loader-word {
    display: block;
    font-size: 38px;
    opacity: 0;
}

.loader-word:first-child {
    animation: loaderSlideLeft 0.6s ease-out 0.05s forwards;
}

.loader-word:nth-child(2) {
    animation: loaderSlideRight 0.6s ease-out 0.12s forwards;
}

.loader-o {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0 4px;
    border: 5px solid #ff751f;
    border-left-color: transparent;
    border-radius: 50%;
    animation: spin 1.8s ease-in-out infinite;
    animation-delay: 0.05s; /* sync with text fade-in */
    vertical-align: middle;
}

.loader-o::before {
    content: '';
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes loaderSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes loaderSlideRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

header {
    color: #fff;
    padding: 14px 0;
    min-height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    box-shadow: none;
}

header.active {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.35);
}

/* For pages sans hero full-screen (e.g. reservations) ensure header is visible */
body.has-page-hero header {
    background: rgba(0, 0, 0, 0.68);
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

body.has-page-hero header.active {
    background: rgba(0, 0, 0, 0.9);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    animation: fadeInLeft 0.8s ease;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    padding-bottom: 2px;
    line-height: 1.1;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #daa520;
    transition: width 0.4s ease;
}

nav a:hover {
    color: #fff;
}

nav a:hover::before {
    width: 100%;
}

/* Bouton Reservation avec rectangle */
nav a.nav-cta {
    border: 2px solid #daa520;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

nav a.nav-cta::before {
    display: none;
}

nav a.nav-cta:hover {
    background: #daa520;
    color: #000;
}

nav a.active {
    color: #fff;
}

nav a.active::before {
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    background: rgba(0,0,0,0.35);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Assure la visibilité du hamburger sur les pages secondaires avec page-hero */
@media (max-width: 1200px) {
    body.has-page-hero .nav-toggle {
        display: inline-flex !important;
        border-color: rgba(255,255,255,0.6);
        background: rgba(0,0,0,0.35);
        z-index: 120;
    }

    body.has-page-hero .nav-toggle span {
        background: #fff;
        height: 3px;
    }
}

@media (max-width: 768px) {
    /* Renforce la visibilité du header et du hamburger sur mobile pour les pages secondaires */
    body.has-page-hero header {
        background: rgba(0,0,0,0.82);
        box-shadow: 0 4px 14px rgba(0,0,0,0.45);
    }

    body.has-page-hero .nav-toggle {
        width: 52px;
        height: 52px;
        padding: 12px;
        border: 1.5px solid rgba(255,255,255,0.65);
        box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    }

    body.has-page-hero .nav-toggle span {
        height: 3px;
    }
}

.nav-toggle:hover {
    background: rgba(218,165,32,0.25);
    border-color: rgba(218,165,32,0.65);
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 95;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-drawer {
    z-index: 110;
}

@media (max-width: 1024px) {
    header .container {
        gap: 14px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-drawer {
        position: fixed;
        inset: 0 auto 0 0;
        width: 78vw;
        max-width: 360px;
        height: 100vh;
        background: #0f0b07;
        padding: 110px 28px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        transform: translateX(-110%);
        transition: transform 0.35s ease;
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .nav-drawer a {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .nav-drawer a.nav-cta {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
    }

    body.drawer-open .nav-drawer {
        transform: translateX(0);
    }

    body.drawer-open .drawer-backdrop {
        opacity: 1;
        visibility: visible;
    }
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/hero1.svg') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease 0.2s both;
    will-change: opacity, transform;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

body:not(.welcome-revealed) .hero-content {
    opacity: 0;
    transform: translateY(24px);
    animation: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

body.welcome-revealed .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/parallax2.svg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 220px 0 200px;
    min-height: 100vh;
    margin-top: 0;
    position: relative;
    display: flex;
    align-items: center;
    background-position: center calc(50% + var(--parallax-offset, 0px));
}

.parallax-hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-hero h1 {
    font-family: 'Baron Neue', sans-serif;
    font-size: 64px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 12px 22px;
    border: 2px solid #daa520;
    color: #fff;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.25);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-scroll:hover {
    background: #daa520;
    color: #000;
    transform: translateY(-2px);
}

.hero-content h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 98px;
    margin-bottom:-120px;
    letter-spacing: 2px;
    font-weight: normal;
    text-transform: none;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Baron Neue', sans-serif;
    font-size: 88px;
    margin-bottom: 0px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.royal {
    color: #fff;
}

.tandoori {
    color: #fff;
}

.orange-o {
    color: #ff751f;
}

.cuisine-subtitle {
    font-family: 'Bebas Neue', sans-serif;
}

.cuisine-subtitle .orange-o {
    font-weight: normal;
}

@media (max-width: 1024px) {
    .hero-content {
        gap: 14px;
        padding: 0 28px;
    }

    .hero-content h2 {
        font-size: 76px;
        margin-bottom: -70px;
    }

    .hero-content h1 {
        font-size: 68px;
        letter-spacing: 1px;
        line-height: 0.95;
    }

    .hero .cuisine-subtitle {
        font-size: 22px !important;
        letter-spacing: 1.4px;
        margin-top: -10px !important;
        margin-bottom: 14px !important;
    }

    .hero .cta-button {
        margin-top: 40px;
    }
}

.ornament {
    font-size: 24px;
    margin: 20px 0;
    color: #daa520;
}

.cta-button {
    background: #8B4513;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #daa520;
    transition: all 0.3s;
    font-family: 'Bebas Neue', sans-serif;
}

.hero .cta-button {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 60px;
    white-space: nowrap;
}

.cta-button:hover {
    background: #daa520;
    color: #8B4513;
}

section {
    padding: 80px 0;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center calc(50% + var(--parallax-offset, 0px));
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.parallax-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    will-change: opacity, transform;
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.parallax-script {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 72px;
    margin-bottom: -50px;
}

.parallax-title {
    display: block;
    font-family: 'Baron Neue', sans-serif;
    font-size: 64px;
    font-weight: 900;
    text-transform: none;
    letter-spacing: 5px;
}

section h2 {
    text-align: center;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #8B4513;
}

section h3 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: normal;
    letter-spacing: 2px;
}

.story-section {
    background: #f9f7f4;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.story-image {
    background: url('images/img1.svg') center/cover no-repeat;
    height: 350px;
    border-radius: 0px;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #8B4513;
}

.location-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.location-map {
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 820px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .location-map {
        height: 320px;
        order: 2;
    }

    .location-info {
        order: 1;
        gap: 18px;
    }

    /* Parallax moins zoomé et sans fixed sur mobile */
    .parallax-section,
    .menu-divider,
    .page-hero {
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
        background-color: #000;
        --parallax-offset: 0px;
    }

    /* Réservation : éviter que le texte colle à droite sur mobile */
    .reservation-section,
    .reservation-location .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .reservation-text {
        text-align: left;
        padding-right: 12px;
    }

    .reservation-location .location-header {
        padding: 0 10px;
    }

    .location-info-dark {
        padding: 22px 20px;
    }
}

.reservation-location {
    background: radial-gradient(120% 120% at 20% 20%, rgba(218,165,32,0.08) 0%, rgba(15,11,7,0.35) 45%, rgba(15,11,7,0.95) 75%), #0f0b07;
    color: #f4ede4;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reservation-location .location-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.reservation-location .location-header h2 {
    font-size: 40px;
    letter-spacing: 3px;
    color: #d8b26a;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.reservation-location .location-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d8b26a, transparent);
}

.reservation-location .location-lede {
    color: #e8dfd1;
    margin-top: 12px;
    line-height: 1.6;
}

.location-content-dark {
    align-items: center;
    gap: 40px;
    grid-template-columns: 1.35fr 1fr;
}

.location-content-dark .location-map {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(216, 178, 106, 0.22);
    background: #15100c;
    border-radius: 6px;
    overflow: hidden;
}

.location-info-dark {
    background: rgba(21, 16, 12, 0.8);
    padding: 28px 30px;
    border: 1px solid rgba(216, 178, 106, 0.15);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    border-radius: 4px;
}

/* Mise en valeur bloc localisation (page reservations) */
.location-info-dark .location-item {
    position: relative;
    padding: 12px 0 12px 12px;
    border-bottom: 1px solid rgba(216, 178, 106, 0.15);
}

.location-info-dark .location-item:last-child {
    border-bottom: none;
}

.location-info-dark .location-item h4 {
    margin-bottom: 6px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.location-info-dark .location-item h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #daa520;
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.18);
}

.location-info-dark .location-item p {
    margin: 0;
    line-height: 1.6;
}

.location-info-dark .location-item h4 {
    color: #d8b26a;
}

.location-info-dark .location-item p {
    color: #f4ede4;
}

.reservation-location .location-item + .location-item {
    border-top: 1px solid rgba(216, 178, 106, 0.12);
    padding-top: 14px;
    margin-top: 14px;
}

@media (max-width: 900px) {
    .location-content-dark {
        grid-template-columns: 1fr;
    }

    .reservation-location::after {
        display: none;
    }

    .reservation-location .location-header h2 {
        font-size: 32px;
    }
}

.dishes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.dish-card {
    background: #f9f7f4;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-image {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.dish-info {
    padding: 20px;
    text-align: center;
}

.dish-info h4 {
    margin-bottom: 10px;
    color: #8B4513;
}

.menu-section {
    background: #f9f7f4;
    text-align: center;
}

.menu-section p {
    margin: 20px auto;
    max-width: 600px;
    color: #555;
    line-height: 1.8;
}

/* Menu page layout */
.menu-page {
    background: #f9f7f4;
    padding: 90px 0;
}

.menu-lede {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.menu-lede h2 {
    color: #8B4513;
}

.menu-lede h3 {
    font-size: 44px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.menu-lede p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.menu-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 22px 22px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    color: #8B4513;
}

.menu-tag {
    font-size: 13px;
    color: #8B4513;
    background: rgba(218, 165, 32, 0.12);
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 1px dotted #e4d8c8;
}

.menu-price {
    font-weight: bold;
    color: #8B4513;
    font-size: 14px;
    white-space: nowrap;
}

.menu-cta-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 50px;
}

.cta-button.alt {
    background: transparent;
    color: #8B4513;
}

.cta-button.alt:hover {
    background: #daa520;
    color: #000;
}

/* Menu parallax dividers */
.menu-divider {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-attachment: fixed;
    background-position: center calc(50% + var(--parallax-offset, 0px));
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.menu-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.menu-divider h2 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.menu-divider-script {
    font-family: 'Great Vibes', cursive;
    font-size: 52px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: none;
    color: #fff;
    line-height: 1.05;
    margin-bottom: -4px;
}

.menu-divider-title {
    font-family: 'Baron Neue', sans-serif;
    font-size: 44px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

/* Menu category blocks */
.menu-category {
    background: #f9f7f4;
    padding: 70px 0 60px;
}

.menu-category h3 {
    font-size: 40px;
    margin-bottom: 12px;
}

.menu-category .menu-lede p {
    max-width: 760px;
    margin: 0 auto;
}

.menu-subtitle {
    margin: 18px 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #8B4513;
    letter-spacing: 0.5px;
}

.menu-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px 32px;
    align-items: start;
}

.menu-column-block .menu-list {
    margin-top: 12px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px 24px;
    margin-top: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #d8cbb8;
    font-size: 15px;
    color: #333;
}

@media (max-width: 820px) {
    /* More breathing room so prices don't collide with scroll UI on mobile */
    .menu-category .container,
    .menu-section .container {
        padding-right: 26px;
        padding-left: 26px;
    }

    .menu-list,
    .menu-items {
        gap: 12px;
    }

    .menu-item,
    .menu-items li {
        padding-right: 14px;
    }

    .menu-price {
        font-size: 15px;
    }
}

.menu-item:last-child {
    border-bottom: 1px dashed #d8cbb8;
}

.menu-item span:first-child {
    flex: 1;
}

.menu-item small {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #555;
    line-height: 1.35;
}

.menu-break {
    height: 18px;
}

.menu-signature-label {
    grid-column: 1 / -1;
    text-align: center;
    font-family: 'Great Vibes', cursive;
    letter-spacing: 1px;
    text-transform: none;
    font-size: 26px;
    color: #8B4513;
    margin: -2px 0 14px;
    position: relative;
}

.menu-signature-label::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 110px;
    height: 1px;
    background: #8B4513;
    opacity: 0.65;
}

/* Menu popup */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 120;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: #fdf7ee;
    border: 1px solid #e6d8c4;
    border-radius: 10px;
    padding: 26px 26px 22px;
    max-width: 460px;
    width: 92%;
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
    position: relative;
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}

.modal-overlay.show .modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #8B4513;
    cursor: pointer;
    line-height: 1;
}

.modal-eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    color: #8B4513;
    margin-bottom: 4px;
}

.modal h3 {
    font-family: 'Baron Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #4a2f12;
}

.modal-text {
    font-size: 15px;
    color: #4a3a2a;
    line-height: 1.5;
    margin-bottom: 16px;
}

.modal-note {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    font-style: italic;
    color: #8a7a68;
}

.modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-actions .cta-button {
    padding: 12px 20px;
    font-size: 16px;
}

.ghost-button {
    border: 2px solid #8B4513;
    background: transparent;
    color: #8B4513;
    padding: 10px 18px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ghost-button:hover {
    background: #8B4513;
    color: #fff;
}

.menu-price {
    font-weight: bold;
    color: #8B4513;
    font-size: 14px;
    white-space: nowrap;
}

.menu-badge {
    display: inline-block;
    margin-right: 8px;
    padding: 3px 8px;
    background: #d29b47;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    white-space: nowrap;
}

.menu-badge.signature {
    background: #8B4513;
}

.menu-item.menu-highlight {
    position: relative;
    border: 1px solid #d29b47;
    border-radius: 4px;
    padding: 16px 18px;
    margin-top: 12px;
    background: #f9f7f4;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.menu-item.menu-highlight .menu-badge {
    position: absolute;
    top: -12px;
    left: -1px;
    margin-right: 0;
    border-radius: 0 0 4px 0;
    padding: 5px 12px 4px;
}

/* Thali menu card */
.thali-card {
    background: #f9f7f4;
    border: 1px solid #d8cbb8;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    margin-top: 28px;
}

.thali-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.thali-header h3 {
    font-family: 'Baron Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: none;
    margin: 0;
    flex: 1;
    text-align: center;
}

.thali-price {
    display: inline-block;
    background: #6b4a14;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: bold;
    letter-spacing: 1.6px;
    font-size: 17px;
    font-family: 'Bebas Neue', sans-serif;
    border: 2px solid #d29b47;
}

.thali-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px 24px;
    margin-top: 14px;
}

.thali-block h4 {
    font-family: 'Baron Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #4a2f12;
}

.thali-block {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 6px;
    padding: 14px 16px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.thali-items {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: grid;
    gap: 10px;
}

.thali-item {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.thali-item small {
    display: block;
    margin-top: 2px;
    color: #5a5a5a;
    font-size: 13px;
}

.thali-note {
    margin-top: 14px;
    font-size: 13px;
    color: #5a5a5a;
}

.thali-meta {
    font-size: 12.5px;
    color: #8B4513;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.thali-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-right: 8px;
    color: #fff;
    background: #d29b47;
}

.thali-tag.veg {
    background: #4b9b3d;
}

.thali-tag.non-veg {
    background: #b6372e;
}

@media (max-width: 768px) {
    .thali-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .thali-price {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .menu-divider {
        background-attachment: scroll;
    }

    .menu-divider h2 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .menu-category h3 {
        font-size: 32px;
    }
}

.reservation-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.reservation-image {
    background: url('images/table.svg') center/cover no-repeat;
    height: 350px;
    border-radius: 0px;
}

.reservation-form-section,
.contact-form-section {
    background: #f8f1e6;
    padding: 80px 0 90px;
    color: #4a2f12;
}

.reservation-form-header {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.reservation-form-header h2 {
    font-size: 42px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #4a2f12;
}

.reservation-lede {
    color: #5a4632;
    font-size: 16px;
    line-height: 1.6;
}

.reservation-form {
    background: #fdf7ee;
    border: 1px solid #e6d8c4;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #4a3a2a;
    letter-spacing: 0.3px;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: #fff;
    border: 1px solid #caa76f;
    border-radius: 4px;
    padding: 14px 12px;
    color: #3b2a1c;
    font-size: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8a8276;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.15);
    background: #fffdf8;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field.full-row {
    grid-column: 1 / -1;
}

    /* Ajustements liste vins : pas de gap ni multi-colonnes pour éviter les trous visuels */
    .menu-category#vins .menu-list {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 12px;
    }

    .menu-category#vins .menu-item {
        padding: 10px 0;
    }

.form-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #8B4513 50%), linear-gradient(135deg, #8B4513 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% + 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.consent-field {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0 16px;
    color: #4a3a2a;
    font-size: 14px;
    line-height: 1.5;
}

.consent-field input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #8B4513;
}

.reservation-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reservation-submit {
    align-self: flex-start;
    border: 2px solid #8B4513;
    background: transparent;
    color: #8B4513;
    padding: 12px 18px;
    border-radius: 6px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.reservation-submit:hover {
    background: #8B4513;
    color: #fff;
    box-shadow: 0 12px 28px rgba(139, 69, 19, 0.2);
}

.reservation-submit:active {
    transform: translateY(1px);
}

.reservation-note {
    color: #6b5a47;
    font-size: 13px;
    margin: 0;
}

.form-toast {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #0f0b07;
    color: #f4ede4;
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    border: 1px solid rgba(216,178,106,0.35);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1600;
    pointer-events: none;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .reservation-form {
        padding: 24px;
    }

    .reservation-form-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    /* Centre les titres/lede de la page réservation sur mobile */
    .page-hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .page-hero h1,
    .page-hero p {
        text-align: center;
    }

    .reservation-form-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .reservation-lede {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Reviews */
.reviews-section {
    background: #f9f7f4;
    padding: 80px 0;
}

.reviews-section h2 {
    color: #8B4513;
}

.reviews-section h3 {
    font-size: 40px;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #333;
}

.review-stars {
    color: #daa520;
    letter-spacing: 1px;
    font-size: 14px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

.review-date {
    color: #888;
    font-size: 13px;
}

.contact-section {
    background: #0f0b07;
    color: #f4ede4;
    padding: 90px 0;
}

.contact-section h2 {
    color: #daa520;
    text-align: center;
    letter-spacing: 3px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 45px;
}

.contact-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #fdfbf7;
}

.contact-card p {
    margin: 0 0 14px;
    font-size: 16px;
    color: #e3d8c7;
    line-height: 1.7;
}

.contact-card-social {
    text-align: center;
}

.contact-socials {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-card-social .contact-socials {
    justify-content: center;
}

/* Liens sociaux / bas de page contact */
.social-links {
    display: inline-flex;
    gap: 14px;
    margin-top: 12px;
    align-items: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(218, 165, 32, 0.35);
    border-radius: 24px;
    color: #f4ede4;
    text-decoration: none;
    letter-spacing: 1.2px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    transition: all 0.25s ease;
    background: rgba(255,255,255,0.02);
}

.social-links a:hover {
    color: #0f0b07;
    background: #daa520;
    border-color: #daa520;
    box-shadow: 0 10px 24px rgba(218, 165, 32, 0.25);
    transform: translateY(-1px);
}

.contact-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1f160f;
    color: #f4ede4;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.contact-socials a svg {
    width: 18px;
    height: 18px;
}

.contact-socials a:hover {
    background: #daa520;
    color: #0f0b07;
    transform: translateY(-2px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

footer {
    background: #4a2511;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 12px;
}

/* Footer wave + arrow */
.footer-wave {
    position: relative;
    height: 80px;
    background: #4a2511; /* align with footer base color */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.footer-wave::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background:
        radial-gradient(120% 130% at 50% 100%, #4a2511 0 65%, transparent 70%)
        , #4a2511;
    /* Broad hill, scaled down */
}

.footer-wave::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 135px;
    background:
        radial-gradient(65% 120% at 52% 92%, #4a2511 0 55%, transparent 62%);
    /* Sharper peak, scaled down */
}

.footer-arrow {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4a2511;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    animation: arrowBob 2.5s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-arrow.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.footer-arrow .chevron {
    position: absolute;
    width: 12px;
    height: 12px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg);
    top: 18px;
}

.footer-arrow .chevron.chevron-2 {
    top: 24px;
    opacity: 0.75;
}

.footer-arrow:hover {
    background: #daa520;
    border-color: #daa520;
    box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

.footer-arrow:hover .chevron,
.footer-arrow:hover .chevron.chevron-2 {
    border-color: #4a2511;
}

@keyframes arrowBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    nav a {
        margin-left: 15px;
        font-size: 12px;
    }

    /* Sur mobile, le fixed cause des saccades, on le désactive */
    .hero {
        background-attachment: scroll;
        padding: 140px 20px 120px;
    }

    .parallax-hero {
        background-attachment: scroll;
    }

    .hero-content {
        max-width: 360px;
        gap: 12px;
    }

    .hero-content h2 {
        font-size: 58px;
        margin-bottom: -32px;
    }

    .hero-content h1 {
        font-size: 46px;
        letter-spacing: 1px;
        line-height: 0.95;
    }

    .hero .cuisine-subtitle {
        font-size: 18px !important;
        letter-spacing: 1.1px;
        margin-top: -4px !important;
        margin-bottom: 14px !important;
    }

    .hero .cta-button {
        margin-top: 18px;
        padding: 12px 28px;
        font-size: 22px;
    }

    .story-content,
    .reservation-section {
        grid-template-columns: 1fr;
    }

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

    .scroll-indicator {
        display: none;
    }
}

/* ===== Scroll Indicator Dots ===== */
.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 80%;
    transform: translateY(-55%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scroll-indicator .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #333;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: border-color 0.4s ease;
    display: block;
}

.scroll-indicator .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
    transition: transform 0.3s ease, background 0.4s ease;
}

.scroll-indicator .dot:hover {
    border-color: #daa520;
}

.scroll-indicator .dot:hover::before {
    background: #daa520;
    transform: translate(-50%, -50%) scale(1);
}

.scroll-indicator .dot.active {
    border-color: #333;
}

.scroll-indicator .dot.active::before {
    background: #333;
    transform: translate(-50%, -50%) scale(1);
    animation: dropletFill 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Mode clair (points blancs sur fond sombre) */
.scroll-indicator.light .dot {
    border-color: #fff;
}

.scroll-indicator.light .dot::before {
    background: #fff;
}

.scroll-indicator.light .dot:hover {
    border-color: #daa520;
}

.scroll-indicator.light .dot:hover::before {
    background: #daa520;
}

.scroll-indicator.light .dot.active {
    border-color: #fff;
}

.scroll-indicator.light .dot.active::before {
    background: #fff;
}

.scroll-indicator.light .tooltip {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.scroll-indicator.light .tooltip::after {
    border-left-color: rgba(255, 255, 255, 0.9);
}

/* Animation de goutte qui tombe */
@keyframes dropletFill {
    0% {
        transform: translate(-50%, -300%) scale(0.3);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    80% {
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Effet de ripple quand la goutte atterrit */
.scroll-indicator .dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #daa520;
    animation: ripple 0.6s ease-out;
    opacity: 0;
}

@keyframes ripple {
    0% {
        width: 6px;
        height: 6px;
        opacity: 1;
    }
    100% {
        width: 24px;
        height: 24px;
        opacity: 0;
    }
}

/* Tooltip on hover */
.scroll-indicator .tooltip {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-indicator .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    border-right: none;
}

@media (max-width: 900px) {
    /* Hide dots on small screens to avoid overlap with content/prices */
    .scroll-indicator {
        display: none !important;
    }
}

.scroll-indicator .dot:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 30px;
}
