:root {
    /* Colors */
    --primary-color: #D32F2F;
    /* Cherry Red */
    --primary-dark: #B71C1C;
    --secondary-color: #FFFDD0;
    /* Cream */
    --secondary-light: #fffff0;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --white: #ffffff;
    --black: #000000;
    --border-color: #e0e0e0;
    --success-color: #2e7d32;
    --error-color: #c62828;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-highlight {
    color: var(--primary-color);
}

.my-5 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--spacing-md) 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-list a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #222;
    color: var(--white);
    padding: 6rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('images/hero-bg.png');
    /* Will fallback or need check */
    background-size: cover;
    background-position: center;
}

/* Fallback if image missing or logic in JS to swap */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.status-badge {
    display: inline-block;
    background-color: var(--success-color);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.status-badge.closed {
    background-color: var(--error-color);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.info-card {
    background: var(--secondary-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: var(--spacing-sm);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .site-nav {
        display: none;
        /* Hidden by default on mobile, toggled via JS */
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* When Mobile Menu Active logic (to be added) */
}

/* Utility to hide/show */
/* Page Headers */
.page-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Menu Layout with Images */
.menu-category {
    margin-bottom: 4rem;
}

.menu-category h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.menu-item-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 1rem;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.item-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: auto;
}

/* Responsive Mobile Nav */
@media (max-width: 768px) {
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .site-nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* About Page */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.text-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.check-list {
    margin-top: 1.5rem;
}

.check-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.shadow-lg {
    box-shadow: var(--shadow-md);
}

.rounded-img {
    border-radius: var(--radius-md);
}

.gallery-strip {
    background: #f9f9f9;
    padding: 4rem 0;
    margin-top: 4rem;
    text-align: center;
}

.gallery-strip h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Contact Page */
.contact-list {
    margin-bottom: 2rem;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-list .icon {
    font-size: 1.5rem;
}

.hours-block {
    background: var(--secondary-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
}

.day-time {
    text-align: right;
}

.closed-text {
    color: var(--error-color);
}

.map-container iframe {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-height: 400px;
}