/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #dc3545;
    --red-dark: #c82333;
    --gold: #ffc107;
    --gold-dark: #e0a800;
    --ink: #333;
    --muted: #666;
    --bg: #f8f9fa;
    --heading: 'Playfair Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    overflow-x: hidden;
    background: var(--bg);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 3px solid var(--gold);
    padding: 0.75rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

/* Wordmark logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-mark {
    background: var(--red);
    color: #fff;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 8px;
    line-height: 1;
    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--ink);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.05;
}

.logo-text small {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--muted);
    text-transform: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 14px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--red);
    background: #fff3cd;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--red);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
    padding: 0 1rem;
}

.hero-content {
    max-width: 820px;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-title {
    font-family: var(--heading);
    font-size: 4.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-title::after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1.25rem auto 0;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--gold);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-trust span i {
    color: var(--gold);
    margin-right: 0.4rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gold);
    color: #212529;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: var(--red);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Section Styles */
section {
    padding: 70px 0;
    background: #fff;
}

.section-title {
    font-family: var(--heading);
    font-size: 2.7rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    margin: 0 auto 3rem;
    max-width: 640px;
    font-weight: 500;
}

/* About Section */
.about { background: var(--bg); }

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

.about-text { padding: 2rem 0; }

.section-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
    border-color: var(--red);
}

.feature i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: var(--ink);
    font-weight: 700;
}

.feature p {
    color: var(--muted);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

/* Branded apron patch overlaid on the waiter image */
.apron-logo {
    position: absolute;
    top: 28%;
    left: 14%;
    transform: rotate(-4deg);
    background: var(--red);
    color: #fff;
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    background: linear-gradient(135deg, #4a4a4a, #6a6a6a);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Allergen Tags */
.allergen-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: #28a745;
    font-weight: 600;
    padding: 2px 6px;
    background: #e8f5e9;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Menu Section */
.menu { background: var(--bg); }

.menu-price-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    max-width: 360px;
    margin: 0 auto 3rem;
    padding: 1.25rem 2rem;
    border-radius: 14px;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 22px rgba(220, 53, 69, 0.25);
    text-align: center;
}

.menu-price-banner .price-from {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}

.menu-price-banner .price-amount {
    font-family: var(--heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.menu-price-banner .price-amount small {
    font-family: 'Inter', sans-serif;
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--red);
    background: #fff;
    color: var(--red);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: inherit;
}

.category-btn.active,
.category-btn:hover {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: #fff;
    border-radius: 15px;
    border: 2px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
    border-color: var(--red);
}

.menu-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item h3 {
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.menu-description {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.menu-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--red);
    margin-top: auto;
}

.menu-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.menu-note a {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}

.menu-note a:hover { text-decoration: underline; }

/* Events Section */
.events { background: #fff; }

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

.event-card {
    text-align: center;
    padding: 2.5rem 1.75rem;
    background: var(--bg);
    border-radius: 15px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.2);
    border-color: var(--red);
}

.event-card i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.event-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-weight: 700;
}

.event-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Event process */
.event-process {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    border: 2px solid var(--gold);
    border-radius: 18px;
    padding: 3rem 2rem;
    margin-bottom: 2.5rem;
}

.event-process-title {
    font-family: var(--heading);
    text-align: center;
    color: var(--red);
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.35);
}

.process-step h4 {
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #6a5a2a;
    font-size: 0.9rem;
}

.events-cta { text-align: center; }

/* Services Section */
.services {
    background: var(--bg);
    padding: 80px 0;
}

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

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 15px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
    border-color: var(--red);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--ink);
    font-weight: 700;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-details {
    color: var(--ink);
    font-size: 0.9rem;
    margin-top: auto;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i { font-size: 1.2rem; }

.allergen-notice {
    background: #fff3cd;
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.allergen-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-weight: 700;
}

.allergen-notice h3 i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.allergen-notice p {
    color: #856404;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.allergen-notice p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery { background: #fff; }

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
    border-color: var(--red);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

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

.gallery-placeholder {
    width: 100%;
    height: 250px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    background: linear-gradient(135deg, #5a4a3a, #7a6a5a);
}

/* Contact Section */
.contact { background: var(--bg); }

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

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
    border-color: var(--red);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--red);
    margin-top: 0.2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--ink);
    font-weight: 700;
}

.contact-item p {
    color: var(--muted);
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fff;
    color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* Footer */
.footer {
    background: var(--red);
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-mark {
    background: var(--gold);
    color: var(--red);
}

.footer-logo .logo-text {
    color: #fff;
    font-size: 1.5rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #fff;
    opacity: 0.9;
}

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 0.5rem; }

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover { color: var(--gold); }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--gold);
}

/* Stats Band */
.stats-band {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: var(--heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* Testimonials */
.testimonials { background: var(--bg); }

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

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.25rem 2rem;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(220, 53, 69, 0.15);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-quote {
    color: #444;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-author {
    font-family: var(--heading);
    font-weight: 700;
    color: var(--red);
    font-size: 1.05rem;
}

.testimonial-meta {
    color: var(--muted);
    font-size: 0.85rem;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    z-index: 1500;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes waPulse {
    0% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Accessibility polish */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        border-top: 3px solid var(--gold);
        gap: 0.5rem;
    }

    .nav-menu.active { left: 0; }

    .nav-toggle { display: flex; }

    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.3rem; }
    .hero-content { max-width: 90%; padding: 2rem; }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; line-height: 1.2; }
    .hero-subtitle { font-size: 1.1rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-content { padding: 1.5rem; max-width: 95%; }

    .section-title { font-size: 2rem; line-height: 1.2; }
    .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }

    .menu-items { grid-template-columns: 1fr; }
    .menu-item { max-width: 400px; margin: 0 auto; width: 100%; }

    .about-features { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-content { gap: 2rem; }

    .logo-text { font-size: 1.2rem; }
    .logo-text small { display: none; }

    .btn { padding: 12px 28px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }

    .hero-content { padding: 1.2rem; max-width: 98%; }
    .hero-title { font-size: 1.9rem; line-height: 1.1; }
    .hero-subtitle { font-size: 1rem; }
    .hero-description { font-size: 0.95rem; margin-bottom: 1.5rem; }

    .section-title { font-size: 1.7rem; margin-bottom: 0.8rem; }
    .section-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; }

    .btn { padding: 11px 22px; font-size: 0.8rem; width: 100%; max-width: 240px; }

    .menu-categories { flex-direction: column; align-items: center; gap: 0.8rem; }
    .category-btn { width: 100%; max-width: 220px; }

    .menu-item { max-width: 320px; }

    .about-img, .about-placeholder { height: 300px; }
    .gallery-item img { height: 200px; }

    .event-process { padding: 2rem 1.25rem; }
    .services-grid, .events-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1.5rem; }

    .allergen-notice { padding: 1.5rem; }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .contact-form { padding: 1.5rem; }
}
