﻿@font-face {
    font-family: 'Bebas Neue';
    src: url('assets/fonts/BebasNeue-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-orange: #D99D4E;
    --brand-red: #A43E3E;
    --brand-brown: #2D1810;
    --cream: #F4E4C1;
    --light-cream: #FBF5E9;
    --white: #FFFFFF;
    --text-dark: #2D1810;
    --text-gray: #6B5D52;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Rubik', system-ui, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

body.modal-open {
    overflow: hidden;
}

body,
p,
li,
a,
button,
nav {
    font-family: 'Rubik', system-ui, Arial, sans-serif;
    text-transform: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', system-ui, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.top-banner {
    background: var(--brand-brown);
    color: var(--cream);
    text-align: center;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.top-banner p {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.top-banner-link {
    color: var(--white);
    background: var(--brand-red);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.top-banner-link:hover {
    background: var(--brand-orange);
    transform: translateY(-1px);
}

header {
    background: rgba(251, 245, 233, 0.65);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(45, 24, 16, 0.12);
    border-bottom: 1px solid rgba(217, 157, 78, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.18);
    background: rgba(251, 245, 233, 0.95);
}

@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
    header {
        background: rgba(251, 245, 233, 0.9);
    }
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 60px;
    height: 60px;
    background-image: url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(45, 24, 16, 0.2);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-brown);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-text::after {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--brand-red);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--brand-brown);
}

.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%), url('images/13.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    margin: 0 auto;
    max-width: 1400px;
}

.merch-hero {
    background: linear-gradient(135deg, rgba(164, 62, 62, 0.82) 0%, rgba(244, 228, 193, 0.88) 100%), url('images/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(164, 62, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -30px) scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.25;
    letter-spacing: -2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    background: var(--brand-red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 8px 40px rgba(164, 62, 62, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero .btn:hover {
    background: var(--white);
    color: var(--brand-red);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6), 0 12px 50px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--brand-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(164, 62, 62, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    will-change: transform;
}

.btn:hover {
    background: var(--brand-brown);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(164, 62, 62, 0.4);
}

.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.error {
    background: var(--brand-red);
    animation: shake 0.4s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.btn-secondary {
    background: transparent;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--brand-red);
    color: white;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.3rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-large .emoji {
    font-size: 1.5rem;
}

section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-brown);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

#location {
    background: var(--white);
    border-radius: 40px;
    padding: 6rem 2rem;
    margin: 4rem auto;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.opening-hours-card {
    background: var(--light-cream);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.05);
    border: 2px solid rgba(164, 62, 62, 0.1);
}

.opening-hours-card h3 {
    font-size: 1.8rem;
    color: var(--brand-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(107, 93, 82, 0.2);
    font-size: 1rem;
    color: var(--text-dark);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: var(--brand-brown);
    min-width: 90px;
}

.hours-list .time {
    text-align: right;
    font-family: monospace, sans-serif;
    font-size: 0.95rem;
    color: var(--text-gray);
    white-space: normal;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.weekly-special {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-brown) 100%);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(164, 62, 62, 0.3);
    position: relative;
    overflow: hidden;
}

.weekly-special::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.weekly-special h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: white;
    position: relative;
    z-index: 1;
}

.weekly-special .special-desc {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.weekly-special .special-follow {
    font-size: 1rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.weekly-special-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.8rem;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
    position: relative;
    z-index: 1;
}

.weekly-special-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.special-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.2rem auto 1.1rem;
    position: relative;
    z-index: 1;
}

.special-tags span {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-card {
    background: linear-gradient(to bottom, var(--light-cream) 0%, var(--white) 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.08);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(164, 62, 62, 0.2);
    background: linear-gradient(to bottom, var(--cream) 0%, var(--light-cream) 100%);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.schedule-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.08);
    border: 2px solid rgba(164, 62, 62, 0.08);
    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 24, 16, 0.12);
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-cream);
}

.schedule-header h3 {
    font-size: 1.6rem;
    color: var(--brand-brown);
}

.schedule-emoji {
    font-size: 1.8rem;
}

.schedule-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(107, 93, 82, 0.2);
    color: var(--text-dark);
    font-weight: 500;
    min-height: 42px;
    align-items: center;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list span:first-child {
    font-weight: 600;
    color: var(--brand-brown);
}

.schedule-list span:last-child {
    color: var(--text-gray);
    font-weight: 500;
    text-align: right;
    font-size: 0.95rem;
}

.schedule-list li span:last-child:empty::after {
    content: 'TBC';
    opacity: 0.5;
    font-style: italic;
    font-size: 0.9rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 2000;
}

.lightbox.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: min(90vw, 900px);
    max-height: 85vh;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    border-radius: 18px;
}

.lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--brand-brown);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.merch-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 3000;
}

