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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    color: #7A4A30;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #34495E;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #34495E;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-brand .logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
    opacity: 1;
    visibility: visible;
    filter: none;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.brand-text h1 {
    font-size: 1.8rem;
    color: #7A4A30;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    display: block;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #7A4A30, #FF8C00);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #7A4A30;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    background: linear-gradient(135deg, #7A4A30, #FF8C00);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 74, 48, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 74, 48, 0.4);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

/* Desktop Navigation - Show nav menu, hide toggle */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        opacity: 1;
        visibility: visible;
        transition: none;
        gap: 3rem;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 2.5rem;
        margin: 0;
        padding: 0;
    }
    
    .nav-actions {
        margin-top: 0;
    }
    
    .nav-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    /* Desktop Footer Enhancements */
    .footer {
        padding: 5rem 0 3rem;
        margin-top: 5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
        margin-bottom: 3rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-brand p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-details p,
    .hours-details p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .footer-links li a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .footer-bottom {
        padding-top: 3rem;
        margin-top: 3rem;
    }
    
    .footer-bottom p {
        font-size: 0.95rem;
    }
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #7A4A30;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.hero-bg-1 {
    background-image: url('images/hero/1.jpg');
    opacity: 1;
}

.hero-bg-2 {
    background-image: url('images/hero/2.jpg');
}

.hero-bg-3 {
    background-image: url('images/hero/3.jpg');
}

.hero-background:hover .hero-bg-1 {
    opacity: 0;
}

.hero-background:hover .hero-bg-2 {
    opacity: 1;
}

.hero-background:hover .hero-bg-3 {
    opacity: 0;
}

/* Animation for background rotation */
@keyframes backgroundRotate {
    0% { opacity: 1; }
    33% { opacity: 0; }
    66% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-bg-1 {
    animation: backgroundRotate 15s infinite;
}

.hero-bg-2 {
    animation: backgroundRotate 15s infinite 5s;
}

.hero-bg-3 {
    animation: backgroundRotate 15s infinite 10s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 74, 48, 0.8) 0%, rgba(34, 139, 34, 0.8) 100%);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    padding: 0 2rem;
    z-index: 3;
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0.5rem auto;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    line-height: 1.1;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #B8860B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    max-width: 700px;
    color: white;
    opacity: 0.95;
    margin-left: auto;
    margin-right: auto;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #7A4A30;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #FF8C00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(122, 74, 48, 0.4);
}

.cta-button.secondary {
    background: #34495E;
}

.cta-button.secondary:hover {
    background: #2C3E50;
    box-shadow: 0 10px 25px rgba(52, 73, 94, 0.4);
}

.button-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #B8860B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-top: 0.5rem;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: #7A4A30;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: #2c2c2c;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card h3 {
    color: #7A4A30;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.about-story {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-content h3 {
    color: #7A4A30;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.story-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #2c2c2c;
}

.highlight-icon {
    font-size: 1.2rem;
}

/* Specialties Section */
.specialties {
    padding: 100px 0;
    background: white;
}

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

