/* Premium Luxury Restaurant Design */

:root {
    --primary: #8B4513;
    --secondary: #D4AF37;
    --gold: #FFD700;
    --dark: #1a1a1a;
    --darker: #0a0a0a;
    --light: #f8f5f0;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --champagne: #fdf7ec;
    --shadow-soft: rgba(0, 0, 0, 0.05);
    --glow: rgba(212, 175, 55, 0.35);
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(139, 69, 19, 0.08), transparent 45%),
                var(--white);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="160" height="160" viewBox="0 0 160 160" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 159h160v1H0z" fill="rgba(212,175,55,0.05)"/%3E%3C/svg%3E');
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

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

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

/* ========== LOADING ========== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: 5px;
}

.loader-logo span {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 8px;
    text-align: center;
    font-weight: 300;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to { left: 100%; }
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: min(90%, 1200px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    opacity: 0.7;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-ornament {
    color: var(--gold);
    font-size: 1.2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text span {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--gold);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    flex: 2;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-reserve {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    color: var(--dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-reserve::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: transform 0.4s ease;
}

.btn-reserve:hover::after {
    transform: translateX(250%) skewX(-20deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: transform;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2400ms cubic-bezier(0.2, 0.9, 0.2, 1);
    will-change: opacity;
    z-index: 0;
}

.slide:nth-child(odd) {
    --hero-pan-x: -2.2%;
    --hero-pan-y: -1.2%;
}

.slide:nth-child(even) {
    --hero-pan-x: 2.2%;
    --hero-pan-y: 1.2%;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Hero images (supports true crossfade even within a single slide) */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    opacity: 0;
    transform: scale(1.06) translate3d(0, 0, 0);
    transition:
        opacity 2400ms cubic-bezier(0.2, 0.9, 0.2, 1),
        transform 10000ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.hero-img.hero-img--show {
    opacity: 1;
    transform: scale(1.12) translate3d(var(--hero-pan-x, -2%), var(--hero-pan-y, -1%), 0);
}

@media (prefers-reduced-motion: reduce) {
    .slide {
        transition: none !important;
        opacity: 1 !important;
    }
    .hero-img {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 8px 35px rgba(0,0,0,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant-caps: titling-caps;
    font-kerning: normal;
    font-feature-settings: "liga" 1, "clig" 1, "dlig" 1;
    position: relative;
    padding: 10px 0 25px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 18px 24px;
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    max-width: 560px;
    margin: 24px auto 0;
}

.hero-buttons .btn {
    flex: 1 1 220px;
    border-radius: 999px;
    min-height: 58px;
    justify-content: center;
    padding-inline: 30px;
}

.hero-buttons .btn span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-buttons .btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(120deg, #ffefba 0%, var(--gold) 40%, var(--secondary) 100%);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.55);
}

.hero-buttons .btn-primary:hover i {
    transform: translateX(4px);
}

.hero-buttons .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    border-color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.4), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    color: var(--dark);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    background-size: 200% 200%;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
    background-position: right;
}

.btn-outline {
    background: transparent;
    color: var(--dark) !important;
    border: 2px solid var(--gold);
}

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

/* ========== SECTIONS ========== */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

/* Scroll performance: let the browser skip rendering offscreen sections */
@supports (content-visibility: auto) {
    section:not(.hero) {
        content-visibility: auto;
        contain-intrinsic-size: 900px;
    }
}

.hero + section {
    margin-top: 40px;
}

section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0.6;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 8px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.55));
    opacity: 0.7;
}

/* Dark sections (CTA banner etc.): keep label readable */
.cta-banner .section-label,
.hero .section-label {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(10, 10, 10, 0.35);
}

.cta-banner .section-label::before,
.cta-banner .section-label::after,
.hero .section-label::before,
.hero .section-label::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
}

.section-header .section-label {
    justify-content: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
}

.title-highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    margin: 20px 0 30px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
}

.section-header .title-underline {
    justify-content: center;
}

.title-underline::before,
.title-underline::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    opacity: 0.7;
}

.underline-ornament {
    color: var(--gold);
    font-size: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 20px;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: linear-gradient(180deg, var(--champagne) 0%, var(--white) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images::after {
    content: '';
    position: absolute;
    inset: -25px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    z-index: -2;
}

.image-main {
    position: relative;
}

.image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    animation: rotate 20s linear infinite;
}

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

.badge-content {
    text-align: center;
    color: var(--dark);
    animation: rotateReverse 20s linear infinite;
}

@keyframes rotateReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 20px;
}