.merch-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.merch-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.merch-modal-content {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    width: min(92vw, 640px);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.merch-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--brand-brown);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
}

.merch-contact-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.menu-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}

.menu-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10%, 10%);
    }
}

.menu-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
}

.menu-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-brown);
    margin-bottom: 0.8rem;
}

.menu-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.merch-section {
    background: var(--white);
    border-radius: 40px;
    padding: 6rem 2rem;
    margin: 4rem auto;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.merch-card {
    background: var(--light-cream);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 24, 16, 0.08);
    border: 1px solid rgba(164, 62, 62, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.merch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(45, 24, 16, 0.16);
}

.merch-image {
    height: 220px;
    background: linear-gradient(135deg, rgba(217, 157, 78, 0.8) 0%, rgba(251, 245, 233, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.merch-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.merch-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.merch-title h3 {
    font-size: 1.6rem;
    color: var(--brand-brown);
}

.merch-badge {
    background: var(--brand-red);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.merch-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.merch-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    color: var(--brand-brown);
    font-size: 0.95rem;
}

.merch-actions {
    margin-top: auto;
}

.merch-note {
    background: linear-gradient(135deg, var(--brand-brown) 0%, var(--brand-red) 100%);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 24, 16, 0.2);
}

.merch-note h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.merch-note p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    opacity: 0.9;
}

.order-online {
    text-align: center;
    margin-top: 4rem;
}

.order-online .delivery-note {
    margin-top: 1rem;
    color: var(--text-gray);
}

.testimonials-section {
    background: var(--light-cream);
    padding: 6rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(45, 24, 16, 0.05);
    text-align: left;
    position: relative;
    border: 1px solid rgba(217, 157, 78, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 24, 16, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--brand-orange);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: #FFB400;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: normal;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--brand-brown);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-author::before {
    content: '\2014';
    color: var(--brand-orange);
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
    margin: 0;
    max-width: none;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(45, 24, 16, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 48px rgba(45, 24, 16, 0.2);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.05rem;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Skeleton Loaders */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--light-cream) 25%,
        #f0e6d2 50%,
        var(--light-cream) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

img.loading {
    opacity: 0;
}

img.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    width: 100%;
    height: auto;
    background: var(--light-cream);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    font-size: 12rem;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    border-radius: 22px;
    z-index: 1;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-brown);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(164, 62, 62, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

/* About Section Gallery */
.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
    height: 100%;
}

.about-gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    box-shadow: 0 2px 10px rgba(45, 24, 16, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-gallery-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(164, 62, 62, 0.2);
    z-index: 2;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 157, 78, 0.9) 0%, rgba(164, 62, 62, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.about-gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.donate-section {
    background: var(--light-cream);
    padding: 6rem 2rem;
    text-align: center;
}

.donate-section + footer {
    margin-top: 3rem;
}

.donate-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(45, 24, 16, 0.1);
}

.donate-content h2 {
    font-size: 3rem;
    color: var(--brand-brown);
    margin-bottom: 1.5rem;
}

.donate-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.booking-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto 2rem;
    max-width: 520px;
}

.booking-points span {
    background: var(--light-cream);
    color: var(--brand-brown);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.gfm-embed-wrapper {
    margin: 0 auto 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: var(--white);
}

.gfm-embed {
    width: 100%;
}

.impact-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 0 3rem;
}

.impact-badge {
    background: var(--light-cream);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(217, 157, 78, 0.15);
    transition: all 0.3s ease;
}

.impact-badge:hover {
    background: var(--cream);
    transform: translateY(-5px);
    border-color: rgba(217, 157, 78, 0.3);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.impact-label {
    font-size: 0.95rem;
    color: var(--brand-brown);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donate-cta {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 2.5rem 0 0;
    font-weight: 700;
}

.event-services {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(45, 24, 16, 0.08);
}

.event-services h3 {
    text-align: center;
    color: var(--brand-brown);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-cream);
    border-radius: 15px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-item strong {
    display: block;
    color: var(--brand-brown);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(45, 24, 16, 0.08);
}

#successMessage,
.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

#successMessage h3,
.success-message h3 {
    font-size: 2rem;
    color: var(--brand-brown);
    margin-bottom: 1rem;
}

#successMessage p,
.success-message p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--brand-brown);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream);
    border-radius: 12px;
    font-family: 'Rubik', system-ui, Arial, sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--light-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    background: var(--white);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--brand-red);
    background: #fff5f5;
}

.field-error {
    display: block;
    color: var(--brand-red);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    font-weight: 500;
}

.form-error-message {
    background: #fff5f5;
    border-left: 3px solid var(--brand-red);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    color: var(--brand-red);
    font-size: 0.95rem;
}

.social-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-brown);
    margin-bottom: 2rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.08);
    will-change: transform;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(164, 62, 62, 0.15);
}

/* Instagram specific styles */
.social-card:nth-of-type(1):hover {
    border-color: #E1306C;
}

