:root {
    --bg-dark: #0d0d0d;
    --bg-card: #161616;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --accent-flame: #ff5100;
    --accent-gold: #ff9900;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-flame);
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent-flame);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-flame);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.hero h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-flame);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 81, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

/* Menu Section */
.menu-section {
    padding: 4rem 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-flame);
    margin: 0.5rem auto 0;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-flame) var(--bg-dark);
    -webkit-overflow-scrolling: touch; /* Butter smooth mobile scrolling */
}

.filter-bar::-webkit-scrollbar {
    height: 6px;
}

.filter-bar::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.filter-bar::-webkit-scrollbar-thumb {
    background-color: var(--accent-flame);
    border-radius: 3px;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover:not(.active) {
    border-color: var(--accent-flame);
    color: var(--accent-flame);
}

.filter-btn.active {
    background-color: var(--accent-flame);
    color: var(--text-light);
    border-color: var(--accent-flame);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 1; /* Handled gracefully during element regeneration */
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.menu-item-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.menu-item p {
    flex-grow: 1;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

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

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1 1 300px;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-image {
    flex: 1 1 300px;
    max-width: 500px;
}

.image-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    aspect-ratio: 16/9;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13,13,13,0.3), rgba(13,13,13,0.7));
    pointer-events: none;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.contact-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    flex: 1 1 250px;
    text-align: left;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.info-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accent {
    display: inline-block;
    background-color: var(--accent-flame);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-flame);
    box-shadow: 0 4px 15px rgba(255, 81, 0, 0.3);
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent-flame);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.contact-email {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
}

.contact-email a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    text-decoration: underline;
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .filter-bar {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .main-nav {
        display: none; /* Can be paired later with a JS mobile hamburger toggle */
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}