/* ===========================
   MARE RESTAURANT - MAIN STYLES
   =========================== */

/* Import des polices personnalisées */
@font-face {
    font-family: 'Vicomte';
    src: url('../Fonts/TRYVicomteFY-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Light';
    src: url('../Fonts/FuturaND-LightSC.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jannon';
    src: url('../Fonts/Jannon Text Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Affigere';
    src: url('../Fonts/Affigere-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Variables CSS */
:root {
    /* Couleurs principales - palette élégante */
    --primary-navy: #280603;
    --primary-gold: #c9a961;
    --secondary-teal: #5a8a8c;
    --accent-coral: #e8b4a0;
    --neutral-beige: #f5f0e8;
    --neutral-gray: #6b7280;
    --white: #ffffff;
    --black: #0a0a0a;
    
    /* Polices */
    --font-primary: 'Vicomte', serif;
    --font-secondary: 'Futura Light', sans-serif;
    --font-accent: 'Jannon', serif;
    --font-display: 'Affigere', serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-2xl: 8rem;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Ombres */
    --shadow-sm: 0 2px 10px rgba(40, 6, 3, 0.08);
    --shadow-md: 0 10px 30px rgba(40, 6, 3, 0.12);
    --shadow-lg: 0 20px 50px rgba(40, 6, 3, 0.16);
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--primary-navy);
    background-color: var(--neutral-beige);
    overflow-x: hidden;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: var(--neutral-gray);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(40, 6, 3, 0.98), rgba(40, 6, 3, 0.95));
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    transform: translateY(0) !important;
    will-change: transform;
}

.navbar.scrolled {
    background: rgba(40, 6, 3, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar.navbar-hidden {
    transform: translateY(-100%) !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 4rem;
}

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

.nav-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

.nav-logo:hover img {
    transform: rotate(360deg) scale(1.1);
    filter: brightness(0) invert(0.8);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: 0.08em;
    padding: 1rem 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.85;
    font-weight: 300;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(201, 169, 97, 0.3));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation link active state */
.nav-link.active {
    color: var(--primary-gold);
    opacity: 1;
}

.nav-link.active::after {
    width: 100%;
    background: var(--primary-gold);
}

.nav-cta {
    background: transparent;
    color: var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(201, 169, 97, 0.6);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    font-weight: 300;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-gold), rgba(201, 169, 97, 0.9));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-cta:hover {
    color: var(--primary-navy);
    transform: translateY(-1px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.nav-cta:hover::before {
    width: 100%;
}

.nav-cta:hover::after {
    width: 0;
}

/* Navigation link active state */
.nav-link.active {
    color: var(--primary-gold);
    opacity: 1;
}

.nav-link.active::after {
    width: 100%;
    background: var(--primary-gold);
}

/* Hamburger menu styles */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 12;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 4px 0;
    position: relative;
}

/* Active hamburger animation - Perfect X */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-gold);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    margin-top: 75px;
    background: linear-gradient(135deg, var(--neutral-beige) 0%, rgba(245, 240, 232, 0.9) 100%);
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    height: 100%;
    contain: layout;
    transform: translateZ(0);
}

.hero-logo {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 1;
    /* animation: fadeInUp 1s ease forwards; - DISABLED */
    filter: drop-shadow(0 10px 30px rgba(40, 6, 3, 0.15)) 
            brightness(0) 
            saturate(100%) 
            invert(8%) 
            sepia(100%) 
            saturate(6000%) 
            hue-rotate(350deg) 
            brightness(40%) 
            contrast(150%);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    opacity: 1;
    /* animation: fadeInUp 1s ease 0.2s forwards; - DISABLED */
}

.hero-description {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 2rem;
    opacity: 1;
    /* animation: fadeInUp 1s ease 0.4s forwards; - DISABLED */
}

.hero-text {
    position: relative;
}

.hero-text .btn {
    margin-top: 1rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.6s forwards;
    will-change: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(40, 6, 3, 0.1));
    /* animation: fadeIn 1.5s ease 0.6s forwards, facadeFloat 12s ease-in-out infinite; - DISABLED */
}

.hero-wave {
    position: absolute;
    bottom: -65px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;
    pointer-events: none;
}

.hero-wave img {
    width: 100%;
    height: auto;
    opacity: 0.3;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid var(--primary-gold);
    position: relative;
    background: var(--primary-gold);
    color: var(--primary-navy);
    text-align: center;
    z-index: 9999999;
    width: auto;
    overflow: visible;
}

.btn:hover {
    background: rgba(201, 169, 97, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.btn:active {
    transform: translateY(0);
    background: rgba(201, 169, 97, 0.8);
}

.btn-primary {
    /* Styles déjà définis dans .btn */
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(201, 169, 97, 0.9);
    border: 1px solid rgba(40, 6, 3, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 6, 3, 0.25);
}

/* Sections */
.section-title {
    text-align: center;
    color: rgba(40, 6, 3, 0.95);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 3rem;
}

/* About Section */
.about {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    box-shadow: 0 -20px 40px rgba(40, 6, 3, 0.1);
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
}

.feature img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(40, 6, 3, 0.1));
    transition: var(--transition-base);
}

.feature {
    position: relative;
}

.feature::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.feature:hover::after {
    width: 50px;
}

.feature:hover img {
    transform: translateY(-5px) rotate(5deg);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.about-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(40, 6, 3, 0.15));
}

/* Chef Section */
.chef-section {
    padding: var(--spacing-2xl) 0;
    background: var(--primary-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 3;
}



.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.experience-visual {
    position: relative;
    text-align: center;
}

.experience-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.experience-table {
    width: 250px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 10px 30px rgba(201, 169, 97, 0.3));
    animation: float 4s ease-in-out infinite;
}

.experience-glass {
    width: 120px;
    height: auto;
    position: absolute;
    top: 30%;
    right: -10%;
    filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(201, 169, 97, 0.3));
    opacity: 0.8;
    animation: float 3s ease-in-out infinite 1s;
}

