:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --accent-red: #ff0040;
    --accent-yellow: #ffcc00;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.text-center {
    text-align: center;
}

.mb-large {
    margin-bottom: 4rem;
}

/* Header & Nav */
.main-header {
    background-color: #121212;
    /* Solid color, no transparency */
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: row;
    /* Side by side */
    align-items: center;
    gap: 5px;
    /* Reduced gap */
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-heading);
    color: var(--accent-yellow);
    font-size: 1.5rem;
    /* Smaller text */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.main-nav a:hover {
    color: var(--accent-yellow);
}

/* Hero Section */
.hero-section {
    height: 90vh;
    /* Taller hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Use the generated image here */
    background: url('assets/hero_background_food.png');
    background-size: cover;
    background-position: center bottom;
    /* Adjusted to show more of the bottom as needed, or center top */
    background-color: #111;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-top-text {
    color: var(--accent-yellow);
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 0.9rem;
}

.btn-red {
    background-color: var(--accent-red);
    color: #fff;
    border: 2px solid var(--accent-red);
}

.btn-red:hover {
    background-color: #d60036;
    border-color: #d60036;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: #000;
    border: 2px solid var(--accent-yellow);
}

.btn-yellow:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

/* Action Bar */
.action-bar {
    background-color: var(--accent-red);
    padding: 1.2rem 0;
}

.action-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.action-item {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: opacity 0.3s;
}

.action-item:hover {
    opacity: 0.8;
}

/* Sections */
.content-section {
    padding: 6rem 0;
}

.section-heading {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.sub-heading {
    color: var(--accent-yellow);
    font-weight: 700;
    /* Corrected formatting */
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.heading-underline {
    height: 3px;
    width: 60px;
    background-color: var(--accent-yellow);
    margin: 0 auto 2rem auto;
}

.section-text {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.service-details-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
}

.service-details-list li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.service-details-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-details-list strong {
    color: var(--accent-yellow);
    font-weight: 600;
}

.service-sub-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: left;
}

.service-sub-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-sub-info p {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.text-red {
    color: var(--accent-red);
    font-weight: 700;
}

.link-yellow {
    color: var(--accent-yellow);
    text-decoration: underline;
    font-weight: 700;
}

.no-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.no-bullet-list li {
    margin-bottom: 0.3rem;
}

.mt-2 {
    margin-top: 1rem;
}

.text-yellow {
    color: var(--accent-yellow);
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background-color: #080808;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-heading-left {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.mission-list {
    list-style: none;
    color: #fff;
}

.mission-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.mission-list i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.chef-quote {
    border-left: 4px solid var(--accent-yellow);
    padding-left: 1.5rem;
    margin-top: 2rem;
    font-style: italic;
    color: #f0f0f0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.chef-quote footer {
    display: block;
    margin-top: 1rem;
    color: var(--accent-yellow);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Menu Section */
.menu-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.menu-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    color: #fff;
    font-size: 1rem;
}

.menu-legend span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-legend i {
    color: var(--accent-yellow);
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-size: 2.2rem;
    border-bottom: 2px solid var(--accent-red);
    /* Red underline for categories */
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    color: var(--accent-yellow);
}

.menu-grid {
    display: flex;
    flex-direction: column;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    /* Slightly wider cards */
    gap: 2rem;
}

.menu-item {
    background-color: var(--bg-card);
    padding: 0;
    /* Remove padding to let image flush with edges if we want, or keep it. Let's make it card style */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    /* For image radius */
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}



.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-yellow);
    /* Yellow border on hover */
}

.item-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .item-image {
    transform: scale(1.1);
}

.item-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    align-items: baseline;
}

.item-id {
    color: var(--accent-yellow);
    font-weight: 700;
    margin-right: 0.3rem;
    font-size: 0.9rem;
}

.item-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.item-price {
    font-size: 1.1rem;
    color: var(--accent-yellow);
    font-weight: 700;
}

.item-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Footer */
.main-footer {
    padding: 4rem 0 2rem;
    background-color: #080808;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-info h3,
.footer-hours h3,
.footer-transport h3 {
    color: var(--accent-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #fff;
}

.contact-details p {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--accent-red);
    width: 20px;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
    font-size: 1.1rem;
}

.closed-label {
    color: var(--accent-red);
    font-weight: 700;
}

.holiday-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Contact Form Section */
.form-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #333;
}

.form-heading {
    font-size: 1.8rem;
    color: var(--accent-red);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-heading i {
    color: #e0e0e0;
    /* Light envelope icon color like reference */
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

/* Footer Adjustments */
.footer-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 equal columns */
    max-width: 1200px;
    /* Allow more width for 3 columns */
    margin: 0 auto 3rem auto;
    gap: 2rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Update Menu Item Styles for ID and Allergens */
.item-title-group {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.item-id {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 30px;
}

.item-size {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: 5px;
}

.item-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.item-allergens {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Legal Info Section */
.legal-info-section {
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.legal-heading {
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.doc-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.doc-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Allergen Legend */
.allergen-legend {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
}

.allergen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.allergen-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.allergen-item .code {
    background-color: var(--accent-red);
    color: #fff;
    font-weight: 700;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.allergen-item .desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}