/* ═══════════════════════════════════════════════════════════
   L'ENTRE 2 TOURS — DESIGN SYSTEM
   Palette: Pierre dorée, bleu Camargue, vert nature, bois chaud
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Couleurs principales — Thème sombre bois chaud */
    --cream: #35280d;
    --cream-dark: #2D2109;
    --stone: #6B5D4F;
    --stone-light: #E8DCC8;
    --blue: #6BAACC;
    --blue-dark: #4A8DB7;
    --blue-soft: #6BAACC;
    --green: #6B9F7B;
    --green-dark: #4A7C59;
    --green-light: #6B9F7B;
    --wood: #A68B62;
    --wood-light: #C4A87A;
    --gold: #C4A265;
    --gold-light: #D4B87A;
    --dark: #1E1810;
    --dark-soft: #2A2118;
    --text: #E8DCC8;
    --text-light: #C4B89A;
    --text-muted: #8A7E62;
    --white: #FFFFFF;
    --white-alpha: rgba(53, 40, 13, 0.95);

    /* Typographie */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Tailles */
    --font-hero: clamp(3rem, 8vw, 5.5rem);
    --font-h2: clamp(2rem, 4vw, 3rem);
    --font-h3: clamp(1.25rem, 2.5vw, 1.6rem);
    --font-body: 1rem;
    --font-small: 0.875rem;

    /* Espacements */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-max: 1200px;
    --gap: 2rem;

    /* Effets */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.45);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */

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

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    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-fast);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
    padding: var(--section-padding) 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: var(--font-small);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: var(--font-h2);
    font-weight: 700;
    color: var(--stone-light);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--green);
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--stone);
}

.divider-icon {
    color: var(--green);
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(53, 40, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    z-index: 1001;
}

.logo-script {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition);
}

.logo-accent {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    transition: color var(--transition);
}

.navbar.scrolled .logo-script {
    color: var(--stone-light);
}

.navbar.scrolled .logo-accent {
    color: var(--gold);
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.6rem 1.15rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-fast);
    border-radius: 1px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--gold-light);
}

.navbar.scrolled .nav-link:hover::after,
.navbar.scrolled .nav-link.active::after {
    background: var(--gold);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--stone-light);
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
    will-change: transform;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 24, 16, 0.4) 0%,
        rgba(30, 24, 16, 0.3) 40%,
        rgba(30, 24, 16, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-subtitle-top {
    font-family: var(--font-sans);
    font-size: var(--font-small);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 1rem;
    animation: fadeUp 1s ease 0.3s both;
}

.hero-title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease 0.5s both;
}

.hero-script {
    font-family: var(--font-serif);
    font-size: var(--font-hero);
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-number {
    font-family: var(--font-serif);
    font-size: calc(var(--font-hero) * 1.1);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease 0.7s both;
}

.hero-divider .divider-line {
    background: rgba(255, 255, 255, 0.4);
    width: 50px;
}

.hero-divider .divider-icon {
    color: var(--gold-light);
    font-size: 0.9rem;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    animation: fadeUp 1s ease 0.9s both;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: var(--font-body);
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease 1.1s both;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all var(--transition);
    animation: fadeUp 1s ease 1.3s both;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--dark-soft);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeUp 1s ease 1.5s both;
}

.scroll-arrow {
    margin-top: 0.5rem;
    animation: bounce 2s ease infinite;
}

.scroll-arrow i {
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   CHEF / NOTRE HISTOIRE
   ═══════════════════════════════════════════════════════════ */

.chef-section {
    background: var(--dark-soft);
}

.chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.chef-image-wrap {
    position: relative;
}

.chef-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.chef-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 6s ease;
}

.chef-image-frame:hover img {
    transform: scale(1.03);
}

.chef-image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-light);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
}

.chef-text .section-label {
    text-align: left;
    color: var(--green-light);
}

.chef-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.chef-text .section-title span {
    color: var(--green);
}

.chef-description p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--stone-light);
    line-height: 1.8;
}

.chef-description strong {
    color: var(--green-light);
    font-weight: 700;
}

.chef-quote {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--green-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    position: relative;
}

.chef-quote i {
    color: var(--green);
    opacity: 0.3;
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.chef-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--stone-light);
    padding-left: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   PARALLAX DIVIDER
   ═══════════════════════════════════════════════════════════ */