.experience-boat {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(201, 169, 97, 0.3));
    opacity: 0.7;
    animation: float 5s ease-in-out infinite 2s;
}

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

.experience-info .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 1rem;
}

.experience-subtitle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-accent);
    font-style: italic;
}

.experience-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.experience-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight h4 {
    color: var(--primary-gold);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.highlight p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}



/* Menu Preview */
.menu-preview {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--neutral-beige) 0%, #f8f5f0 100%);
    position: relative;
    z-index: 4;
    overflow: hidden;
}



.menu-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.menu-intro {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
}

.menu-intro p {
    font-size: 1.1rem;
    color: rgba(40, 6, 3, 0.8);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

.menu-intro::before,
.menu-intro::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.menu-intro::before {
    left: 0;
}

.menu-intro::after {
    right: 0;
}

.menu-section {
    margin-bottom: 5rem;
    position: relative;
}

.menu-section-title {
    font-size: 2.5rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-family: var(--font-secondary);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.menu-section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-dish {
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transform: translateY(0);
    opacity: 0.95;
}

.menu-dish::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.menu-dish:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(40, 6, 3, 0.15);
    border-color: var(--primary-gold);
    opacity: 1;
}

.menu-dish:hover::before {
    opacity: 1;
}

.menu-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 280px;
}

.menu-dish img,
.menu-image img {
    width: 100%;
    max-width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(40, 6, 3, 0.1);
    background: transparent !important;
    filter: contrast(1.2) brightness(1.1) saturate(1.1) 
            drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    position: relative;
    z-index: 1;
    /* Remove background methods */
    background-color: transparent !important;
    background-image: none !important;
    mix-blend-mode: normal;
    display: block;
}

/* Suppression background pour tous les plats */
.menu-dish img[alt*="Tartare"],
.menu-dish img[alt*="Fiori"],
.menu-dish img[alt*="Capesante"],
.menu-dish img[alt*="Branzino"],
.menu-dish img[alt*="Pesce"],
.menu-dish img[alt*="Paccheri"],
.menu-dish img[alt*="Risotto"],
.menu-dish img[alt*="Baba"],
.menu-dish img[alt*="Panna"],
.menu-dish img[alt*="Cioccolato"],
.menu-image img[alt*="Tartare"],
.menu-image img[alt*="Fiori"],
.menu-image img[alt*="Capesante"],
.menu-image img[alt*="Branzino"],
.menu-image img[alt*="Pesce"],
.menu-image img[alt*="Paccheri"],
.menu-image img[alt*="Risotto"],
.menu-image img[alt*="Baba"],
.menu-image img[alt*="Panna"],
.menu-image img[alt*="Cioccolato"] {
    mix-blend-mode: multiply;
    filter: contrast(1.3) brightness(1.15) saturate(1.2);
    background: transparent;
}

