/* ============================================================
   La Bella Cucina — Main Stylesheet
   Dark Luxury Theme · Gold Accents · Premium Design
   ============================================================ */

/* ── 1. Design Tokens ──────────────────────────────────────── */
:root {
    /* Colors */
    --dark:         #0d0d0d;
    --dark-2:       #141414;
    --dark-3:       #1a1a1a;
    --dark-4:       #222222;
    --dark-card:    #191919;
    --gold:         #c9a96e;
    --gold-light:   #e8c87a;
    --gold-dark:    #a87d3e;
    --gold-glow:    rgba(201,169,110,0.15);
    --cream:        #f5f0e8;
    --cream-dim:    #c8b99a;
    --white:        #ffffff;
    --text-primary: #f0ece4;
    --text-muted:   #8a8580;
    --text-dim:     #5a5550;
    --border:       rgba(201,169,110,0.15);
    --border-hover: rgba(201,169,110,0.40);
    --success:      #4caf7d;
    --error:        #e05252;

    /* Typography */
    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Poppins', system-ui, sans-serif;

    /* Spacing */
    --section-py:   7rem;
    --container:    1280px;

    /* Effects */
    --radius:       12px;
    --radius-sm:    6px;
    --radius-lg:    20px;
    --shadow-card:  0 8px 40px rgba(0,0,0,0.45);
    --shadow-gold:  0 0 30px rgba(201,169,110,0.20);
    --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
    --transition-fast: 0.18s ease;

    /* Navbar */
    --nav-h:        80px;
}

/* ── 2. Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--gold); color: var(--dark); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── 3. Layout Utilities ───────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.btn-full { width: 100%; }

/* ── 4. Section Header System ──────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header { margin-bottom: 3.5rem; }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── 5. Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,110,0.5);
    color: var(--dark);
}

.btn-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background: var(--gold-glow);
    transform: translateY(-2px);
    color: var(--gold-light);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ── 6. Flash Messages ─────────────────────────────────────── */