.parallax-divider {
    position: relative;
    height: 350px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 24, 16, 0.55);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.parallax-icon {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.parallax-text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    line-height: 1.8;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════
   LA CARTE & NOS PLATS (FUSIONNÉS)
   ═══════════════════════════════════════════════════════════ */

.menu-section {
    background: var(--cream-dark);
}

.menu-intro {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-top: 1.25rem;
    line-height: 1.6;
}

/* Layout deux colonnes : carte + photos */
.carte-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.carte-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-category {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.menu-category-title {
    font-family: var(--font-serif);
    font-size: var(--font-h3);
    font-weight: 600;
    color: var(--stone-light);
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.menu-category-title i {
    color: var(--green);
    font-size: 1.1rem;
}

.menu-choix {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    margin-left: auto;
}

.menu-category-desc {
    font-size: var(--font-small);
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    padding: 0.4rem 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

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

.menu-item-name {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--stone-light);
    line-height: 1.5;
}

.menu-item-name small {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Menu Enfant */
.menu-enfant {
    background: rgba(0, 0, 0, 0.25);
    text-align: center;
}

.menu-enfant .menu-category-title {
    justify-content: center;
    position: relative;
}

.menu-enfant-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--green);
    font-weight: 700;
    margin-left: 0.5rem;
}

.menu-enfant-info {
    font-size: var(--font-small);
    color: var(--text-muted);
    margin-top: -0.5rem;
    margin-bottom: 0.75rem;
}

.menu-enfant .menu-item-name {
    font-weight: 500;
}

.menu-enfant .menu-item-name em {
    color: var(--text-muted);
    font-weight: 400;
    font-style: italic;
}

/* Colonne photos */
.carte-photos {
    position: sticky;
    top: 100px;
}

.carte-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.carte-photos-grid.cols-1 { grid-template-columns: 1fr; }
.carte-photos-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.carte-photos-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.carte-photos-grid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    cursor: pointer;
}

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

.carte-photos-grid .gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(30, 24, 16, 0.7) 0%,
        rgba(30, 24, 16, 0) 50%
    );
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    transform: translateY(10px);
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.carte-photos-legend {
    text-align: center;
    margin-top: 1rem;
    font-size: var(--font-small);
    color: var(--text-muted);
    font-style: italic;
}

.carte-photos-legend i {
    margin-right: 0.4rem;
    color: var(--green);
}

/* Note + CTA Facebook */
.menu-bottom {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.menu-note {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.menu-note i {
    color: var(--green);
    margin-right: 0.5rem;
}

.menu-facebook-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #1877F2, #0d65d9);
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.menu-facebook-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    color: var(--white);
}

.menu-facebook-cta i {
    font-size: 1.2rem;
}

/* Instagram CTA */
.menu-instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #F77737, #FCAF45);
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.menu-instagram-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
    color: var(--white);
}

.menu-instagram-cta i {
    font-size: 1.2rem;
}

/* Container des CTA sociaux */
.menu-social-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   LOCALISATION
   ═══════════════════════════════════════════════════════════ */

.location-section {
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 1.1rem;
}

.info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--stone-light);
    margin-bottom: 0.3rem;
}

.info-card p {
    font-size: var(--font-small);
    color: var(--text-light);
    line-height: 1.6;
}

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

.location-map iframe {
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */

.contact-section {
    background: var(--cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: start;
}

.contact-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.contact-card-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--stone-light);
    margin-bottom: 1rem;
}

.contact-phone {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.75rem;
    transition: all var(--transition-fast);
}

.contact-phone:hover {
    color: var(--green-dark);
    transform: scale(1.05);
}

.contact-hint {
    font-size: var(--font-small);
    color: var(--text-muted);
    line-height: 1.5;
}