.about-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 500;
    margin: 30px 0;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dark);
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.feature h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    margin-top: 30px;
}

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

/* ========== MENU SECTION ========== */
.menu-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--champagne) 100%);
}

/* Menu entrance animation (lightweight: opacity + transform only) */
.menu-section .menu-card[data-menu-anim] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    will-change: opacity, transform;
}

.menu-section.is-visible .menu-card[data-menu-anim] {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger timings */
.menu-section.is-visible .menu-card[data-menu-anim]:nth-child(1) { transition-delay: 0ms; }
.menu-section.is-visible .menu-card[data-menu-anim]:nth-child(2) { transition-delay: 70ms; }
.menu-section.is-visible .menu-card[data-menu-anim]:nth-child(3) { transition-delay: 140ms; }
.menu-section.is-visible .menu-card[data-menu-anim]:nth-child(4) { transition-delay: 210ms; }
.menu-section.is-visible .menu-card[data-menu-anim]:nth-child(5) { transition-delay: 280ms; }
.menu-section.is-visible .menu-card[data-menu-anim]:nth-child(6) { transition-delay: 350ms; }

@media (prefers-reduced-motion: reduce) {
    .menu-section .menu-card[data-menu-anim] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
    }
}

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

.menu-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;

    /* Mobile tap: make it feel instant */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.menu-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.menu-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, border-color 0.4s ease;
}

.menu-card:hover::after {
    opacity: 1;
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.35);
}

.menu-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.menu-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover img {
    transform: scale(1.15);
}

.menu-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(115,78,29,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);

    /* Allow taps anywhere on the overlay */
    pointer-events: none;
}

/* Mobile performance: avoid costly hover effects in menu cards */
@media (max-width: 968px) {
    .menu-card {
        transition: none !important;
        box-shadow: none !important;
    }

    .menu-hover {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Reduce other expensive effects for smoother scrolling */
    .section-label {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .image-main img,
    .feature-icon,
    .experience-badge {
        box-shadow: none !important;
    }

    .experience-badge,
    .badge-content {
        animation: none !important;
    }

    .menu-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .menu-card::after,
    .menu-card:hover::after {
        box-shadow: none !important;
    }

    .menu-image img,
    .menu-card:hover img {
        transform: none !important;
        transition: none !important;
    }

    .menu-hover {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: opacity 0.18s ease !important;
    }
}

.menu-card:hover .menu-hover {
    opacity: 1;
}

.menu-card.show-info .menu-hover {
    opacity: 1;
    pointer-events: auto;
}

.menu-meta {
    color: var(--white);
}

.menu-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 12px;
}

.menu-meta h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.menu-meta p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-price {
    margin-top: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.menu-hover-icon {
    align-self: flex-end;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}

.menu-hover i {
    color: var(--white);
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-hover i {
    transform: scale(1.15);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.menu-experience {
    background: linear-gradient(180deg, var(--white) 0%, var(--champagne) 100%);
    padding-top: 0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.menu-tab {
    border: 1px solid rgba(212,175,55,0.4);
    padding: 12px 26px;
    border-radius: 999px;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    color: var(--dark);
    box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}

.menu-tab-panels {
    position: relative;
}

.menu-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-tab-panel.active {
    display: block;
}

.menu-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.menu-panel-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(212,175,55,0.15);
}

.menu-panel-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.menu-panel-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.menu-panel-card ul {
    list-style: none;
    padding-left: 0;
}

.menu-panel-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text);
}

.menu-panel-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.menu-experience-cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: zoom-in;
    height: 300px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.gallery-item.tall {
    grid-row: span 2;
    height: 620px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(139,69,19,0.85) 0%, rgba(212,175,55,0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
    border-color: rgba(255,255,255,0.3);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.15);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--champagne) 100%);
}

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

.info-items {
    margin: 50px 0;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-decoration: none;
    color: inherit;
    cursor: default;
}

.info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(139, 69, 19, 0.8), rgba(212, 175, 55, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.info-item:hover::before {
    opacity: 1;
}

.address-link {
    cursor: pointer;
}

.address-link:hover {
    color: inherit;
}

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

.cta-banner {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(120deg, rgba(10,10,10,0.85), rgba(26,26,26,0.8)),
                url('images/restaurant4.jpg') center/cover fixed;
    color: var(--white);
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.35), transparent 55%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.cta-content .section-title {
    color: var(--white);
}

.cta-content .section-description {
    color: rgba(255,255,255,0.85);
    margin-top: 15px;
}

.cta-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 230px;
}