/* Spécifique pour Fiori di Zucchine */
.menu-dish img[alt="Fiori di Zucchine"],
.menu-image img[alt="Fiori di Zucchine"] {
    mix-blend-mode: multiply !important;
    filter: contrast(1.4) brightness(1.2) saturate(1.3) !important;
    background: transparent !important;
}

/* Spécifique pour Paccheri all'Astice - zoom out */
.menu-dish img[alt="Paccheri all'Astice"],
.menu-image img[alt="Paccheri all'Astice"] {
    transform: scale(0.75) !important;
}

.menu-dish[data-scroll] img {
    transition: all 0.8s ease;
}

.menu-dish.rotate img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(40, 6, 3, 0.2);
}

.menu-dish:hover img,
.menu-dish:hover .menu-image img {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(40, 6, 3, 0.25);
    filter: contrast(1.3) brightness(1.2) saturate(1.2);
}

.menu-info {
    padding: 1rem 0 0.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.menu-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--primary-gold);
    opacity: 0.6;
}

.menu-info h4 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin: 0;
    font-family: var(--font-secondary);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.menu-dish:hover .menu-info h4 {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.menu-preview .btn {
    display: block;
    width: fit-content;
    margin: 4rem auto 0;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4b574 100%);
    color: var(--primary-navy);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.menu-preview .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.menu-preview .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, #d4b574 0%, var(--primary-gold) 100%);
}

.menu-preview .btn:hover::before {
    left: 100%;
}

@keyframes dishScale {
    0% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(40, 6, 3, 0.1);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 15px 40px rgba(40, 6, 3, 0.2);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(40, 6, 3, 0.1);
    }
}

@keyframes dishFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0) scale(1);
    }
}

.menu-dish[data-scroll] {
    /* Temporarily disable animation to test
    opacity: 0;
    animation: dishFadeIn 0.8s ease forwards; */
    opacity: 0.95 !important;
}

/* Staggered animation delays */
.menu-grid .menu-dish:nth-child(1) { animation-delay: 0.1s; }
.menu-grid .menu-dish:nth-child(2) { animation-delay: 0.2s; }
.menu-grid .menu-dish:nth-child(3) { animation-delay: 0.3s; }
.menu-grid .menu-dish:nth-child(4) { animation-delay: 0.4s; }

/* Menu Hero */
.menu-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, rgba(40, 6, 3, 0.9) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}



.menu-hero-content {
    position: relative;
    z-index: 2;
}

.menu-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 300;
}

.menu-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-style: italic;
}

.menu-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Menu Images Section */
.menu-images {
    padding: var(--spacing-2xl) 0;
    background: var(--neutral-beige);
}

.menu-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.menu-image-item {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(40, 6, 3, 0.1);
    transition: all 0.4s ease;
}

.menu-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(40, 6, 3, 0.15);
}

.menu-image-item h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.menu-page-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.menu-page-image:hover {
    transform: scale(1.02);
}

/* Menu PDF Section */
.menu-pdf {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, rgba(40, 6, 3, 0.95) 100%);
    color: white;
}

.menu-pdf .section-title {
    color: white;
}

/* Menu Images Grid */
.menu-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.menu-image-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: zoom-in;
    position: relative;
}

.menu-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.menu-image-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Zoom Overlay */
.menu-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 20px;
}

.menu-zoom-overlay.active {
    display: flex;
}

.menu-zoom-container {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.menu-zoom-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.menu-zoom-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    transition: transform 0.3s ease;
}

.menu-zoom-close:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .menu-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.pdf-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pdf-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.pdf-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: sepia(1) hue-rotate(30deg) saturate(2);
}

.pdf-preview h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-family: var(--font-secondary);
}