/* Horaires */
.contact-card-hours {
    grid-row: span 1;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.hours-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table .day {
    font-weight: 700;
    color: var(--stone-light);
    width: 110px;
}

.hours-table .hours {
    color: var(--text-light);
    text-align: right;
}

.hours-table .highlight .day {
    color: var(--green);
}

.hours-table .highlight .hours {
    color: var(--green);
    font-weight: 600;
}

/* Social */
.contact-social {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    background: rgba(74, 141, 183, 0.08);
    transition: all var(--transition-fast);
    margin-bottom: 1rem;
}

.contact-social:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-social i {
    font-size: 1.3rem;
}

/* Facebook styling */
.contact-social-fb {
    color: #5B9CF5;
    background: rgba(24, 119, 242, 0.15);
}

.contact-social-fb:hover {
    background: #1877F2;
    color: var(--white);
}

/* Instagram styling */
.contact-social-ig {
    color: #F06292;
    background: rgba(225, 48, 108, 0.15);
}

.contact-social-ig:hover {
    background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #F77737);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}

.footer .logo-script {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer .logo-accent {
    font-size: 2.1rem;
    color: var(--gold);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--font-small);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-small);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

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

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLETTE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .chef-grid {
        gap: 2.5rem;
    }

    .carte-layout {
        grid-template-columns: 1fr;
    }

    .carte-photos {
        position: static;
    }

    .carte-photos-grid:not(.cols-1):not(.cols-2):not(.cols-3) {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Navigation mobile */
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: #2A2010;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        padding: 2rem;
        transition: right var(--transition);
        box-shadow: -8px 0 30px rgba(0,0,0,0.4);
    }

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

    .nav-link {
        color: var(--stone-light) !important;
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 0, 0, 0.3);
        color: var(--gold-light) !important;
    }

    .nav-link::after {
        display: none;
    }

    /* Overlay mobile menu */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        right: 100%;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.4);
    }

    /* Chef section */
    .chef-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chef-image-accent {
        display: none;
    }

    .chef-text .section-label,
    .chef-text .section-title {
        text-align: center;
    }

    .chef-image-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Carte photos — tablet : max 2 colonnes */
    .carte-photos-grid,
    .carte-photos-grid.cols-3 { grid-template-columns: 1fr 1fr; }
    .carte-photos-grid.cols-1 { grid-template-columns: 1fr; }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            0deg,
            rgba(30, 24, 16, 0.6) 0%,
            rgba(30, 24, 16, 0) 40%
        );
    }

    /* Location */
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map iframe {
        height: 350px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card:last-child {
        max-width: 100%;
    }

    /* Parallax — désactiver sur mobile pour perf */
    .parallax-divider {
        background-attachment: scroll;
        height: 280px;
    }

    /* Social CTAs */
    .menu-facebook-cta,
    .menu-instagram-cta {
        font-size: 0.9rem;
        padding: 0.85rem 1.5rem;
    }

    .menu-social-ctas {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        flex-direction: column;
        gap: 0;
    }

    .hero-script {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-number {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

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

    .gallery-item-wide {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .menu-item-name {
        white-space: normal;
        font-size: 0.9rem;
    }

    .hours-table .day {
        width: 90px;
        font-size: 0.85rem;
    }

    .hours-table .hours {
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX (modal pour agrandir les photos)
   ═══════════════════════════════════════════════════════════ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background var(--transition-fast);
    border: none;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   PAGES LÉGALES (Mentions légales & Politique cookies)
   ═══════════════════════════════════════════════════════════ */

.legal-page {
    background: var(--cream);
    color: var(--stone-light);
    padding: clamp(2rem, 5vw, 4rem) 0;
    min-height: calc(100vh - 120px);
}

.legal-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
    font-family: var(--font-serif);
    font-size: var(--font-h2);
    font-weight: 700;
    color: var(--stone-light);
    margin-bottom: 0.5rem;
}

.legal-update {
    font-size: var(--font-small);
    color: var(--text-muted);
    font-style: italic;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-family: var(--font-serif);
    font-size: var(--font-h3);
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-section h2 i {
    color: var(--gold);
    font-size: 1rem;
}

.legal-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--green);
}

.legal-card p {
    color: var(--stone-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card strong {
    color: var(--stone-light);
    font-weight: 700;
}

.legal-card a {
    color: var(--green-light);
    text-decoration: underline;
    text-decoration-color: rgba(107, 159, 123, 0.3);
    transition: all var(--transition-fast);
}

.legal-card a:hover {
    color: var(--gold-light);
    text-decoration-color: var(--gold-light);
}

.legal-placeholder {
    color: var(--gold);
    font-style: italic;
    background: rgba(196, 162, 101, 0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.legal-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--stone-light);
    font-size: 0.95rem;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--green-light);
    font-weight: 700;
}

.legal-list li a {
    color: var(--green-light);
    text-decoration: underline;
    text-decoration-color: rgba(107, 159, 123, 0.3);
}

.legal-list li a:hover {
    color: var(--gold-light);
}

/* Navigation for legal pages — dark theme override */
.legal-page ~ .footer,
body:has(.legal-page) .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body:has(.legal-page) .navbar.scrolled {
    background: rgba(53, 40, 13, 0.95);
    backdrop-filter: blur(20px);
}

body:has(.legal-page) .navbar.scrolled .logo-script {
    color: var(--stone-light);
    font-size: 1.8rem;
}

body:has(.legal-page) .navbar.scrolled .logo-accent {
    font-size: 2.1rem;
}

body:has(.legal-page) .navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    transition: all var(--transition-fast);
}

body:has(.legal-page) .navbar.scrolled .nav-link:hover {
    color: var(--gold-light);
    border-color: var(--gold);
    background: rgba(196, 162, 101, 0.12);
}

body:has(.legal-page) .navbar.scrolled .nav-link i {
    margin-right: 0.4rem;
}