/* CTA Banner: improve contrast for outline button */
.cta-banner .btn-outline {
    color: var(--white) !important;
    border-color: rgba(255, 215, 0, 0.9);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 30px rgba(0,0,0,0.25);
}

.cta-banner .btn-outline:hover {
    background: var(--gold);
    color: var(--dark) !important;
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.45);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p,
.info-content a {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background-position: right;
}

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

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

.lightbox-backdrop {
    position: absolute;
    inset: 0;
}

.lightbox-content {
    position: relative;
    max-width: 1000px;
    width: 90%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-content img {
    width: 100%;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

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

/* ========== MAP SECTION ========== */
.map-section {
    background: linear-gradient(180deg, var(--champagne) 0%, var(--white) 100%);
    padding-top: 0;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
}

.map-card::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    pointer-events: none;
}

.map-card iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}



/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    padding: 60px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-ornament {
    color: var(--gold);
    font-size: 1.5rem;
}

.footer-logo-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 5px;
}

.footer-logo-text span {
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: var(--gold);
}

.footer-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .about-grid,
    .contact-grid {
        gap: 50px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        max-width: 300px;
        padding: 20px;
        gap: 15px;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(212,175,55,0.3);
        box-shadow: 5px 0 30px rgba(0,0,0,0.5);
        height: calc(100vh - 60px);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.85rem;
        padding: 8px 0;
        width: 100%;
        border-radius: 0;
        background: transparent;
        border: none;
    }

    .nav-link::before {
        bottom: -5px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        border-color: transparent;
    }
    
    .hamburger {
        display: flex;
        width: auto;
        height: auto;
        border-radius: 0;
        border: none;
        background: transparent;
        backdrop-filter: none;
    }

    .hamburger span {
        position: relative;
        display: block;
        width: 30px;
        height: 2px;
        background: var(--gold);
        transition: all 0.3s ease;
    }

    .hamburger span + span {
        margin-top: 6px;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-menu,
    .nav-menu li,
    .nav-backdrop {
        transition: none !important;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 16px;
        border-radius: 32px;
        gap: 12px;
    }

    .hero-buttons .btn {
        flex: 1 1 auto;
        min-height: 54px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .menu-grid,
    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .menu-tab {
        width: 100%;
        text-align: center;
    }

    .menu-panel-card {
        padding: 25px;
    }
    
    .gallery-item.tall {
        grid-row: span 1;
        height: 300px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
    }
    
    .experience-badge {
        width: 110px;
        height: 110px;
        right: 10px;
        top: 12px;
    }
    
    .badge-number {
        font-size: 1.9rem;
    }

    .image-main img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .container,
    .container-fluid {
        padding: 0 16px;
    }

    section {
        padding: 90px 0;
    }

    .hero {
        height: auto;
        min-height: 520px;
        padding: 140px 0 80px;
    }

    .hero-slider,
    .hero-overlay {
        position: absolute;
        inset: 0;
    }

    /* About (Hikayemiz) - mobile layout fix */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        align-items: start;
    }

    .about-images {
        position: relative;
        justify-self: center;
        width: 100%;
        max-width: 520px;
    }

    .image-main img {
        height: 420px;
    }

    .experience-badge {
        right: 12px;
        top: 16px;
        width: 120px;
        height: 120px;
        animation: none;
    }

    .badge-content {
        animation: none;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .about-content,
    .contact-info,
    .cta-content {
        text-align: center;
        padding-left: 0;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-icon {
        margin-bottom: 12px;
    }

    .social-icons {
        justify-content: center;
    }

    .cta-banner {
        background-attachment: scroll;
        padding: 110px 0;
    }
}

/* Mobile performance: reduce expensive effects on low-power devices */
@media (max-width: 768px) {
    .gallery-overlay {
        transition: opacity 0.2s ease !important;
    }

    .menu-card,
    .gallery-item,
    .feature,
    .info-item {
        box-shadow: none !important;
    }

    /* Avoid heavy filters/blur on mobile */
    .navbar,
    .mobile-nav,
    .menu-hover,
    .gallery-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .menu-image img,
    .gallery-item img {
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

@media (max-width: 420px) {
    .section-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
        width: 100%;
        justify-content: center;
    }

    .info-item {
        padding: 20px;
    }

    .info-content h4 {
        font-size: 1rem;
    }

    .hero {
        padding: 120px 0 70px;
    }

    .cta-actions .btn {
        min-width: auto;
    }
}