.flash-message {
    position: fixed;
    top: calc(var(--nav-h) + 1rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    max-width: 600px;
    width: calc(100% - 2rem);
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideDown 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.flash-success { background: #1a2e22; border: 1px solid #4caf7d; color: #7ce0a8; }
.flash-error   { background: #2e1a1a; border: 1px solid #e05252; color: #f08080; }
.flash-message button { margin-left: auto; opacity: 0.7; font-size: 1.2rem; padding: 0 0.25rem; color: inherit; }
.flash-message button:hover { opacity: 1; }

@keyframes slideDown { from { opacity:0; transform: translateX(-50%) translateY(-20px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

/* ── 7. Preloader ───────────────────────────────────────────── */
#preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }
.pl-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    animation: pulse 1.2s ease-in-out infinite;
}
.pl-line {
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 0;
    animation: expandLine 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
@keyframes expandLine { 0%{width:0} 50%{width:200px} 100%{width:0} }

/* ── 8. Navbar ──────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.scrolled {
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.6);
    height: 65px;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex; flex-direction: column; gap: 0; line-height: 1;
    text-decoration: none;
}
.logo-main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cream-dim);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-glow); }

.nav-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    margin-left: 0.5rem;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    transition: all var(--transition-fast);
}
.nav-btn-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition-fast);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 9. Hero Section ────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=85') center/cover no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13,13,13,0.92) 0%,
        rgba(13,13,13,0.75) 50%,
        rgba(13,13,13,0.88) 100%
    );
}

.hero-content {
    position: relative; z-index: 1;
    text-align: center;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--border-hover);
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-glow);
    margin-bottom: 2rem;
}
.hero-badge i { font-size: 0.65rem; }

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.1em;
}
.hero-title-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--cream-dim);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
}
.hero-stat {
    text-align: center;
}
.hero-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-stat-divider {
    width: 1px; height: 40px;
    background: var(--border);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--cream-dim);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
    width: 26px; height: 42px;
    border: 1.5px solid var(--border-hover);
    border-radius: 13px;
    display: flex; justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(12px);opacity:0.3} }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── 10. Hero Particles (decorative) ────────────────────────── */
.hero-particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}

/* ── 11. Animations ─────────────────────────────────────────── */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 0.9s; }

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

/* Scroll-triggered reveals */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ── 12. About Section ──────────────────────────────────────── */
.about-section { background: var(--dark-2); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-image-wrap {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.about-img-main img {
    width: 100%; height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-badge {
    position: absolute;
    bottom: -2rem; right: -2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    width: 110px; height: 110px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-gold);
}
.about-badge-inner {
    text-align: center;
    color: var(--dark);
    line-height: 1.2;
}
.about-badge-inner i { font-size: 1.2rem; margin-bottom: 2px; }
.about-badge-inner strong { display: block; font-size: 1.3rem; font-weight: 700; }
.about-badge-inner span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; }

.about-img-accent {
    position: absolute;
    top: -1.5rem; right: -5rem;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 3px solid var(--dark-2);
}
.about-img-accent img { width: 100%; height: 240px; object-fit: cover; }

.about-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.about-text { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.9; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--dark-3);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.about-stat { text-align: center; }
.about-stat strong {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: inline;
}
.about-stat > span:first-of-type { color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.about-stat > span:last-child {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--cream-dim);
}
.about-feature i { color: var(--gold); font-size: 0.9rem; }

/* Chef Highlight */
.chef-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
}
.chef-img img {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}
.chef-quote { flex: 1; }
.chef-quote-icon { color: var(--gold); font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.chef-quote p { font-family: var(--font-serif); font-style: italic; color: var(--cream-dim); line-height: 1.7; margin-bottom: 0.75rem; }
.chef-quote strong { display: block; color: var(--gold); font-size: 0.95rem; }
.chef-quote span { font-size: 0.8rem; color: var(--text-muted); }

/* ── 13. Menu Section ───────────────────────────────────────── */
.menu-section { background: var(--dark); }

.menu-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: var(--dark-3);
    transition: all var(--transition-fast);
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold); }
.menu-tab.active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    border-color: transparent;
    font-weight: 600;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.menu-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.menu-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.menu-card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.menu-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img-wrap img { transform: scale(1.07); }

.menu-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 50px;
}

.veg-dot {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    width: 20px; height: 20px;
    border: 2px solid #4caf50;
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
}
.veg-dot i { font-size: 0.55rem; color: #4caf50; }
.veg-dot.nonveg { border-color: #e05252; }
.veg-dot.nonveg i { color: #e05252; }

.menu-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}
.menu-item-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}
.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}
.btn-add-order {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    transition: all var(--transition-fast);
}
.btn-add-order:hover { background: var(--gold); color: var(--dark); }

/* ── 14. Gallery Section ────────────────────────────────────── */
.gallery-section { background: var(--dark-2); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    gap: 0.5rem;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.5rem; color: var(--gold); }
.gallery-overlay span { font-size: 0.85rem; color: var(--cream-dim); text-align: center; padding: 0 1rem; }

/* ── 15. Testimonials ────────────────────────────────────────── */
.testimonials-section { position: relative; background: var(--dark); }
.testimonials-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-carousel-wrap {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    animation: fadeIn 0.5s ease;
}
.testimonial-card.active { display: flex; }
@keyframes fadeIn { from {opacity:0;transform:scale(0.97)} to {opacity:1;transform:scale(1)} }

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.testimonial-stars { color: var(--gold); font-size: 0.95rem; display: flex; gap: 3px; }
.testimonial-quote-icon { color: var(--border-hover); font-size: 2rem; }

.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--cream-dim);
    line-height: 1.8;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}
.testimonial-info strong { display: block; color: var(--cream); font-size: 0.95rem; }
.testimonial-info span { font-size: 0.82rem; color: var(--text-muted); }
.testimonial-info span i { font-size: 0.75rem; margin-right: 3px; }

/* Carousel controls */
.carousel-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--dark-4);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}
.carousel-btn:hover { background: var(--gold); color: var(--dark); border-color: transparent; }
.carousel-prev { left: -3.5rem; }
.carousel-next { right: -3.5rem; }

.carousel-dots {
    display: flex; gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 4px;
    background: var(--border);
    transition: all var(--transition-fast);
}
.carousel-dot.active { width: 24px; background: var(--gold); }

/* Google rating */
.google-rating {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.google-rating-inner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.google-stars { color: #fbbc04; display: flex; gap: 2px; font-size: 0.85rem; }
.google-rating-inner strong { color: var(--cream); }

/* ── 16. Reservation Section ────────────────────────────────── */
.reservation-section { position: relative; background: var(--dark-2); }
.reservation-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&q=60') center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

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

.reservation-info .section-title { margin-bottom: 1rem; }
.reservation-info p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }

.res-info-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.res-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--dark-3);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.res-info-card i { color: var(--gold); font-size: 1.2rem; margin-top: 3px; flex-shrink: 0; }
.res-info-card > div { display: flex; flex-direction: column; gap: 2px; }
.res-info-card strong { font-size: 0.82rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.07em; }
.res-info-card span, .res-info-card a { font-size: 0.9rem; color: var(--text-muted); }
.res-info-card a:hover { color: var(--gold); }

