:root {
    --primary: #d97706; /* Amber/Orange */
    --primary-hover: #b45309;
    --bg-dark: #0f172a; /* Slate 900 */
    --bg-darker: #020617; /* Slate 950 */
    --bg-card: #1e293b; /* Slate 800 */
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(217, 119, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

.pulse {
    animation: pulse-shadow 2s infinite;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(16px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.footer-brand .logo-img {
    height: 80px;
    margin-bottom: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.6) 50%, rgba(2, 6, 23, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5rem;
}

.hero-content .badge {
    background-color: rgba(217, 119, 6, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    text-wrap: balance;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

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

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.warning-text {
    background-color: rgba(220, 38, 38, 0.1);
    color: #ef4444;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 6, 0.3);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Menu Highlights */
.menu-preview {
    padding: 6rem 0;
    background-color: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.menu-list {
    list-style: none;
}

.menu-list li {
    padding: 1.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item .name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-item .price {
    font-weight: 800;
    color: var(--primary);
}

.desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* Footer */
footer {
    background-color: var(--bg-card);
    padding: 4rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-contact p, .footer-hours p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--primary);
}

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

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.5);
    z-index: 100;
    display: none;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-shadow 2s infinite;
}

.fab:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-btn {
        display: none;
    }

    .fab {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* Google Reviews Section */
.reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-top: 2rem;
    text-align: left;
    scrollbar-width: none; /* Hide standard scrollbar for clean carousel look */
}

.reviews-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari/Webkit */
}

.review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author-name {
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
}

.review-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
}

/* Nav Button Hover Effects */
.review-nav-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-nav-btn:hover {
    background-color: var(--primary-hover) !important;
    transform: scale(1.1) translateY(0);
    box-shadow: 0 6px 15px rgba(217, 119, 6, 0.4) !important;
}

.review-nav-btn:active {
    transform: scale(0.95);
}

/* Wait Screen Utility Styles (Vanilla fallbacks for Tailwind classes) */
.hidden { display: none !important; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-\[1000\] { z-index: 1000; }
.z-10 { z-index: 10; }
.bg-slate-950 { background-color: #020617; }
.bg-slate-950\/75 { background-color: rgba(2, 6, 23, 0.75); }
.bg-slate-900\/85 { background-color: rgba(15, 23, 42, 0.85); }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: #ffffff; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-emerald-400 { color: #34d399; }
.text-orange-400 { color: #fb923c; }
.text-rose-400 { color: #f87171; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-2xl { font-size: 1.5rem; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-mono { font-family: monospace; }
.tracking-wide { letter-spacing: 0.025em; }
.leading-relaxed { line-height: 1.625; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.min-w-full { min-width: 100%; }
.min-h-full { min-height: 100%; }
.max-w-md { max-width: 28rem; }
.overflow-hidden { overflow: hidden; }
.opacity-30 { opacity: 0.3; }
.opacity-75 { opacity: 0.75; }
.pointer-events-none { pointer-events: none; }
.top-1/2 { top: 50%; }
.left-1/2 { left: 50%; }
.-translate-x-1/2 { transform: translateX(-50%); }
.-translate-y-1/2 { transform: translateY(-50%); }
.absolute.top-1\/2.left-1\/2.-translate-x-1\/2.-translate-y-1\/2 { transform: translate(-50%, -50%); }
.w-\[178vh\] { width: 178vh; }
.h-\[56\.25vw\] { height: 56.25vw; }
.backdrop-blur-\[2px\] { backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: dashed; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-emerald-500 { border-color: #10b981; }
.border-rose-500 { border-color: #ef4444; }
.bg-emerald-500\/20 { background-color: rgba(16, 185, 129, 0.2); }
.bg-orange-500\/20 { background-color: rgba(249, 115, 22, 0.2); }
.bg-rose-500\/20 { background-color: rgba(239, 68, 68, 0.2); }
.bg-orange-600 { background-color: #ea580c; }
.bg-orange-600:hover { background-color: #d84f0a; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-\[0_0_20px_rgba\(16\,185\,129\,0\.3\)\] { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
.shadow-\[0_0_20px_rgba\(239\,68\,68\,0\.3\)\] { box-shadow: 0 0 20px rgba(239, 68, 68, 0.3); }
.gap-3 { gap: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.border-t-4 { border-top-width: 4px; border-top-style: solid; }
.border-b-4 { border-bottom-width: 4px; border-bottom-style: solid; }
.border-orange-500 { border-color: #f97316; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }

/* Animations */
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.animate-spin {
    animation: spin 1s linear infinite;
}

#menuSearchInput:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(217, 119, 6, 0.4) !important;
}