.specialty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.specialty-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(122, 74, 48, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-content {
    padding: 2rem;
}

.card-content h4 {
    color: #7A4A30;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f8f9fa;
    color: #7A4A30;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: white;
}

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

.menu-btn {
    padding: 12px 30px;
    border: 2px solid #7A4A30;
    background: transparent;
    color: #7A4A30;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-btn.active,
.menu-btn:hover {
    background: #7A4A30;
    color: white;
}

.menu-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.menu-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* À La Carte Menu */
.menu-category {
    margin-bottom: 4rem;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #7A4A30;
}

.menu-category-image {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-category:hover .menu-category-image img {
    transform: scale(1.1);
}

.menu-category h3 {
    color: #7A4A30;
    font-size: 1.8rem;
    margin: 0;
    flex: 1;
}

.menu-items {
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.item-image {
    flex-shrink: 0;
}

.menu-item-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
    display: block;
    background: #f8f9fa;
}

.menu-item:hover .menu-item-img {
    border-color: #7A4A30;
    transform: scale(1.05);
}

.item-content {
    flex: 1;
}

.menu-item:hover {
    background: #f8f9fa;
    padding-left: 1rem;
    border-radius: 5px;
}

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

.item-name {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
}

.item-price {
    font-weight: 700;
    color: #7A4A30;
    font-size: 1.1rem;
}

.item-description {
    color: #666;
    line-height: 1.6;
    margin-left: 0;
}

.item-description em {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    display: block;
    margin-top: 0.3rem;
    padding-left: 0.5rem;
    border-left: 2px solid #e0e0e0;
}

/* Lunch Preview Section */
.lunch-preview {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lunch-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.lunch-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lunch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lunch-card.featured {
    background: linear-gradient(135deg, #7A4A30, #FF8C00);
    color: white;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.currency {
    font-size: 1.8rem;
    font-weight: 600;
    opacity: 0.9;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.lunch-card.featured .card-content h3 {
    color: white;
}

.card-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.lunch-card.featured .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature .icon {
    font-size: 1.5rem;
}

.feature span:last-child {
    font-weight: 500;
    font-size: 1rem;
}

.card-footer {
    margin-top: auto;
}

.btn-primary {
    background: #7A4A30;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #a0121a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 74, 48, 0.3);
}

.lunch-card.featured .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lunch-card.featured .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.lunch-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lunch-card:not(.featured) {
    background: white;
    padding: 1.5rem;
}

.time-info,
.location-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-info .icon,
.location-info .icon {
    font-size: 1.5rem;
    color: #7A4A30;
    margin-top: 0.2rem;
}

.time-details h4,
.location-details h4 {
    color: #7A4A30;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.time-details p,
.location-details p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.lunch-card:not(.featured) h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lunch-card:not(.featured) p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.btn-outline {
    background: transparent;
    color: #7A4A30;
    padding: 0.75rem 1.5rem;
    border: 2px solid #7A4A30;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #7A4A30;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 74, 48, 0.3);
}

/* Menu Preview Section */
.menu-preview {
    padding: 100px 0;
    background: white;
}

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

.menu-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.menu-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Category image styles */
.category-image {
    height: 150px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 2rem;
    text-align: center;
}

.category-content h4 {
    color: #7A4A30;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-content p {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.category-count {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

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


/* Reservation Section */
.reservation-section {
    padding: 80px 0;
    background: white;
}

.reservation-content {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-info h2 {
    color: #7A4A30;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.reservation-info h3 {
    color: #2c2c2c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.reservation-info p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.reservation-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7A4A30;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-form .cta-button {
    width: 100%;
    margin-top: 1rem;
    padding: 15px 30px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #7A4A30;
}

.info-card.primary {
    background: linear-gradient(135deg, #7A4A30, #FF8C00);
    color: white;
    grid-column: 1 / -1;
    border: none;
}

.info-card.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(122, 74, 48, 0.3);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    text-align: left;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-align: left;
    color: #7A4A30;
}

.info-card.primary .card-content h3 {
    color: white;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    text-align: left;
}

.info-card.primary .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    background: #7A4A30;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: #a0121a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 74, 48, 0.3);
}

.btn-primary.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.info-card.primary .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.info-card.primary .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #7A4A30;
    padding: 0.6rem 1.2rem;
    border: 2px solid #7A4A30;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    background: #7A4A30;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 74, 48, 0.3);
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.closed {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.85rem;
}

.time {
    color: #7A4A30;
    font-weight: 600;
    font-size: 0.85rem;
}

.info-card.primary .day {
    color: white;
}

.info-card.primary .time {
    color: rgba(255, 255, 255, 0.9);
}

.info-card.primary .hours-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.note {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.info-card.primary .note {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.note .icon {
    font-size: 0.8rem;
}

.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    color: #7A4A30;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7A4A30;
    box-shadow: 0 0 0 3px rgba(122, 74, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.form-note .icon {
    font-size: 1rem;
}

.message-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.message-form .form-group {
    display: flex;
    flex-direction: column;
}

.message-form .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.message-form .form-group input,
.message-form .form-group textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.message-form .form-group input:focus,
.message-form .form-group textarea:focus {
    outline: none;
    border-color: #7A4A30;
}

.message-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.message-form .cta-button {
    width: 100%;
    margin-top: 1rem;
    padding: 15px 30px;
}

/* Page Hero */
/* Lunch Page Hero */
.lunch-page .page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* À La Carte Page Hero */
.alacarte-page .page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(122, 74, 48, 0.1) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-hero p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* Menu Categories Grid */
.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.menu-category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Category image styles removed - no longer using images */

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    color: #7A4A30;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Info Cards */
.lunch-info, .menu-info {
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, #7A4A30, #FF8C00);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(122, 74, 48, 0.3);
}

.info-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hours-info {
    margin: 1.5rem 0;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hours-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    opacity: 0.95;
}

.menu-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.highlight-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Menu Modal */
.menu-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: transparent;
    margin: 2% auto;
    padding: 0;
    border-radius: 0;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    box-shadow: none;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-modal:hover {
    color: #a0121a;
}

.modal-content h2 {
    color: #7A4A30;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.image-modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 1rem;
}

.modal-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: grab;
    transition: transform 0.3s ease;
}

.modal-image img:active {
    cursor: grabbing;
}

.modal-image img:hover {
    transform: scale(1.02);
}

/* Menu Modal Content */
.menu-modal-content {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.menu-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #7A4A30;
    padding-bottom: 1rem;
}

.menu-header h2 {
    color: #7A4A30;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.menu-header p {
    color: #666;
    font-size: 1.1rem;
}

.menu-section {
    margin-bottom: 2rem;
}

.menu-section h3 {
    color: #7A4A30;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #7A4A30;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item .item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
}

.menu-item .item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-item .item-tags .tag {
    background: #7A4A30;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-item .item-price {
    color: #7A4A30;
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-item .item-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Lunch Page Specific Styles */
.lunch-features {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 15px;
}

.lunch-features h3 {
    text-align: center;
    color: #7A4A30;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.feature-item h4 {
    color: #7A4A30;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.lunch-info {
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lunch-info h3 {
    text-align: center;
    color: #7A4A30;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-item h4 {
    color: #7A4A30;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Service Card Lists */
.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7A4A30;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

/* Removed old conflicting footer logo styles */

.footer-section h3 {
    color: #7A4A30;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #7A4A30;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #7A4A30;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #7A4A30 !important;
}

.nav-menu a.active::after {
    width: 100% !important;
}

/* Responsive Design */
/* Large screens optimization */
@media (min-width: 1200px) {
    .menu-items {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .menu-grid {
        max-width: 1800px;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-brand .logo {
        height: 50px;
    }

    .brand-text h1 {
        font-size: 1.5rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .nav-actions {
        margin-top: 2rem;
    }

    .nav-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .nav-brand .logo {
        height: 40px;
        display: block;
        opacity: 1;
        visibility: visible;
        filter: none;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .lunch-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lunch-sidebar {
        order: -1;
    }

    .card-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .price-tag {
        justify-content: center;
    }

    .features {
        gap: 0.75rem;
    }

    .feature {
        padding: 0.75rem;
    }

    .menu-categories-preview {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card.primary {
        grid-column: 1;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .story-highlights {
        flex-direction: column;
        align-items: center;
    }

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

    .menu-category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .menu-category-image {
        width: 100%;
        max-width: 200px;
        height: 120px;
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .lunch-services {
        grid-template-columns: 1fr;
    }

    .reservation-details {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .menu-toggle {
        flex-direction: column;
        align-items: center;
    }

    .price {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .nav-brand .logo {
        height: 35px;
        display: block;
        opacity: 1;
        visibility: visible;
        filter: none;
    }

    .nav-brand h1 {
        font-size: 1.3rem;
    }

    /* Removed conflicting footer logo filter */

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .amount {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .lunch-showcase {
        grid-template-columns: 1fr;
    }

    .lunch-hero {
        flex-direction: column;
        text-align: center;
    }

    .price-main {
        font-size: 3rem;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }
}

/* New Lunch Preview Section */
.lunch-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.lunch-main {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.lunch-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7A4A30, #FF8C00);
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #7A4A30;
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #7A4A30;
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.price-badge {
    background: linear-gradient(135deg, #7A4A30, #FF8C00);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lunch-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2c2c2c;
}

.lunch-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #2c2c2c;
}

.feature-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

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

.lunch-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-card {
    background: white;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #7A4A30;
}

.detail-card .card-icon {
    font-size: 1.5rem;
    color: #7A4A30;
    margin-bottom: 1rem;
}

.icon-image {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    display: block;
}

.detail-card .card-content h4 {
    color: #7A4A30;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.detail-card .card-content p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.hours-info {
    margin-bottom: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: #2c2c2c;
}

.time {
    color: #7A4A30;
    font-weight: 600;
}

.location-link {
    color: #7A4A30;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #a0121a;
}

/* New Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

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

.contact-card.primary {
    background: linear-gradient(135deg, #7A4A30, #FF8C00);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(122, 74, 48, 0.3);
}

.contact-card.primary .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-card.primary .card-icon {
    font-size: 2rem;
}

.contact-card.primary .card-title h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card.primary .card-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.card-action {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-action:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #7A4A30;
}

.item-icon {
    font-size: 1.5rem;
    color: #7A4A30;
    margin-bottom: 1rem;
}

.item-content h4 {
    color: #7A4A30;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.item-content p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.item-link {
    color: #7A4A30;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.item-link:hover {
    color: #a0121a;
}

.contact-item .hours-list {
    margin-bottom: 0;
}

.contact-item .hours-item {
    padding: 0.25rem 0;
    font-size: 0.8rem;
}

.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-section .form-header h3 {
    color: #7A4A30;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form-section .form-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form-section .contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-section .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-section .form-group label {
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form-section .form-group input,
.contact-form-section .form-group select,
.contact-form-section .form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.contact-form-section .form-group input:focus,
.contact-form-section .form-group select:focus,
.contact-form-section .form-group textarea:focus {
    outline: none;
    border-color: #7A4A30;
    box-shadow: 0 0 0 3px rgba(122, 74, 48, 0.1);
}

.contact-form-section .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-section .form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-form-section .form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.contact-form-section .form-note .icon {
    font-size: 0.9rem;
}

/* Footer - Proper Website Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #2c2c2c;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    text-align: left;
    padding: 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #7A4A30;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
}

.footer-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-section:nth-child(2) h4::before {
    content: '🏢';
    font-size: 1.2rem;
}

.footer-section:nth-child(3) h4::before {
    content: '⏰';
    font-size: 1.2rem;
}

.footer-section:nth-child(4) h4::before {
    content: '🔗';
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #666;
    font-size: 0.9rem;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    max-width: 450px;
    margin-bottom: 0;
}

.footer-brand img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 80px !important;
    height: 80px !important;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    object-fit: contain;
    margin: 0;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.footer-brand .brand-text h3 {
    margin-bottom: 0.25rem;
}

.footer-brand .brand-text p {
    margin: 0;
    line-height: 1.4;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    opacity: 1;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    max-width: 100%;
    object-fit: contain;
}

.footer-brand h3 {
    color: #7A4A30;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-brand .brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    transition: all 0.3s ease;
}

.footer-brand p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.contact-details p,
.hours-details p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-details p strong,
.hours-details p strong {
    color: #7A4A30;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-links li a:hover {
    color: #7A4A30;
    transform: translateX(5px);
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #7A4A30;
    transition: width 0.3s ease;
}

.footer-links li a:hover::before {
    width: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #999;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive design for new sections */
@media (max-width: 768px) {
    .lunch-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .lunch-actions {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-form-section .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
}

/* Loading animations */
.menu-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.menu-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0.75rem 1.5rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .lunch-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* Tablet Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Enhanced Navbar */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-brand .logo {
        height: 45px;
        display: block;
        opacity: 1;
        visibility: visible;
        filter: none;
    }
    
    .brand-text h1 {
        font-size: 1.4rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    /* Mobile menu close button */
    .nav-menu.active::before {
        content: '✕';
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        color: #7A4A30;
        cursor: pointer;
        z-index: 1002;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        color: #2c2c2c;
        text-decoration: none;
        display: block;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #7A4A30;
    }
    
    .nav-actions {
        margin-top: 2rem;
        text-align: center;
    }
    
    .nav-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        background: linear-gradient(135deg, #7A4A30, #FF8C00);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        display: inline-block;
        transition: all 0.3s ease;
    }
    
    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(122, 74, 48, 0.4);
        color: white;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Enhanced Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        padding: 1rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }
    
    /* Enhanced Page Hero */
    .page-hero {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .page-hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* Enhanced Sections */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Enhanced About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card {
        padding: 2rem;
        text-align: center;
    }
    
    .about-story {
        padding: 2rem;
    }
    
    .story-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Enhanced Specialties */
    .specialty-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialty-card {
        padding: 1.5rem;
    }
    
    /* Enhanced Lunch Preview */
    .lunch-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lunch-main {
        padding: 2rem;
        order: 1;
    }
    
    .lunch-details {
        order: 2;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .lunch-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lunch-actions .btn-primary,
    .lunch-actions .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    /* Enhanced Menu Grid */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-category-card {
        padding: 1.5rem;
    }
    
    /* Enhanced Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
        padding: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card.primary {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mobile Footer - Well Managed */
    .footer {
        background: #f8f9fa;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        text-align: center;
        border-top: 3px solid #7A4A30;
    }
    
    .footer-content {
        display: block;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2.5rem;
        padding: 0;
    }
    
    .footer-brand {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-brand img {
        width: 60px;
        height: 60px;
        margin: 0 auto;
        display: block;
        border-radius: 50%;
        background: white;
        padding: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .footer-brand h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        color: #7A4A30;
        font-weight: 700;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
        font-weight: 500;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #7A4A30;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-section h4::before {
        content: '';
        width: 16px;
        height: 16px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    
    .footer-section:nth-child(2) h4::before {
        content: '🏢';
        font-size: 1.2rem;
    }
    
    .footer-section:nth-child(3) h4::before {
        content: '⏰';
        font-size: 1.2rem;
    }
    
    .footer-section:nth-child(4) h4::before {
        content: '🔗';
        font-size: 1.2rem;
    }
    
    .contact-details p,
    .hours-details p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        color: #666;
        line-height: 1.5;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .contact-details p:last-child,
    .hours-details p:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .contact-details p strong,
    .hours-details p strong {
        color: #333;
        font-weight: 600;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links li a {
        font-size: 0.85rem;
        color: #666;
        text-decoration: none;
        display: block;
        padding: 0.6rem 1.2rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 25px;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .footer-links li a:hover {
        color: white;
        background: #7A4A30;
        border-color: #7A4A30;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(122, 74, 48, 0.3);
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 2px solid #7A4A30;
        background: white;
        border-radius: 10px;
        padding: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        color: #999;
        margin: 0;
        font-weight: 500;
    }
    
    /* Enhanced Menu Categories */
    .menu-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-category-card {
        padding: 1.5rem;
    }
    
    /* Category image styles removed */
    
    .category-content h3 {
        font-size: 1.2rem;
    }
    
    .category-content p {
        font-size: 0.9rem;
    }
    
    /* Enhanced Info Cards */
    .lunch-info, .menu-info {
        margin: 2rem 0;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .menu-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    /* Enhanced Modal */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .close-modal {
        top: 0.5rem;
        right: 1rem;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .modal-image img {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Ultra Mobile Navbar */
    .nav-container {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-brand .logo {
        height: 35px;
        display: block;
        opacity: 1;
        visibility: visible;
        filter: none;
    }
    
    .brand-text h1 {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
    
    .nav-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Ultra Mobile Hero */
    .hero {
        padding: 80px 0 40px;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 0.75rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Ultra Mobile Page Hero */
    .page-hero {
        padding: 80px 0 40px;
        min-height: 40vh;
    }
    
    .page-hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    /* Ultra Mobile Sections */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Ultra Mobile Cards */
    .about-card, .specialty-card, .contact-item, .detail-card {
        padding: 1rem;
    }
    
    .lunch-main, .contact-form-section {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    /* Ultra Mobile Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Ultra Mobile Menu Categories */
    .menu-categories {
        gap: 1rem;
    }
    
    .menu-category-card {
        padding: 1rem;
    }
    
    /* Category image styles removed */
    
    .category-content h3 {
        font-size: 1.1rem;
    }
    
    .category-content p {
        font-size: 0.85rem;
    }
    
    /* Ultra Mobile Modal */
    .modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 90vh;
    }
    
    .close-modal {
        top: 0.25rem;
        right: 0.75rem;
        font-size: 1.2rem;
        width: 30px;
        height: 30px;
    }
    
    .modal-image img {
        max-height: 80vh;
    }
    
    /* Ultra Mobile Footer - Well Managed */
    .footer {
        padding: 1.5rem 0 1rem;
        background: #f8f9fa;
        color: #333;
        border-top: 2px solid #7A4A30;
    }
    
    .footer-content {
        display: block;
        padding: 0 0.75rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .footer-brand {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-brand img {
        width: 45px;
        height: 45px;
        margin: 0 auto;
        display: block;
        border-radius: 50%;
        background: white;
        padding: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    
    .footer-brand h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        color: #7A4A30;
        font-weight: 700;
    }
    
    .footer-brand p {
        font-size: 0.75rem;
        color: #666;
        margin: 0;
        font-weight: 500;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        color: #7A4A30;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .footer-section h4::before {
        content: '';
        width: 14px;
        height: 14px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    
    .footer-section:nth-child(2) h4::before {
        content: '🏢';
        font-size: 1rem;
    }
    
    .footer-section:nth-child(3) h4::before {
        content: '⏰';
        font-size: 1rem;
    }
    
    .footer-section:nth-child(4) h4::before {
        content: '🔗';
        font-size: 1rem;
    }
    
    .contact-details p,
    .hours-details p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        color: #666;
        line-height: 1.4;
        padding: 0.4rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .contact-details p:last-child,
    .hours-details p:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .contact-details p strong,
    .hours-details p strong {
        color: #333;
        font-weight: 600;
        display: block;
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links li a {
        font-size: 0.75rem;
        color: #666;
        text-decoration: none;
        display: block;
        padding: 0.5rem 1rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        transition: all 0.3s ease;
        font-weight: 500;
        text-align: center;
    }
    
    .footer-links li a:hover {
        color: white;
        background: #7A4A30;
        border-color: #7A4A30;
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(122, 74, 48, 0.3);
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #7A4A30;
        background: white;
        border-radius: 8px;
        padding: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
        color: #999;
        margin: 0;
        font-weight: 500;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 60px 0 40px;
    }
    
    .page-hero {
        min-height: 40vh;
        padding: 60px 0 40px;
    }
    
    .nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
    
    .modal-content {
        max-height: 90vh;
    }
    
    .modal-image img {
        max-height: 85vh;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-brand .logo,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .nav-menu,
    .footer {
        display: none !important;
    }
    
    .hero,
    .page-hero {
        background: none !important;
        color: black !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* Lunch Menu Content Styles */
.lunch-menu-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.menu-week-header {
    text-align: center;
    margin-bottom: 2rem;
}

.menu-week-header h2 {
    color: #7A4A30;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.menu-week-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Day Navigation */
.day-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.day-btn {
    background: white;
    border: 2px solid #7A4A30;
    color: #7A4A30;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.day-btn:hover {
    background: #7A4A30;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 74, 48, 0.3);
}

.day-btn.active {
    background: #7A4A30;
    color: white;
    box-shadow: 0 5px 15px rgba(122, 74, 48, 0.3);
}


/* Day Menu */
.day-menu {
    display: none;
}

.day-menu.active {
    display: block;
}

.menu-day-header {
    text-align: center;
    margin-bottom: 2rem;
}

.menu-day-header h3 {
    color: #7A4A30;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.menu-day-header h2 {
    color: #7A4A30;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.menu-day-header p {
    color: #666;
    font-size: 1.1rem;
}

.menu-items {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.menu-item.special {
    border: 2px solid #7A4A30;
    background: linear-gradient(135deg, #fff 0%, #fef7f7 100%);
}

.menu-item.today-special {
    border: 2px solid #DC143C;
    background: linear-gradient(135deg, #fff 0%, rgba(220, 20, 60, 0.05) 100%);
    position: relative;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
}

.menu-item.today-special::before {
    content: "⭐";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.item-name-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.item-header h3 {
    color: #7A4A30;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.item-header h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.item-tags {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

/* Inline tags with food names */
.lunch-menu-content .item-header h4 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.lunch-menu-content .item-tags {
    display: inline-flex;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

/* Alacarte page inline tags */
.menu-item h4 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.menu-item .item-tags {
    display: inline-flex;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

.tag {
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tag.lactose-free {
    background: #e8f5e8;
    color: #2d5a2d;
}

.tag.gluten-free {
    background: #fff3cd;
    color: #856404;
}

.tag.vegan {
    background: #d1ecf1;
    color: #0c5460;
}

.tag.nuts-free {
    background: #f8d7da;
    color: #721c24;
}

.tag.milk-free {
    background: #d4edda;
    color: #155724;
}

.item-price {
    color: #7A4A30;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}

.item-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.allergy-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #7A4A30;
}

.allergy-info h3 {
    color: #7A4A30;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.allergy-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.allergy-notice p {
    margin: 0.5rem 0;
    color: #856404;
}

.dietary-info {
    margin-bottom: 1.5rem;
}

.dietary-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    gap: 1rem;
}

.dietary-tag {
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 30px;
    text-align: center;
}

.dietary-tag.lactose-free {
    background: #e8f5e8;
    color: #2d5a2d;
}

.dietary-tag.gluten-free {
    background: #fff3cd;
    color: #856404;
}

.dietary-tag.vegan {
    background: #d1ecf1;
    color: #0c5460;
}

.dietary-tag.nuts-free {
    background: #f8d7da;
    color: #721c24;
}

.dietary-tag.milk-free {
    background: #d4edda;
    color: #155724;
}

.spice-levels h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.spice-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spice-level {
    background: #7A4A30;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.dietary-categories {
    margin-top: 1.5rem;
}

.dietary-categories h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.category-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tag {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.category-tag.veg {
    background: #28a745;
    color: white;
}

.category-tag.non-veg {
    background: #dc3545;
    color: white;
}

.category-tag.vegan {
    background: #17a2b8;
    color: white;
}

/* Responsive Design for Menu */
@media (max-width: 768px) {
    .lunch-page .page-hero {
        padding: 80px 0 60px;
        background-attachment: scroll;
    }
    
    .lunch-page .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .lunch-page .page-hero p {
        font-size: 1rem;
    }
    
    .lunch-menu-content {
        padding: 1rem 0;
    }
    
    .menu-week-header h2 {
        font-size: 2rem;
    }
    
    .menu-week-header p {
        font-size: 1rem;
    }
    
    .menu-day-header h3 {
        font-size: 1.5rem;
    }
    
    .day-navigation {
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .day-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        flex: 1;
        min-width: 120px;
        max-width: 140px;
        text-align: center;
        font-weight: 600;
        border-radius: 20px;
    }
    
    .menu-items {
        padding: 0 1rem;
    }
    
    .menu-item {
        padding: 1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .item-image {
        flex-shrink: 0;
    }
    
    .item-content {
        flex: 1;
    }
    
    .item-header {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .item-header h4 {
        min-width: auto;
        font-size: 1.1rem;
        line-height: 1.3;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .item-price {
        align-self: flex-end;
        font-size: 1rem;
    }
    
    .item-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    
    .item-description em {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    
    .menu-item-img {
        width: 50px;
        height: 50px;
        margin-right: 0;
    }
    
    .allergy-info {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .allergy-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .allergy-notice {
        background: #fff3cd;
        border: 1px solid #ffeaa7;
        border-radius: 8px;
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .allergy-notice p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0.25rem 0;
    }
    
    .dietary-info {
        margin-bottom: 1rem;
    }
    
    .dietary-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        padding: 0.5rem;
        background: #f8f9fa;
        border-radius: 6px;
    }
    
    .dietary-tag {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .dietary-item span:last-child {
        font-size: 0.8rem;
        line-height: 1.3;
        flex: 1;
    }
    
    .spice-levels {
        margin-bottom: 1rem;
    }
    
    .spice-levels h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .spice-options {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .spice-level {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        background: #7A4A30;
        color: white;
        border-radius: 15px;
        text-align: center;
        min-width: 80px;
    }
    
    .dietary-categories {
        margin-bottom: 1rem;
    }
    
    .dietary-categories h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .category-options {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .category-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        border-radius: 15px;
        text-align: center;
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .lunch-page .page-hero {
        padding: 60px 0 40px;
    }
    
    .lunch-page .page-hero h1 {
        font-size: 2rem;
    }
    
    .lunch-page .page-hero p {
        font-size: 0.9rem;
    }
    
    .lunch-menu-content {
        padding: 0.5rem 0;
    }
    
    .menu-week-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-week-header p {
        font-size: 0.9rem;
    }
    
    .menu-day-header h3 {
        font-size: 1.3rem;
    }
    
    .day-navigation {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .day-btn {
        flex: 1;
        min-width: 80px;
        max-width: 100px;
        text-align: center;
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 15px;
        line-height: 1.2;
    }
    
    .menu-items {
        padding: 0 0.5rem;
    }
    
    .menu-item {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .item-image {
        flex-shrink: 0;
    }
    
    .item-content {
        flex: 1;
    }
    
    .item-header {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        margin-bottom: 0.4rem;
    }
    
    .item-header h4 {
        font-size: 1rem;
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }
    
    .item-price {
        font-size: 0.9rem;
    }
    
    .item-description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .item-description em {
        font-size: 0.75rem;
    }
    
    .menu-item-img {
        width: 40px;
        height: 40px;
        margin-right: 0;
    }
    
    .allergy-info {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .allergy-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .allergy-notice {
        padding: 0.6rem;
        margin-bottom: 0.75rem;
    }
    
    .allergy-notice p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .dietary-item {
        gap: 0.5rem;
        margin-bottom: 0.6rem;
        padding: 0.4rem;
    }
    
    .dietary-tag {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .dietary-item span:last-child {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .spice-levels h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .spice-level {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
        min-width: 70px;
    }
    
    .dietary-categories h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .category-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
        min-width: 50px;
    }
}

/* Extra small mobile screens */
@media (max-width: 360px) {
    .day-navigation {
        gap: 0.3rem;
        padding: 0 0.25rem;
    }
    
    .day-btn {
        min-width: 70px;
        max-width: 85px;
        padding: 0.5rem 0.3rem;
        font-size: 0.75rem;
        border-radius: 12px;
    }
    
    .menu-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
        gap: 0.4rem;
    }
    
    .item-header {
        gap: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    .item-header h4 {
        font-size: 0.9rem;
        gap: 0.3rem;
    }
    
    .menu-item-img {
        width: 35px;
        height: 35px;
    }
    
    .item-price {
        font-size: 0.8rem;
    }
    
    .item-description {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .item-description em {
        font-size: 0.7rem;
    }
    
    .allergy-info {
        padding: 0.5rem;
        margin: 0.5rem 0;
    }
    
    .allergy-info h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .allergy-notice {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .allergy-notice p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .dietary-item {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
        padding: 0.3rem;
    }
    
    .dietary-tag {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .dietary-item span:last-child {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .spice-levels h4 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .spice-level {
        font-size: 0.7rem;
        padding: 0.25rem 0.4rem;
        min-width: 60px;
    }
    
    .dietary-categories h4 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .category-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.4rem;
        min-width: 45px;
    }
}

/* New Alacarte Page Styles */
.menu-nav-section {
    background: #fff;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-nav::-webkit-scrollbar {
    display: none;
}

.nav-btn {
    background: transparent;
    border: none;
    color: #666;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #7A4A30;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-btn:hover {
    color: #7A4A30;
    background: rgba(122, 74, 48, 0.05);
}

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

.nav-btn.active {
    color: #7A4A30;
    background: rgba(122, 74, 48, 0.1);
    font-weight: 600;
}

.nav-btn.active::after {
    width: 100%;
}

.menu-content-section {
    padding: 2rem 0;
    background: #fafbfc;
    min-height: 60vh;
}

.menu-category {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
    display: none;
}

.menu-category[data-category="appetizers"] {
    display: block;
}

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

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.category-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.category-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7A4A30, #ff6b35);
    border-radius: 2px;
}

.category-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 0.5rem;
    width: 100%;
}

.menu-subcategory {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.menu-subcategory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #7A4A30, #ff6b35);
    border-radius: 0 2px 2px 0;
}

.menu-subcategory h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-left: 1rem;
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
}

.menu-item {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    border: 1px solid #f5f5f5;
    position: relative;
    min-height: auto;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(122, 74, 48, 0.05), rgba(255, 107, 53, 0.05));
    transition: width 0.3s ease;
    border-radius: 10px;
}

.menu-item:hover::before {
    width: 100%;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(122, 74, 48, 0.2);
}

.item-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
}

.item-info h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.item-description {
    color: #7f8c8d;
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.item-description em {
    color: #95a5a6;
    font-size: 0.85rem;
    font-style: italic;
    display: block;
    margin-top: 0.4rem;
    padding-left: 0.5rem;
    border-left: 2px solid #e9ecef;
}

.item-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 100px;
    flex-shrink: 0;
}

.item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.tag {
    background: #7A4A30;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(122, 74, 48, 0.2);
}

.tag.lactose-free {
    background: #27ae60;
    box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}

.tag.gluten-free {
    background: #3498db;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

.tag.vegan {
    background: #9b59b6;
    box-shadow: 0 2px 4px rgba(155, 89, 182, 0.2);
}

.item-price {
    color: #7A4A30;
    font-weight: 700;
    font-size: 1.4rem;
    position: relative;
}

.item-price::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7A4A30, #ff6b35);
    border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-nav-section {
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 100;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .menu-nav {
        padding: 0 0.5rem;
        gap: 0.4rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .menu-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
        border-radius: 20px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        color: #666;
    }

    .nav-btn:hover {
        background: rgba(122, 74, 48, 0.05);
        border-color: #7A4A30;
    }

    .nav-btn.active {
        background: #7A4A30;
        color: white;
        border-color: #7A4A30;
        font-weight: 600;
    }

    .menu-content-section {
        padding: 1rem 0;
    }

    .menu-grid {
        padding: 0 0.25rem;
        gap: 1rem;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .menu-subcategory {
        padding: 0.75rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .menu-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .item-meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: auto;
    }

    .item-tags {
        justify-content: flex-start;
    }

    .item-price {
        font-size: 1.2rem;
    }
}

/* Extra small mobile screens for alacarte */
@media (max-width: 360px) {
    .menu-nav-section {
        padding: 0.5rem 0;
    }

    .menu-nav {
        padding: 0 0.2rem;
        gap: 0.25rem;
    }

    .nav-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 12px;
    }

    .menu-content-section {
        padding: 0.75rem 0;
    }

    .menu-grid {
        padding: 0 0.05rem;
        gap: 0.75rem;
    }

    .category-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }

    .category-header p {
        font-size: 0.85rem;
    }

    .menu-subcategory {
        padding: 0.4rem;
    }

    .menu-item {
        padding: 0.4rem;
    }

    .menu-item h4 {
        font-size: 1rem;
    }

    .item-description {
        font-size: 0.8rem;
    }

    .item-description em {
        font-size: 0.75rem;
    }

    .item-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .menu-nav-section {
        padding: 0.75rem 0;
    }

    .menu-nav {
        padding: 0 0.25rem;
        gap: 0.3rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .menu-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-btn {
        flex-shrink: 0;
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        white-space: nowrap;
        min-width: fit-content;
        border-radius: 15px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        color: #666;
    }

    .nav-btn:hover {
        background: rgba(122, 74, 48, 0.05);
        border-color: #7A4A30;
    }

    .nav-btn.active {
        background: #7A4A30;
        color: white;
        border-color: #7A4A30;
        font-weight: 600;
    }

    .menu-content-section {
        padding: 0.75rem 0;
    }

    .menu-grid {
        padding: 0 0.1rem;
        gap: 0.75rem;
    }

    .category-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .category-header p {
        font-size: 0.9rem;
    }

    .menu-subcategory {
        padding: 0.5rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .menu-item {
        padding: 0.5rem;
    }
}

/* Menu Content Styles for Alacarte Page (Legacy) */
.menu-content {
    margin-top: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-items-content {
    min-height: 400px;
}

.menu-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.menu-placeholder h3 {
    color: #7A4A30;
    margin-bottom: 1rem;
}

.menu-content-section {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #7A4A30;
    padding-bottom: 1rem;
}

.menu-header h2 {
    color: #7A4A30;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.menu-header p {
    color: #666;
    font-size: 1.1rem;
}

.menu-category {
    margin-bottom: 2rem;
}

.menu-category h3 {
    color: #7A4A30;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #7A4A30;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item .item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
}

.menu-item .item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-item .item-tags .tag {
    background: #7A4A30;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-item .item-price {
    color: #7A4A30;
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-item .item-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.menu-image {
    text-align: center;
    margin-top: 2rem;
}

.menu-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}