.res-note {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(201,169,110,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.res-note i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.res-note p { font-size: 0.85rem; color: var(--text-muted); }

/* Form */
.reservation-form-wrap {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}
.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 1.75rem;
    text-align: center;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cream-dim);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.form-group label i { color: var(--gold); font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--cream);
    font-size: 0.92rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    width: 100%;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a96e' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 10px; }
.form-group select option { background: var(--dark-3); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 90px; }

.field-error { font-size: 0.78rem; color: var(--error); min-height: 1em; }

/* Guest Counter */
.guest-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.guest-btn {
    width: 44px; height: 44px;
    background: var(--dark-4);
    color: var(--gold);
    font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}
.guest-btn:hover { background: var(--gold-glow); }
.guest-counter input {
    flex: 1;
    border: none;
    border-radius: 0;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}
.guest-counter input:focus { box-shadow: none; border: none; }

.form-privacy {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.form-privacy i { color: var(--gold); }

/* Halal note below reservation form */
.form-halal-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding: 0.6rem 1rem;
    background: rgba(76,175,125,0.07);
    border: 1px solid rgba(76,175,125,0.2);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: #4caf7d;
    line-height: 1.5;
}
.form-halal-note i { flex-shrink: 0; margin-top: 2px; }

/* Prayer time note in location section */
.hours-note-box {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(201,169,110,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.hours-note-box i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Spinner */
.btn-spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: var(--dark);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 17. Location Section ────────────────────────────────────── */
.location-section { background: var(--dark); }

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}
.location-map iframe { display: block; }

.location-details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition-fast);
}
.contact-card:hover { border-color: var(--border-hover); }

.contact-icon {
    width: 48px; height: 48px;
    background: var(--gold-glow);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-content h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--cream-dim); margin-bottom: 0.25rem; }
.contact-content p { font-size: 0.9rem; color: var(--text-muted); }
.contact-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; color: var(--gold); margin-top: 0.25rem;
}
.contact-link:hover { color: var(--gold-light); }
.contact-link-lg { font-size: 1.05rem; color: var(--cream); font-weight: 500; }
.contact-link-lg:hover { color: var(--gold); }
.contact-note { font-size: 0.8rem; color: var(--text-dim); margin-top: 3px; }

.hours-card {
    padding: 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.hours-card h3 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--cream-dim);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.hours-card h3 i { color: var(--gold); }
.hours-grid { display: flex; flex-direction: column; gap: 0.6rem; }
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row span { color: var(--text-muted); }
.hours-row strong { color: var(--cream); }
.hours-special span, .hours-special strong { color: var(--text-dim); font-size: 0.82rem; }
.hours-status {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: none;
}
.hours-status.open { background: rgba(76,175,125,0.12); color: #4caf7d; border: 1px solid rgba(76,175,125,0.3); display: block; }
.hours-status.closed { background: rgba(224,82,82,0.1); color: #e05252; border: 1px solid rgba(224,82,82,0.3); display: block; }

/* ── 18. Footer ─────────────────────────────────────────────── */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); }

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-main { font-size: 1.5rem; }
.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-2px); }

.footer-heading {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-hours li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.85rem; color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.footer-hours i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer-contact li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.85rem; color: var(--text-muted);
    margin-bottom: 1rem;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: var(--text-muted); font-size: 0.85rem; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 0.83rem; color: var(--text-dim); }

/* ── 19. Back to Top ─────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(201,169,110,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    pointer-events: none;
    z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ── 20. Lightbox ────────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; z-index: 9500;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active { display: flex; }

.lightbox-content { text-align: center; max-width: 90vw; max-height: 85vh; }
.lightbox-content img {
    max-width: 100%; max-height: 75vh;
    border-radius: var(--radius);
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
    object-fit: contain;
}
.lightbox-caption { color: var(--cream-dim); margin-top: 1rem; font-size: 0.9rem; }

.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    color: var(--cream-dim); font-size: 2.5rem; line-height: 1;
    transition: color var(--transition-fast);
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: var(--cream-dim);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--dark); }

/* ── 21. Responsive ─────────────────────────────────────────── */
@media (max-width: 1200px) {
    .about-img-accent { display: none; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 1024px) {
    :root { --section-py: 5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrap { max-width: 600px; margin: 0 auto; }
    .about-img-badge { bottom: -1rem; right: -1rem; }
    .reservation-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .carousel-prev { left: -1rem; }
    .carousel-next { right: -1rem; }
}

@media (max-width: 768px) {
    :root { --nav-h: 65px; }

    /* Nav mobile */
    .nav-links {
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(13,13,13,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-hamburger { display: flex; }
    .nav-link { padding: 0.9rem 1rem; width: 100%; }
    .nav-btn-cta { width: 100%; justify-content: center; margin-left: 0; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) { grid-column: span 2; }

    /* About stats */
    .about-stats { grid-template-columns: repeat(2, 1fr); }

    /* Form row */
    .form-row { grid-template-columns: 1fr; }

    /* Hero stats */
    .hero-stats { gap: 1rem; padding: 1.25rem; }
    .hero-stat-divider { display: none; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }

    /* Chef highlight */
    .chef-highlight { flex-direction: column; text-align: center; }
    .chef-img { margin: 0 auto; }

    /* Carousel */
    .carousel-prev { left: -0.25rem; }
    .carousel-next { right: -0.25rem; }
    .testimonial-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    :root { --section-py: 4rem; }
    .hero-cta-group { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(n) { grid-column: span 1; }
    .about-features { grid-template-columns: 1fr; }
    .reservation-form-wrap { padding: 1.5rem; }
}