.pdf-preview p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pdf-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Menu CTA Section */
.menu-cta {
    padding: var(--spacing-2xl) 0;
    background: var(--neutral-beige);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(40, 6, 3, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4b574 100%);
    color: var(--primary-navy);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
    transition: all 0.4s ease;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.5);
}

/* Reservation Section */
.reservation-section {
    margin-top: 3rem;
}

.reservation-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reservation-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: rgba(40, 6, 3, 0.8);
    line-height: 1.6;
    font-style: italic;
}



/* Contact Section Improvements */
.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    color: white;
    stroke-width: 2;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.map-section {
    margin-top: 3rem;
}

.map-section h3 {
    font-size: 1.5rem;
    color: rgb(255 255 255 / 90%);
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
}

.map-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

/* Reservation Section Redesign */
.reservation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reservation-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Restaurant Info Section */
.restaurant-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.info-card h4 {
    font-size: 1rem;
    color: var(--primary-gold);
    margin: 0 0 0.75rem 0;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.dining-areas {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.dining-areas h4 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin: 0 0 1rem 0;
    font-family: var(--font-secondary);
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.area-tag {
    background: rgba(201, 169, 97, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(201, 169, 97, 0.3);
    color: white;
}



.reservation-booking {
    display: flex;
    justify-content: center;
}

.booking-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    width: 100%;
    max-width: 400px;
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-header h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.booking-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.booking-btn.primary {
    background: var(--primary-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.booking-btn.primary:hover {
    background: #b59554;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    color: white;
}

.booking-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.booking-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-gold);
    color: white;
}

.booking-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 2;
}

/* Booking Stats */
.booking-stats {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.stat {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    display: block;
}

/* Contact Info */
.contact-info {
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.25rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .reservation-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .areas-list {
        justify-content: center;
    }
    
    .booking-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .reservation-container {
        padding: 0 1rem;
    }
    
    .reservation-content {
        padding: 1.5rem;
    }
    
    .reservation-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .menu-preview {
        padding: var(--spacing-xl) 0;
    }
    
    .menu-hero {
        padding: 6rem 0 4rem;
    }
    
    .menu-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .menu-options {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .menu-section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .menu-dish {
        max-width: 350px;
        width: 100%;
        padding: 1rem;
    }
    
    .menu-dish img {
        max-width: 250px;
        height: 250px;
    }
    
    .menu-section {
        margin-bottom: 3rem;
    }
    
    .menu-images-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .menu-image-item {
        padding: 1.5rem;
    }
    
    .pdf-preview {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .pdf-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Gallery */
.gallery {
    padding: 0;
    background: var(--primary-navy);
    position: relative;
    z-index: 5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 2px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(40, 6, 3, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item::after {
    content: 'Voir plus';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}

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

/* Contact Section */
.contact {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
    position: relative;
    z-index: 6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.map-container {
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(201, 169, 97, 0.1) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.address-frame {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 2rem;
}

/* Reservation Form */
.reservation-form {
    background: var(--neutral-beige);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.reservation-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-navy);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--neutral-beige) 0%, rgba(245, 240, 232, 0.7) 100%);
    position: relative;
    overflow: hidden;
    z-index: 7;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 300px;
    font-family: var(--font-accent);
    color: var(--primary-gold);
    opacity: 0.05;
    z-index: 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    z-index: 1;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testimonial.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    /* animation: fadeInUp 0.8s ease; - DISABLED */
}

.stars {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.3em;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--neutral-gray);
    margin-bottom: 2rem;
    font-family: var(--font-accent);
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--secondary-teal);
    font-size: 0.95rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-gray);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    opacity: 1;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

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

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes facadeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-2px) rotate(0.1deg);
    }
    50% {
        transform: translateY(-1px) rotate(0deg);
    }
    75% {
        transform: translateY(-3px) rotate(-0.1deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        grid-template-columns: none;
    }
    
    .nav-menu {
        display: none !important;
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--primary-navy);
        width: 100%;
        text-align: center;
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        justify-content: flex-start;
        height: calc(100vh - 60px);
    }
    
    .nav-menu.active {
        display: flex !important;
        left: 0;
    }
    
    .nav-link {
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    }
    
    .nav-cta {
        margin: 1rem;
        width: auto;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 180px;
        object-fit: contain;
    }
    
    .about-content,
    .contact-content,
    .experience-content {
        grid-template-columns: 1fr;
    }
    
    .experience-highlights {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-dish img {
        max-width: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .map-container {
        display: none;
    }
}

/* ===========================
   ENHANCED MOBILE STYLES
   =========================== */

/* Mobile and Tablet (up to 768px) */
@media (max-width: 768px) {
    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 275px;
        object-fit: contain;
    }
}

/* Mobile Medium (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 0;
    }
    
    .hero-content {
        padding: 80px 0rem 7rem;
        gap: 1rem;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        min-height: 69vh;
        padding-top: 0px;
        box-sizing: border-box;
    }
    
    .hero-text > div {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .hero-text .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-logo {
        max-width: 200px;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: larger;
        margin-bottom: 0.5rem;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(12px);
        padding: 0.75rem 1rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
        display: inline-block;
        max-width: 280px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding: 1rem 1.25rem;
        color: rgba(40, 6, 3, 0.9);
        font-weight: 400;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(12px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
        background: var(--primary-gold);
        color: var(--primary-navy);
        border: 2px solid var(--primary-gold);
        box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    }
    
    /* About Section Mobile - Overlay Effect */
    .about {
        padding: 3rem 1rem;
        position: relative;
        z-index: 2;
        background: var(--white);
        margin-top: 100vh;
        border-radius: 30px 30px 0 0;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        min-height: 100vh;
    }
    
    .about::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 4px;
        background: var(--primary-gold);
        border-radius: 2px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
    }
    
    .about-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem 1rem;
    }
    
    .feature img {
        max-width: 60px;
        height: 60px;
    }
    
    .feature h4 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
    
    /* Menu Section Mobile - Continues with About */
    .menu-preview {
        padding: 3rem 1rem;
        position: relative;
        z-index: 2;
        background: var(--white);
        margin-top: 0;
    }
    
    .menu-grid {
        gap: 1rem;
    }
    
    .menu-category {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .menu-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .menu-dish {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .menu-dish img {
        max-width: 200px;
        height: 201px;
        margin-bottom: 0.75rem;
    }
    
    .menu-dish h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-dish p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .dish-price {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    /* Gallery Mobile */
    .gallery {
        padding: 3rem 0 !important;
    }
    
    .gallery .container {
        padding: 0 1rem;
    }
    
    .gallery h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .gallery .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .gallery > .container > div {
        padding: 2rem 1rem !important;
    }
    
    .gallery h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .gallery p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .gallery a {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        margin: 0 0.5rem 0.5rem 0 !important;
        display: inline-block !important;
    }
    
    /* Contact/Reservation Mobile */
    .reservation-simple {
        padding: 3rem 0 !important;
    }
    
    .reservation-simple .container {
        padding: 0 1rem !important;
    }
    
    .reservation-simple p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Tab buttons mobile */
    .reservation-simple div[style*="display: flex; justify-content: center"] {
        margin-bottom: 1.5rem !important;
    }
    
    .reservation-simple button {
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
    }
    
    /* Reservation card mobile */
    .reservation-simple div[style*="background: white"] {
        padding: 1.5rem !important;
        margin: 0 !important;
    }
    
    .reservation-simple div[style*="max-width: 500px"] {
        max-width: 100% !important;
        padding: 1.5rem !important;
    }
    
    .reservation-simple img {
        max-width: 120px !important;
        max-height: 40px !important;
    }
    
    .reservation-simple h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .reservation-simple div[style*="max-width: 600px"] {
        max-width: 100% !important;
        padding: 1.5rem !important;
    }
    
    .reservation-simple ul li {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Typography Mobile */
    h1 { 
        font-size: 2.5rem !important; 
        line-height: 1.1;
    }
    
    h2 { 
        font-size: 1.8rem !important; 
        line-height: 1.2;
    }
    
    h3 { 
        font-size: 1.3rem !important; 
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Spacing adjustments */
    .hero {
        margin-top: 60px;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Mobile Small (up to 360px) */
@media (max-width: 360px) {
    .nav-logo img {
        height: 30px;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.5rem !important; }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .menu-dish img {
        max-width: 180px;
        height: 120px;
    }
    
    .reservation-simple button {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
    }
}

/* ===========================
   TOUCH-FRIENDLY IMPROVEMENTS
   =========================== */

/* Better touch targets for mobile */
@media (max-width: 768px) {
    /* Minimum touch target of 44px */
    .nav-link,
    .btn,
    button,
    a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    /* Hamburger menu improvements */
    .nav-toggle {
        width: 44px;
        height: 44px;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 1px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .nav-toggle span:nth-child(1) {
        margin-bottom: 5px;
    }
    
    .nav-toggle span:nth-child(2) {
        margin-bottom: 5px;
    }
    
    /* Active hamburger animation - Better X */
    /* Styles removed - defined in main section */
    
    /* Mobile menu overlay */
    .nav-menu {
        backdrop-filter: blur(20px);
        background: linear-gradient(to bottom, rgba(40, 6, 3, 0.98), rgba(40, 6, 3, 0.95));
        border-top: 1px solid rgba(201, 169, 97, 0.2);
    }
    
    .nav-menu.active {
        animation: slideDown 0.3s ease;
    }
    
    /* Smooth scrolling behavior */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px !important;
        border-radius: 8px;
        padding: 12px 16px;
        border: 2px solid #e8dfc5;
        background: white;
        touch-action: manipulation;
    }
    
    /* Focus states for better accessibility */
    .nav-link:focus,
    .btn:focus,
    button:focus,
    a:focus {
        outline: 2px solid #c9a961;
        outline-offset: 2px;
    }
    
    /* Better button spacing on mobile */
    .btn {
        margin: 0.5rem 0;
        width: auto;
        min-width: 120px;
    }
    
    /* Improve text selection */
    * {
        -webkit-tap-highlight-color: rgba(201, 169, 97, 0.3);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Allow text selection for content */
    p, h1, h2, h3, h4, h5, h6, span, li {
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    
    /* Loading state for buttons */
    .btn:active,
    button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Swipe gestures hint */
    .gallery-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .gallery-item {
        scroll-snap-align: center;
        flex-shrink: 0;
    }
}

/* Keyframe animations */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Performance optimizations */
@media (max-width: 768px) {
    /* Reduce animations on low-end devices */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* GPU acceleration for smooth animations */
    .nav-menu,
    .nav-toggle,
    .btn,
    .hero-logo {
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* iPhone 11 and similar devices (414px width) */
@media (max-width: 414px) {
    /* Container adjustments */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Hero section fixes */
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 0;
        width: 100vw;
    }
    
    .hero-content {
        padding: 90px 1rem 7rem;
        gap: 1rem;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        min-height: 65vh;
        width: 100%;
        max-width: 414px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Hero image sizing */
    .hero-image {
        order: -1;
        max-width: 250px;
        margin: -20px auto 0rem;
        width: 100%;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
        display: block;
    }
    
    /* Hero text improvements */
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(12px);
        padding: 0.75rem 1rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        padding: 1rem 1.2rem;
        color: rgba(40, 6, 3, 0.9);
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(12px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        text-align: center;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Button styling */
    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        background: var(--primary-gold);
        color: var(--primary-navy);
        border: -3px solid var(--primary-gold);
        border-radius: 14px;
        display: inline-block;
        margin: 0px auto;
        text-align: center;
        min-width: 200px;
    }
    
    /* About section positioning */
    .about {
        padding: 3rem 1rem;
        position: relative;
        z-index: 2;
        background: var(--white);
        margin-top: 100vh;
        border-radius: 30px 30px 0 0;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Navigation adjustments */
    .nav-container {
        padding: 0.75rem 1rem;
        max-width: 414px;
        margin: 0 auto;
    }
    
    /* Menu grid adjustments */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .menu-dish {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .menu-image {
        max-width: 250px;
        margin: 0 auto 1rem;
    }
    
    .menu-image img {
        width: 100%;
        max-width: 250px;
        height: 250px;
        object-fit: cover;
    }
}

/* Mobile Small (up to 360px) */
@media (max-width: 360px) {
    .hero-text .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
    }
}

/* Desktop - Hide nav-toggle */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        gap: 2rem;
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
    }
}

/* ===========================
   PAGE SPECIFIC STYLES
   =========================== */