/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333333 0%, #5C4033 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(210, 180, 140, 0.3);
    border-top: 3px solid #D2B48C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CSS Variables for consistent theming */
:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --accent-color: #D2B48C;
    --background-color: #ffffff;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Source Sans Pro', sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    --space-2xl: 4rem;     /* 64px */
    --space-3xl: 6rem;     /* 96px */
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
}

/* Reset and Base Styles */ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    padding: 1rem 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
    position: relative;
}

.brand:hover {
    transform: translateY(-2px);
    color: #5C4033;
}

.brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D2B48C, #5C4033);
    transition: width 0.3s ease;
}

.brand:hover::after {
    width: 100%;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-right: var(--space-sm);
    transition: transform 0.3s ease;
    object-fit: contain;
    max-width: 120px;
    min-height: 30px;
    background: transparent;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Fallback for missing logo */
.brand-logo:not([src]),
.brand-logo[src=""],
.brand-logo[src*="undefined"] {
    display: none;
}

/* Ensure logo container maintains space even if logo fails to load */
.brand {
    min-height: 50px;
    display: flex;
    align-items: center;
}

/* CSS-based logo fallback */
.brand::before {
    content: "🏔️";
    font-size: 1.1rem;
    margin-right: 0.5rem;
    display: var(--show-emoji, none);
    line-height: 1;
    vertical-align: middle;
    align-self: center;
    margin-top: -2px;
}

/* Show emoji fallback when logo fails to load */
.brand-logo:not([src]),
.brand-logo[src=""],
.brand-logo[src*="undefined"] {
    display: none;
}

.brand-logo:not([src]) ~ .brand::before,
.brand-logo[src=""] ~ .brand::before,
.brand-logo[src*="undefined"] ~ .brand::before {
    display: inline-block;
}

/* Alternative: Show emoji when logo image fails to load */
.brand-logo[src]:not([src=""]) {
    display: block;
}

/* Force logo to always show if it has a valid src */
.brand-logo[src*="logo"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Additional logo display fixes */
.brand-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 120px;
    height: auto;
    min-height: 30px;
}

/* Ensure logo container has proper height */
.brand {
    min-height: 50px;
    display: flex !important;
    align-items: center !important;
    gap: var(--space-sm);
}

/* Menu page button container */
.menu-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.menu-buttons .btn {
    min-width: 180px;
    text-align: center;
}


/* Inline SVG brand icon */
.brand-icon {
    height: 28px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D2B48C, #5C4033);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #5C4033;
    background: rgba(210, 180, 140, 0.1);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #5C4033;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-color);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(210, 180, 140, 0.1) 0%, rgba(92, 64, 51, 0.1) 100%);
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: var(--text-6xl);
    margin-bottom: var(--space-lg);
    color: #5C4033;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #8B4513;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, #333333 0%, #5C4033 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--text-sm);
    min-width: 200px;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    line-height: 1.4;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #5C4033 0%, #333333 100%);
}

.btn-outline {
    background: rgba(255,255,255,0.9);
    color: #5C4033;
    border: 2px solid #5C4033;
    backdrop-filter: blur(10px);
    font-weight: 600;
    text-shadow: none;
}

.btn-outline:hover {
    background: #5C4033;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 64, 51, 0.4);
    border-color: #5C4033;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Additional Yang's Kitchen Style Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-section {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.2s; }
.menu-section:nth-child(3) { animation-delay: 0.3s; }
.menu-section:nth-child(4) { animation-delay: 0.4s; }
.menu-section:nth-child(5) { animation-delay: 0.5s; }
.menu-section:nth-child(6) { animation-delay: 0.6s; }
.menu-section:nth-child(7) { animation-delay: 0.7s; }
.menu-section:nth-child(8) { animation-delay: 0.8s; }
.menu-section:nth-child(9) { animation-delay: 0.9s; }
.menu-section:nth-child(10) { animation-delay: 1.0s; }
.menu-section:nth-child(11) { animation-delay: 1.1s; }
.menu-section:nth-child(12) { animation-delay: 1.2s; }
.menu-section:nth-child(13) { animation-delay: 1.3s; }
.menu-section:nth-child(14) { animation-delay: 1.4s; }
.menu-section:nth-child(15) { animation-delay: 1.5s; }
.menu-section:nth-child(16) { animation-delay: 1.6s; }
.menu-section:nth-child(17) { animation-delay: 1.7s; }
.menu-section:nth-child(18) { animation-delay: 1.8s; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

.section:first-of-type {
    padding-top: var(--space-2xl);
}

.section--compact {
    padding: var(--space-2xl) 0;
}

.section--large {
    padding: var(--space-3xl) 0;
}

.section h2 {
    font-family: var(--heading-font);
    text-align: center;
    font-size: var(--text-4xl);
    margin-bottom: var(--space-xl);
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section h3 {
    font-family: var(--heading-font);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.3;
}

.section p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
}


/* Quick Links Section */
.quick-links-section {
    background-color: var(--light-bg);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.quick-link-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(210, 180, 140, 0.1);
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D2B48C, #5C4033);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-link-card:hover::before {
    transform: scaleX(1);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: rgba(210, 180, 140, 0.3);
}

.quick-link-card h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: var(--text-xl);
    line-height: 1.3;
}

.quick-link-card p {
    margin-bottom: var(--space-xl);
    color: var(--secondary-color);
    font-weight: 300;
    line-height: 1.6;
    font-size: var(--text-base);
}

.quick-link-card .btn {
    min-width: 160px;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
}

/* Menu Styles */
.menu-main-title {
    font-family: var(--heading-font);
    text-align: center;
    font-size: 3rem;
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.menu-sections-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-section {
    margin-bottom: 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    height: fit-content;
    border: 1px solid rgba(210, 180, 140, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D2B48C, #5C4033);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-section:hover::before {
    transform: scaleX(1);
}

.menu-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(210, 180, 140, 0.4);
}

.menu-section-title {
    font-family: var(--heading-font);
    color: #333333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, #D2B48C, #5C4033) bottom / 100% 3px no-repeat;
    padding-bottom: 0.75rem;
    text-align: center;
    position: relative;
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #5C4033, #D2B48C);
    transition: width 0.5s ease;
    transform: translateX(-50%);
}

.menu-section:hover .menu-section-title::after {
    width: 100%;
}

.menu-description {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Momo Table Styles */
.momo-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.momo-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background-color: #333333;
    color: white;
    font-weight: 600;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.momo-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.momo-row:nth-child(even) {
    background-color: rgba(51, 51, 51, 0.02);
}

.momo-row:hover {
    background-color: rgba(51, 51, 51, 0.05);
}

.momo-type {
    font-weight: 500;
    color: #333333;
    font-size: 0.9rem;
}

.momo-filling {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.momo-price {
    text-align: center;
    font-weight: 600;
    color: #333333;
    font-size: 0.9rem;
}

/* Noodle Category Styles */
.noodle-category {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.noodle-category:last-child {
    margin-bottom: 0;
}

.noodle-header {
    margin-bottom: 1rem;
}

.noodle-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #333333;
    padding-bottom: 0.5rem;
    display: block;
}

.noodle-description {
    color: #666666;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.5rem 0;
}

.noodle-category .menu-items {
    margin-top: 1rem;
}

.noodle-category .menu-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.noodle-category .menu-item:last-child {
    border-bottom: none;
}

.noodle-category .menu-item:hover {
    background-color: rgba(51, 51, 51, 0.03);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-radius: 4px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
    min-height: 50px;
    position: relative;
}

.menu-item:hover {
    background-color: rgba(51, 51, 51, 0.03);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-radius: 4px;
}



.menu-item .name {
    font-weight: 500;
    color: #333333;
    margin-right: 1rem;
    font-size: 1rem;
}

.menu-item .name .item-title {
    display: block;
    font-weight: 600;
    line-height: 1.3;
}

.menu-item .name .desc {
    display: block;
    font-weight: 400;
    color: #666666;
    margin-top: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.menu-item .price {
    color: #333333;
    font-weight: 600;
    text-align: right;
    min-width: 70px;
    font-size: 0.95rem;
}

.menu-item .price.price-line {
    display: inline-block;
    margin-top: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(238, 238, 238, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
    margin: 0.25rem 0;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(210, 180, 140, 0.1), rgba(92, 64, 51, 0.1));
    transition: width 0.3s ease;
    border-radius: 8px 0 0 8px;
}

.menu-item:hover::before {
    width: 4px;
}

.menu-item:hover {
    background: linear-gradient(90deg, rgba(210, 180, 140, 0.05), rgba(92, 64, 51, 0.05));
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.menu-item:last-child {
    border-bottom: none;
}

/* Legacy menu styles for backward compatibility */
.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.menu-category h3 {
    color: #333333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.menu-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-family: var(--heading-font);
    color: #333333;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hours-location {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.hours-location h3 {
    font-family: var(--heading-font);
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hours-location ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hours-location li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: var(--heading-font);
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #333333;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 2px dashed #ccc;
}

/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #333333 0%, #5C4033 100%);
    color: white;
    text-align: center;
    padding: var(--space-2xl) 0;
    margin-top: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(210, 180, 140, 0.5), transparent);
}

footer p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

footer p:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(210, 180, 140, 0.2);
    z-index: 1001;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, #D2B48C, #5C4033);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;  /* Height of the header */
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        margin: 0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        border-radius: 0 0 20px 20px;
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        list-style: none;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        opacity: 0;
        animation: fadeIn 0.3s ease-out forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateX(-10px); }
        to { opacity: 1; transform: translateX(0); }
    }

.nav-menu.active {
display: flex;
animation: slideInFromTop 0.3s ease;
}

.nav-menu li {
margin: 0;
padding: 0.5rem 0;
}

.nav-menu a {
    display: block;
    padding: 12px 24px;
    color: #5C4033;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px 1rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 0;
    height: 2px;
    background-color: #D2B48C;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: calc(100% - 48px);
}

.nav-menu a:hover {
background: rgba(92, 64, 51, 0.1);
color: #8B4513;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #5C4033;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin-left: auto;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(210, 180, 140, 0.5);
    border-radius: 50%;
}

.mobile-menu-toggle.active .menu-icon {
    transform: rotate(90deg);
}

.menu-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Add animation for menu items */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-menu li {
    animation: fadeIn 0.3s ease forwards;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu li:nth-child(4) { animation-delay: 0.25s; }
.nav-menu li:nth-child(5) { animation-delay: 0.3s; }

.mobile-menu-toggle.active {
transform: rotate(90deg);
}

    .brand-logo {
        height: 32px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .brand {
        font-size: 1.5rem;
        min-height: 45px;
    }

    .brand::before {
        font-size: 1rem;
        margin-right: 0.4rem;
    }

    .hero-content h1 {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-md);
        line-height: 1.2;
    }

    .hero-content p {
        font-size: var(--text-base);
        margin-bottom: var(--space-xl);
        max-width: 90%;
        line-height: 1.4;
    }

    .section h2 {
        font-size: var(--text-3xl);
    }

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

    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin-top: var(--space-lg);
    }

    .quick-link-card {
        padding: var(--space-xl) var(--space-md);
    }

    .quick-link-card h3 {
        font-size: var(--text-lg);
    }

    .quick-link-card p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-lg);
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .menu-sections-grid {
        gap: 1.5rem;
    }

    .menu-items {
        flex-direction: column;
    }

    .momo-table {
        font-size: 0.8rem;
    }

    .momo-header,
    .momo-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .momo-header {
        display: none;
    }

    .momo-row {
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        padding: 1rem;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .momo-type {
        font-weight: 600;
        margin-bottom: 0.75rem;
        text-align: center;
        font-size: 0.9rem;
        color: #5C4033;
        border-bottom: 2px solid #D2B48C;
        padding-bottom: 0.5rem;
    }

    .momo-price {
        display: inline-block;
        margin: 0.25rem 0.3rem;
        padding: 0.3rem 0.6rem;
        background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
        border-radius: 6px;
        font-weight: 600;
        color: #5C4033;
        border: 1px solid #ddd;
        min-width: 50px;
        text-align: center;
        font-size: 0.75rem;
    }

    /* Add labels for each price */
    .momo-row .momo-price:nth-child(2)::before {
        content: "Veg: ";
        font-size: 0.7rem;
        color: #666;
        display: block;
        margin-bottom: 0.2rem;
    }

    .momo-row .momo-price:nth-child(3)::before {
        content: "Paneer: ";
        font-size: 0.7rem;
        color: #666;
        display: block;
        margin-bottom: 0.2rem;
    }

    .momo-row .momo-price:nth-child(4)::before {
        content: "Chicken: ";
        font-size: 0.7rem;
        color: #666;
        display: block;
        margin-bottom: 0.2rem;
    }

    .momo-row .momo-price:nth-child(5)::before {
        content: "Lamb: ";
        font-size: 0.7rem;
        color: #666;
        display: block;
        margin-bottom: 0.2rem;
    }

    .momo-row .momo-price:nth-child(6)::before {
        content: "Shrimp: ";
        font-size: 0.7rem;
        color: #666;
        display: block;
        margin-bottom: 0.2rem;
    }

    .noodle-category {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .noodle-title {
        font-size: 1.1rem;
    }

    .noodle-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-sm);
        line-height: 1.1;
    }

    .hero-content p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-lg);
        max-width: 95%;
        line-height: 1.3;
    }

    .section h2 {
        font-size: var(--text-2xl);
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .quick-link-card {
        padding: var(--space-lg) var(--space-sm);
    }

    .quick-link-card h3 {
        font-size: var(--text-base);
    }

    .quick-link-card p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-md);
    }

    .quick-link-card .btn {
        min-width: 140px;
        padding: var(--space-xs) var(--space-md);
        font-size: var(--text-xs);
    }

    .brand-logo {
        height: 28px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .brand {
        font-size: 1.25rem;
        min-height: 40px;
    }

    .brand::before {
        font-size: 0.9rem;
        margin-right: 0.3rem;
    }

    .menu-sections-grid {
        gap: 1rem;
    }

    .menu-buttons {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }

    .menu-buttons .btn {
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }


    .menu-section {
        padding: 1.5rem;
    }

    .menu-items {
        flex-direction: column;
    }
} 