.social-card:nth-of-type(1):hover .social-icon {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

/* TikTok specific styles */
.social-card:nth-of-type(2):hover {
    border-color: #00F2EA;
}

.social-card:nth-of-type(2):hover .social-icon {
    background: linear-gradient(135deg, #00F2EA 0%, #FF0050 100%);
    color: white;
}

/* Facebook specific styles */
.social-card:nth-of-type(3):hover {
    border-color: #1877F2;
}

.social-card:nth-of-type(3):hover .social-icon {
    background: #1877F2;
    color: white;
}

.social-icon {
    font-size: 1.8rem;
    color: var(--brand-red);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.social-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(164, 62, 62, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(164, 62, 62, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

footer {
    background: var(--brand-brown);
    color: var(--cream);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.footer-tagline {
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: 0.75rem;
}

.footer-credit {
    font-size: 0.95rem;
    color: rgba(244, 228, 193, 0.85);
}

.footer-credit a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    text-decoration: underline;
}

nav {
    position: relative;
}

.page-shell {
    transition: filter 0.25s ease;
}

.page-shell.is-blurred {
    filter: blur(8px);
}

nav a:focus-visible,
.btn:focus-visible,
.mobile-toggle:focus-visible,
.social-card:focus-visible {
    outline: 3px solid rgba(164, 62, 62, 0.35);
    outline-offset: 3px;
}

.menu-card {
    cursor: default;
}

.menu-card.lightbox-trigger {
    cursor: pointer;
}

.menu-card.lightbox-trigger:focus-visible {
    outline: 3px solid rgba(217, 157, 78, 0.5);
    outline-offset: 4px;
}

@media (max-width: 1200px) {
    .location-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .hero {
        padding: 6rem 1.5rem 5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section {
        padding: 3.5rem 1.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .stat-item {
        padding: 1.75rem 1.25rem;
    }

    .stat-number {
        font-size: 3.2rem;
        margin-bottom: 0.6rem;
    }

    .stat-label {
        font-size: 0.95rem;
        letter-spacing: 0.8px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-visual {
        height: auto;
        min-height: 400px;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .about-gallery-item {
        border-radius: 12px;
    }

    .gallery-icon {
        font-size: 1.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    nav {
        padding: 0 1.25rem;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        gap: 1rem;
        background: rgba(251, 245, 233, 0.98);
        padding: 1rem 1.25rem;
        border-radius: 18px;
        box-shadow: 0 15px 40px rgba(45, 24, 16, 0.18);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    #navMenu.active {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav a::after {
        display: none;
    }


    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        background: var(--light-cream);
        border: 1px solid rgba(164, 62, 62, 0.2);
    }

    .mobile-toggle.is-open {
        background: var(--cream);
    }

    .hero {
        border-radius: 0 0 24px 24px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .hours-list .time {
        text-align: left;
    }

    .menu-image {
        height: 200px;
        font-size: 4rem;
    }

    .merch-image {
        height: 200px;
        font-size: 4rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        margin: 0.35rem auto;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .top-banner {
        padding: 0.6rem 1rem;
    }

    .top-banner p {
        text-align: center;
    }

}

@media (max-width: 520px) {
    section {
        padding: 4.5rem 1.25rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .opening-hours-card {
        padding: 2rem 1.5rem;
    }

    .hours-list .time {
        font-size: 0.9rem;
        line-height: 1.4;
        word-break: break-word;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .merch-section {
        padding: 4.5rem 1.25rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form {
        padding: 2.25rem 1.75rem;
    }

    .donate-content {
        padding: 2.25rem 1.5rem;
    }

    .impact-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .impact-badge {
        padding: 1.25rem 0.75rem;
    }

    .impact-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .impact-label {
        font-size: 0.85rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }

    .stats-section {
        padding: 3rem 1rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 0.6px;
    }
}

.faq-section {
  margin-top: 28px;
}

.faq-title {
  text-align: center;
  margin: 0 0 14px;
}

.faq-group {
  max-width: 900px;
  margin: 0 auto 18px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.faq-group-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.faq-item {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 10px 0;
}

.faq-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 10px 0;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "＋";
  float: right;
  opacity: 0.85;
}

.faq-item[open] summary::after {
  content: "－";
}

.faq-item p {
  margin: 0 0 10px;
  line-height: 1.55;
  opacity: 0.95;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(160, 60, 60, 0.35);
  outline-offset: 6px;
  border-radius: 12px;
}

@media (max-width: 520px) {
  .faq-group {
    padding: 14px;
    border-radius: 18px;
  }

  .faq-item summary {
    padding: 12px 0;
  }

  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .about-gallery-item {
    border-radius: 10px;
  }

  .about-visual {
    min-height: 300px;
  }

  .gallery-icon {
    font-size: 1.5rem;
  }
}
