@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8fdff 0%, #e8f4f8 30%, #f0f8ff 100%);
    overflow-x: hidden;
    position: relative;
}

/* Cherry Blossom Background */
.cherry-blossom-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.large-cherry-branch {
    position: absolute;
    width: 100%;
    height: 600px;
    top: 10%;
    left: 0;
    opacity: 0.3;
    animation: gentle-sway 25s ease-in-out infinite;
    z-index: -1;
}

@keyframes gentle-sway {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(0.5deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-0.5deg); }
}

.petal {
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(45deg, #ffc0cb, #ff69b4);
    border-radius: 50% 50% 50% 0;
    opacity: 0.9;
    animation: fall linear infinite;
    transform-origin: bottom;
}

.petal::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    background: linear-gradient(45deg, #fff0f5, #ffc0cb);
    border-radius: 50% 50% 50% 0;
    top: 1px;
    left: 1px;
    opacity: 0.7;
}

.petal:nth-child(2) { left: 15%; animation-duration: 8s; animation-delay: 0s; background: #ffc9e0; }
.petal:nth-child(3) { left: 25%; animation-duration: 12s; animation-delay: 2s; background: #ffb3d9; }
.petal:nth-child(4) { left: 35%; animation-duration: 10s; animation-delay: 4s; background: #ffa6d2; }
.petal:nth-child(5) { left: 45%; animation-duration: 14s; animation-delay: 1s; background: #ff99cc; }
.petal:nth-child(6) { left: 55%; animation-duration: 9s; animation-delay: 3s; background: #ffb3d9; }
.petal:nth-child(7) { left: 65%; animation-duration: 11s; animation-delay: 5s; background: #ffc9e0; }
.petal:nth-child(8) { left: 75%; animation-duration: 13s; animation-delay: 0.5s; background: #ffa6d2; }
.petal:nth-child(9) { left: 85%; animation-duration: 15s; animation-delay: 2.5s; background: #ff99cc; }
.petal:nth-child(10) { left: 5%; animation-duration: 7s; animation-delay: 4.5s; background: #ffb3d9; }
.petal:nth-child(11) { left: 20%; animation-duration: 16s; animation-delay: 6s; background: #ffc9e0; }
.petal:nth-child(12) { left: 30%; animation-duration: 9s; animation-delay: 1.5s; background: #ffa6d2; }
.petal:nth-child(13) { left: 40%; animation-duration: 11s; animation-delay: 3.5s; background: #ff99cc; }
.petal:nth-child(14) { left: 60%; animation-duration: 13s; animation-delay: 0.8s; background: #ffb3d9; }
.petal:nth-child(15) { left: 70%; animation-duration: 8s; animation-delay: 4.2s; background: #ffc9e0; }
.petal:nth-child(16) { left: 90%; animation-duration: 12s; animation-delay: 2.8s; background: #ffa6d2; }

@keyframes fall {
    0% {
        top: -10px;
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg) translateX(10px);
    }
    50% {
        transform: rotate(180deg) translateX(-10px);
    }
    75% {
        transform: rotate(270deg) translateX(5px);
    }
    100% {
        top: 100vh;
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Decorative Elements */
.asian-pattern {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="%23c0392b"/><circle cx="80" cy="20" r="15" fill="%23c0392b"/><circle cx="50" cy="60" r="15" fill="%23c0392b"/><circle cx="20" cy="80" r="10" fill="%235dade2"/><circle cx="80" cy="80" r="10" fill="%235dade2"/></svg>') no-repeat center;
    background-size: contain;
}

.pattern-1 { top: 100px; right: 10%; animation: float 6s ease-in-out infinite; }
.pattern-2 { top: 300px; left: 5%; animation: float 8s ease-in-out infinite reverse; }
.pattern-3 { top: 600px; right: 15%; animation: float 7s ease-in-out infinite; }

/* Food Banner Carousel - FIXED */
.food-banner {
    position: absolute;
    top: 80px; /* Change from 0 to 80px - positions below navbar */
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 999; /* Change from 1001 to 999 - lower than header */
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

.food-river {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.food-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(93, 173, 226, 0.3);
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.1);
    opacity: 0.8;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    top: 50%;
    transform: translateY(-50%);
    right: -100px; /* Start from right edge */
}

.food-item:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    border-color: #c0392b;
}

@keyframes float-river {
    0% {
        right: -100px;
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        right: 100vw;
        opacity: 0;
    }
}

/* Individual food item animations with vertical movement */
.food-item.moving {
    animation: float-river 15s linear infinite, vertical-bob 3s ease-in-out infinite;
}

@keyframes vertical-bob {
    0%, 100% { 
        transform: translateY(-50%) translateY(0px); 
    }
    50% { 
        transform: translateY(-50%) translateY(var(--bob-distance)); 
    }
}

/* Stagger the food items with different vertical movements */
.food-item:nth-child(1) {
    --bob-distance: -15px;
    animation-delay: 0s, 0.5s;
}

.food-item:nth-child(2) {
    --bob-distance: 20px;
    animation-delay: 2s, 1s;
}

.food-item:nth-child(3) {
    --bob-distance: -25px;
    animation-delay: 4s, 1.5s;
}

.food-item:nth-child(4) {
    --bob-distance: 18px;
    animation-delay: 6s, 2s;
}

.food-item:nth-child(5) {
    --bob-distance: -12px;
    animation-delay: 8s, 0.8s;
}

.food-item:nth-child(6) {
    --bob-distance: 22px;
    animation-delay: 10s, 1.2s;
}

.food-item:nth-child(7) {
    --bob-distance: -18px;
    animation-delay: 12s, 1.8s;
}

.food-item:nth-child(8) {
    --bob-distance: 16px;
    animation-delay: 14s, 0.3s;
}

/* Modern Navigation Design */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0; /* Change from 120px back to 0 - navbar goes to top */
    width: 100%;
    z-index: 1000; /* Keep higher than food banner */
    border-bottom: 1px solid rgba(93, 173, 226, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #c0392b;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1002;
}

.logo:hover {
    transform: scale(1.05);
    color: #a93226;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1002;
}

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

.logo-image {
    width: 74px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #c0392b;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-text {
    color: #a93226;
}

/* Navbar Verse Styles */
.navbar-verse {
    position: relative;
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
}

.navbar-verse-content {
    background: rgba(248, 253, 255, 0.9);
    border: 1px solid rgba(93, 173, 226, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #2c3e50;
}

.navbar-verse-content:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #5dade2;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(93, 173, 226, 0.15);
}

.navbar-verse-loading {
    background: rgba(248, 253, 255, 0.9);
    border: 1px solid rgba(93, 173, 226, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    justify-content: center;
    font-style: italic;
    color: #5dade2;
}

.verse-icon {
    font-size: 1rem;
    color: #5dade2;
    flex-shrink: 0;
}

.navbar-verse-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.navbar-verse-quote {
    color: #2c3e50;
    font-style: italic;
    line-height: 1.3;
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-verse-ref {
    color: #c0392b;
    font-weight: 600;
    font-size: 0.75rem;
    align-self: flex-end;
}

/* Expand/Collapse Button */
.verse-expand-btn,
.verse-collapse-btn {
    background: none;
    border: none;
    color: #5dade2;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.verse-expand-btn:hover,
.verse-collapse-btn:hover {
    background: rgba(93, 173, 226, 0.1);
    color: #c0392b;
    transform: scale(1.1);
}

.expand-icon,
.collapse-icon {
    font-size: 12px;
    font-weight: bold;
}

/* Dropdown Styles */
.verse-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    margin-top: 5px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(93, 173, 226, 0.3);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.2);
    animation: slideDown 0.3s ease;
}

.verse-dropdown-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.dropdown-verse-text {
    flex: 1;
    min-width: 0;
}

.full-verse-text {
    color: #2c3e50;
    font-style: italic;
    line-height: 1.4;
    font-size: 0.85rem;
    margin: 0 0 8px 0;
}

.full-verse-ref {
    color: #c0392b;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: right;
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Navigation Pills */
.nav-container {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(93, 173, 226, 0.15);
    border: 1px solid rgba(93, 173, 226, 0.2);
    backdrop-filter: blur(10px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #c0392b;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: white;
}

/* Floating Active Indicator */
.nav-indicator {
    position: absolute;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3);
    z-index: 1;
    top: 8px;
    height: 40px;
}

/* Ramen Bowl Animation */
.ramen-bowl {
    position: absolute;
    top: -40px;
    font-size: 2.5rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    left: 0;
}

.ramen-bowl.hopping {
    animation: hop 0.3s ease-in-out; /* Faster animation */
}

@keyframes hop {
    0% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.1) rotate(-5deg);
    }
    50% {
        transform: translateY(-35px) scale(1.2) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) scale(1.1) rotate(5deg);
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* Mobile Menu Toggle - Redesigned */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(93, 173, 226, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(93, 173, 226, 0.1);
    border-color: #5dade2;
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #c0392b;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Modern Mobile Menu */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 253, 255, 0.95));
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 100px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0 30px;
    margin: 0;
}

.mobile-nav-menu ul li {
    margin: 0;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInMobile 0.4s ease forwards;
}

.mobile-nav-menu.active ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-menu.active ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-menu.active ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-menu.active ul li:nth-child(4) { animation-delay: 0.4s; }

.mobile-nav-menu ul li a {
    display: flex;
    align-items: center;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 20px;
    margin: 8px 0;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(93, 173, 226, 0.1);
}

.mobile-nav-menu ul li a:hover,
.mobile-nav-menu ul li a.active {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.3);
}

.mobile-nav-menu ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mobile-nav-menu ul li a:hover::before,
.mobile-nav-menu ul li a.active::before {
    opacity: 1;
    transform: scale(1.5);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #c0392b;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(192, 57, 43, 0.1);
    transform: scale(1.1);
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@keyframes slideInMobile {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section - FIXED */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(248, 253, 255, 0.8) 0%, rgba(232, 244, 248, 0.8) 50%, rgba(240, 248, 255, 0.8) 100%);
    padding-top: 200px; /* Adjusted from 220px to account for food banner + header */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #c0392b;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #c0392b, #5dade2);
    border-radius: 2px;
}

.tagline {
    font-size: 1.7rem;
    color: #5dade2;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hours-above-video {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #5dade2;
    border-radius: 25px;
    padding: 12px 20px;
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hours-above-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(93, 173, 226, 0.2);
}

.hours-icon {
    font-size: 1.5rem;
    color: #5dade2;
}

.hours-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hours-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c0392b;
    margin: 0;
}

.hours-schedule {
    font-size: 0.8rem;
    color: #2c3e50;
    margin: 0;
}

.video-container {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 8px solid #5dade2;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(93, 173, 226, 0.2);
    animation: gentle-bounce 4s ease-in-out infinite;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
}

.cooking-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.video-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.food-logo {
    width: 120px;
    height: 120px;
    margin: 20px auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(93, 173, 226, 0.3));
}

.cafe-illustration .hours-preview {
    text-align: center;
    color: #2c3e50;
}

.cafe-illustration .phone {
    font-size: 20px;
    font-weight: 600;
    color: #c0392b;
    margin-top: 15px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #c0392b, #e74c3c);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.3);
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(192, 57, 43, 0.4);
    background: linear-gradient(45deg, #a93226, #c0392b);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    margin: 20px 0;
    border-radius: 20px;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #c0392b;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #5dade2, #c0392b);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #5dade2;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
}

/* Modern Menu Styles */
.menu-container {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-notice {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.1), rgba(93, 173, 226, 0.1));
    border: 2px solid #5dade2;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.menu-notice h3 {
    color: #c0392b;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.menu-notice p {
    color: #2c3e50;
    margin: 8px 0;
}

.payment-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    font-weight: 600;
    color: #856404;
}

.menu-categories {
    display: grid;
    gap: 40px;
}

/* Traditional Menu Styles */
.menu-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border: 2px solid #5dade2;
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c0392b;
    margin-bottom: 10px;
}

.menu-tagline {
    font-size: 1.3rem;
    color: #5dade2;
    font-style: italic;
    margin-bottom: 20px;
}

.payment-notice-menu {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    font-weight: 600;
    color: #856404;
    font-size: 1.2rem;    
}

/* Weekly Special - Full Width, Always Open */
.special-full-width {
    width: 100%;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.08), rgba(93, 173, 226, 0.08));
    border: 3px solid #c0392b;
    border-radius: 15px;
    padding: 25px;
}

.special-header {
    text-align: center;
    margin-bottom: 20px;
}

.special-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #c0392b;
    margin: 0;
}

.special-content {
    display: block !important;
}

.special-content.active {
    display: block !important;
}

.special-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #5dade2;
}

.special-item .item-header h4 {
    font-size: 1.3rem;
    color: #c0392b;
}

.special-item .price {
    font-size: 1.3rem;
    color: #c0392b;
}

.special-item .item-description {
    font-size: 1rem;
    color: #2c3e50;
}

/* 2x2 Grid Layout */
.menu-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

/* Menu Category Styles */
.menu-category {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #5dade2;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

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

/* Collapsible Menu Sections */
.menu-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 2px solid #5dade2;
}

.menu-category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #c0392b;
    margin: 0;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #5dade2;
    transition: transform 0.3s ease;
}

.menu-category-header.active .toggle-icon {
    transform: rotate(180deg);
}

.menu-category-content {
    display: none;
}

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

.category-description {
    font-style: italic;
    color: #5dade2;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.traditional-menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item-traditional {
    padding: 12px 0;
    border-bottom: 1px dotted #5dade2;
}

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

.item-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    gap: 8px;
}

.item-header h4 {
    color: #c0392b;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.price-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        #5dade2 0,
        #5dade2 4px,
        transparent 4px,
        transparent 8px
    );
    margin: 0 8px;
}

.price {
    color: #c0392b;
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
}

.item-description {
    color: #2c3e50;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.popular-badge {
    background: linear-gradient(45deg, #c0392b, #e74c3c);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: bold;
    margin-left: 8px;
}

/* Toppings - Full Width */
.toppings-full-width {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #5dade2;
    border-radius: 15px;
    padding: 25px;
    grid-column: 1 / -1;
}

.toppings-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #5dade2;
    padding-bottom: 15px;
}

.toppings-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #c0392b;
    margin: 0;
}

.toppings-content {
    /* display: block !important; */
}

.toppings-section {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.1), rgba(192, 57, 43, 0.05));
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.toppings-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.toppings-column h4 {
    color: #c0392b;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #5dade2;
    padding-bottom: 8px;
}

.traditional-toppings {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.topping-item {
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.premium-toppings {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.topping-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2c3e50;
    font-size: 0.9rem;
    padding: 4px 0;
}

.topping-price {
    color: #c0392b;
    font-weight: 600;
}

/* Menu Item Cards with Images */
.menu-item-card {
    background: rgba(248, 253, 255, 0.8);
    border: 1px solid rgba(93, 173, 226, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(93, 173, 226, 0.3);
    flex-shrink: 0;
}

.menu-item-details {
    flex: 1;
}

.menu-item-details h4 {
    color: #c0392b;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item-details p {
    color: #2c3e50;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.menu-item-price {
    color: #c0392b;
    font-weight: bold;
    font-size: 1.3rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Simple payment notice */
.payment-notice-simple {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: #856404;
    font-size: 1.1rem;
}

.menu-items {
    display: grid;
    gap: 20px;
    padding-bottom: 20px;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(93, 173, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.menu-item-card:hover {
    transform: translateX(5px);
    border-color: #5dade2;
    box-shadow: 0 5px 20px rgba(93, 173, 226, 0.15);
}

.menu-item-info h4 {
    color: #c0392b;
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-item-info .popular-badge {
    display: inline-block;
    background: linear-gradient(45deg, #c0392b, #e74c3c);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 10px;
    font-weight: bold;
}

.menu-item-info p {
    color: #2c3e50;
    margin: 0;
    font-size: 0.95rem;
}

.toppings-section h4 {
    color: #c0392b;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.toppings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.topping-category {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(93, 173, 226, 0.2);
}

.topping-category h5 {
    color: #5dade2;
    margin-bottom: 10px;
    font-size: 1rem;
}

.topping-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topping-tag {
    background: rgba(93, 173, 226, 0.1);
    color: #2c3e50;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(93, 173, 226, 0.2);
}

.additional-toppings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.additional-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(93, 173, 226, 0.2);
}

.additional-item span:first-child {
    color: #2c3e50;
}

.additional-item span:last-child {
    color: #c0392b;
    font-weight: 600;
}

.menu-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 173, 226, 0.2);
}

.special-highlight {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.1), rgba(93, 173, 226, 0.1));
    border: 2px solid #c0392b;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.special-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.special-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #c0392b;
    margin-bottom: 15px;
}

.special-highlight .dish-name {
    font-size: 1.5rem;
    color: #5dade2;
    font-weight: 600;
    margin-bottom: 15px;
}

.special-highlight .price {
    font-size: 2rem;
    font-weight: 700;
    color: #c0392b;
    margin-top: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(93, 173, 226, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(93, 173, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-card:hover::before {
    left: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(93, 173, 226, 0.2);
    border-color: #5dade2;
}

.menu-card h3 {
    font-family: 'Playfair Display', serif;
    color: #c0392b;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.menu-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Reviews Section */
#reviews {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

#reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.reviews-section {
    max-width: 1000px;
    margin: 0 auto;
}

/* Reviews Header */
.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.rating-summary {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(93, 173, 226, 0.2);
    text-align: center;
}

.overall-rating {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffd700;
    margin: 5px 0;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

/* Leave Review Button */
.leave-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #4285f4, #34a853);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.3);
    border: none;
    cursor: pointer;
}

.leave-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
    background: linear-gradient(45deg, #3367d6, #2d8a47);
}

/* Reviews Carousel Container */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    height: 380px;
    padding: 20px;
    box-sizing: border-box;
}

/* Reviews Track */
.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    width: 100%;
}

/* Review Cards with Proper Constraints */
.review-card {
    flex: 0 0 calc(100% - 40px);
    width: calc(100% - 40px);
    max-width: none;
    height: calc(100% - 40px);
    margin: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(93, 173, 226, 0.2);
    border-left: 5px solid #5dade2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3rem;
    color: #5dade2;
    opacity: 0.3;
    line-height: 1;
}

.review-stars {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
    flex-shrink: 0;
}

/* Review Text with Better Constraints */
.review-text {
    font-size: 1rem;
    line-height: 1.4;
    color: #2c3e50;
    text-align: center;
    font-style: italic;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    margin: 10px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.review-text::-webkit-scrollbar {
    display: none;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid rgba(93, 173, 226, 0.2);
    flex-shrink: 0;
    margin-top: auto;
}

.review-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #5dade2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: #5dade2;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
    background: #5dade2;
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(93, 173, 226, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #5dade2;
    transform: scale(1.2);
}

/* Google Reviews CTA */
.google-reviews-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 60px 40px;
    margin: 50px 0;
    border: 2px solid #5dade2;
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-card {
    background: rgba(248, 253, 255, 0.9);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(93, 173, 226, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

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

/* Google Maps Image Styles */
.map-link {
    display: block;
    margin-top: 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 173, 226, 0.2);
    height: 250px;
}

.map-link:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.3);
}

.location-map {
    width: 100%;
    height: 200px;  
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-overlay-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    background: rgba(93, 173, 226, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.contact-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #5dade2;
}

.contact-card h3 {
    color: #c0392b;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.contact-card .phone {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c0392b;
}

.hours-list {
    list-style: none;
    margin-top: 15px;
}

.hours-list li {
    margin: 8px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(93, 173, 226, 0.2);
    color: #2c3e50;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 80px;
}

.footer p {
    margin: 10px 0;
}

.footer .tagline {
    color: #5dade2;
    font-style: italic;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Food Banner Mobile */
    .food-banner {
        height: 80px;
        top: 70px; /* Change from 60px to 70px - accounts for mobile header height */
    }
    
    .food-item {
        width: 60px;
        height: 60px;
    }

    /* Header mobile */
    .header {
        top: 0; /* Position below smaller food banner */
    }

    .nav {
        padding: 10px 0;
    }

    .logo {
        font-size: 22px;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 20px;
    }

    /* Mobile hamburger menu display */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    /* Mobile responsive navbar verse */
    .navbar-verse {
        display: none; /* Hide on mobile to save space */
    }
    
    .nav {
        gap: 10px;
    }

    /* Hide ramen bowl on mobile */
    .ramen-bowl {
        display: none;
    }

    /* Hero mobile */
    .hero {
        padding-top: 140px; /* Food banner (80px) + Header (~60px) */
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .tagline {
        font-size: 1.7rem;
    }

    /* Hero video section mobile */
    .hero-video-section {
        gap: 15px;
    }
    
    .hours-above-video {
        padding: 10px 16px;
        border-radius: 20px;
    }
    
    .hours-icon {
        font-size: 1.3rem;
    }
    
    .hours-title {
        font-size: 0.85rem;
    }
    
    .hours-schedule {
        font-size: 0.75rem;
    }

    .verse-card {
        padding: 20px;
        margin: 20px 0;
    }

    .verse-card::before {
        font-size: 40px;
        top: -5px;
        left: 15px;
    }

    .verse-card .verse-text {
        font-size: 0.95rem;
        padding-left: 20px;
    }

    /* Video container mobile */
    .video-container {
        width: 280px;
        height: 280px;
        border-width: 4px;
    }

    .video-overlay {
        bottom: 10px;
        padding: 8px 15px;
        position: static;
        transform: none;
        margin-top: 20px;
        background: rgba(192, 57, 43, 0.9);
        border-radius: 15px;
        padding: 15px;
        backdrop-filter: blur(5px);
    }

    .video-overlay h3 {
        font-size: 12px !important;
        margin-bottom: 3px !important;
        color: white !important;
    }

    .video-overlay p {
        font-size: 10px !important;
    }

    .video-overlay .phone {
        font-size: 14px !important;
        margin-top: 5px !important;
        color: #f8fdff !important;
    }

    /* Sections mobile */
    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* Menu categories mobile */
    .menu-container {
        padding: 0 5px;
    }

    .menu-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-title {
        font-size: 2rem;
    }

    .menu-tagline {
        font-size: 1rem;
    }

    .special-header h3 {
        font-size: 1.6rem;
    }

    .toppings-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .item-header {
        flex-wrap: wrap;
        gap: 4px;
    }

    .price-line {
        min-width: 20px;
    }

    .menu-category-header h3 {
        font-size: 1.2rem;
    }

    .menu-notice {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .menu-notice h3 {
        font-size: 1.3rem;
    }

    .menu-notice p {
        font-size: 0.9rem;
    }

    .payment-notice {
        padding: 12px;
        font-size: 0.85rem;
    }

    .menu-category {
        padding: 25px 15px;
        margin-bottom: 25px;
    }

    .menu-category h3 {
        font-size: 1.5rem;
    }

    .menu-category .category-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .menu-items {
        gap: 15px;
    }

    /* Menu mobile category adjustments */
    .menu-category-header {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .menu-category-header h3 {
        font-size: 1.4rem;
    }

    .menu-category-content.active {
        padding: 25px 15px;
    }

    .menu-item-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }

    .menu-item-image {
        width: 100px;
        height: 100px;
        align-self: center;
    }

    .menu-item-details h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        justify-content: center;
    }

    .menu-item-details p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .menu-item-price {
        font-size: 1.2rem;
        margin-top: 5px;
    }

    .popular-badge {
        display: block !important;
        margin: 5px auto !important;
        width: fit-content;
    }

    .menu-item-info h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .menu-item-info p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .popular-badge {
        display: block !important;
        margin: 5px 0 !important;
        width: fit-content;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .toppings-section {
        padding: 20px 15px;
        margin: 20px 0;
    }

    .toppings-section h4 {
        font-size: 1.2rem;
    }

    .toppings-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .topping-category {
        padding: 12px;
    }

    .topping-category h5 {
        font-size: 0.95rem;
    }

    .topping-tag {
        font-size: 0.8rem;
        padding: 3px 8px;
    }

    .additional-toppings {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .additional-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    /* Reviews section mobile */
    .reviews-section {
        padding: 40px 20px;
        margin: 30px 0;
        border-radius: 15px;
    }

    .reviews-carousel {
        height: 320px;
        max-width: 95%;
        padding: 15px;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 30px);
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        margin: 15px;
        padding: 20px;
    }
    
    .review-text {
        font-size: 0.9rem;
        max-height: 140px;
        padding: 0 10px;
    }
    
    .review-card::before {
        font-size: 2.5rem;
        top: 10px;
        left: 15px;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .carousel-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .review-card {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .carousel-nav {
        margin-top: 20px;
        gap: 15px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Contact section mobile */
    .contact-section {
        padding: 40px 20px;
        margin: 30px 0;
        border-radius: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .contact-card {
        padding: 25px 15px;
    }

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

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card .phone {
        font-size: 1.1rem;
    }

    .hours-list li {
        font-size: 0.95rem;
        padding: 6px 0;
    }

    /* Footer mobile */
    .footer {
        padding: 30px 0;
        margin-top: 50px;
    }

    .footer p {
        font-size: 0.9rem;
        margin: 8px 0;
        padding: 0 15px;
    }

    /* CTA button mobile */
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
        margin-top: 15px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* Food Banner Extra Small */
    .food-banner {
        height: 60px;
        top: 70px; /* Change from 60px to 70px - accounts for mobile header height */
    }
    
    .header {
        top: 0p; /* Keep this */
    }
    
    
    .hero {
        padding-top: 140px; /* Food banner (60px) + Header (~60px) */
    }

    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 18px;
    }

    .mobile-nav-menu {
        max-width: 100%;
    }

    .hours-above-video {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 12px 16px;
    }
    
    .hours-text {
        align-items: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .video-container {
        width: 240px;
        height: 240px;
    }

    .section h2 {
        font-size: 1.7rem;
    }

    .special-highlight h3 {
        font-size: 1.3rem;
    }

    .special-highlight p {
        font-size: 0.9rem;
    }

    .menu-section,
    .reviews-section,
    .contact-section {
        padding: 30px 15px;
        margin: 20px 5px;
    }

    .reviews-carousel {
        height: 300px;
        max-width: 98%;
        padding: 10px;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 20px);
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        margin: 10px;
        padding: 15px;
    }
    
    .review-text {
        font-size: 0.85rem;
        line-height: 1.3;
        max-height: 120px;
        padding: 0 5px;
    }
    
    .review-card::before {
        font-size: 2rem;
        top: 8px;
        left: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .leave-review-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .review-card {
        padding: 15px 10px;
    }

    .contact-card {
        padding: 20px 10px;
    }
}

/* Landscape mobile fix */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .video-container {
        width: 200px;
        height: 200px;
    }
}

.nav-verse-logo {
    max-width: 400px;
    margin-left: 20px;
}

.nav-verse-logo a:hover {
    color: #a93226;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .nav-verse-logo {
        display: none;
    }
}



/* Closure Notice - UPDATED */
.closure-notice {
    /* position: fixed; Changed from absolute to fixed */
    /* margin-top: 180px; */
    margin-bottom: 30px;
    left: 50%;
    /* transform: translateX(-50%); */
    z-index: 9999; /* Much higher z-index to ensure it's above everything */
    width: 90%;
    max-width: 600px;
    text-align: center;
    pointer-events: none; /* Allows clicks to pass through the container */
}

.closure-banner {
    background: linear-gradient(45deg, #c0392b, #e74c3c);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    border: 3px solid #f39c12;
    animation: closurePulse 2s infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    pointer-events: auto; /* Re-enable pointer events for the banner itself */
}

@keyframes closurePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile adjustments for closure notice */
@media (max-width: 768px) {
    .closure-notice {
        width: 95%;
        top: 120px; /* Adjusted for mobile */
    }
    
    .closure-banner {
        font-size: 14px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .closure-notice {
        top: 110px; /* Further adjusted for small screens */
    }
    
    .closure-banner {
        font-size: 13px;
        padding: 8px 14px;
    }
}


/* Closure Notice - AMERICAN FLAG WITH FIREWORKS */
.closure-notice-patriotic {
    /* position: fixed; Changed from absolute to fixed */
    /* margin-top: 180px; */
    margin-bottom: 30px;
    margin-top: 30px;
    left: 50%;
    /* transform: translateX(-50%); */
    z-index: 9999; /* Much higher z-index to ensure it's above everything */
    width: 90%;
    max-width: 600px;
    text-align: center;
    pointer-events: none; /* Allows clicks to pass through the container */
}
    
    .closure-banner-patriotic {
    background:
    /* Light dark overlay for text readability */
    linear-gradient(to right, transparent 0%, transparent 15%, rgba(0,0,0,0.25) 18%, rgba(0,0,0,0.25) 100%),
    /* Blue canton background */
    linear-gradient(to right, #002868 0%, #002868 16%, transparent 16%),
    /* Red and white stripes */
    repeating-linear-gradient(
    to bottom,
    #BF0A30 0px,
    #BF0A30 12px,
    #FFFFFF 12px,
    #FFFFFF 24px
    );
    background-size: 100% 100%;
    color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    box-shadow:
    0 6px 20px rgba(0,0,0,0.4),
    inset 0 2px 4px rgba(255,255,255,0.2);
    border: 2px solid #FFD700;
    animation: flagWave 3s infinite ease-in-out;
    /* text-shadow:
    -2px -2px 0 #FFFFFF,
    2px -2px 0 #FFFFFF,
    -2px 2px 0 #FFFFFF,
    2px 2px 0 #FFFFFF,
    0 0 4px #FFFFFF,
    0 0 8px rgba(255,255,255,0.8); */
    padding-left: 20%;
    pointer-events: auto;
    position: relative;
    overflow: visible;
    }
    
    /* Stars in the blue canton */
    .closure-banner-patriotic::before {
    content: '★ ★ ★ ★ ★ ★ ★\A★ ★ ★ ★ ★ ★ ★\A★ ★ ★ ★ ★ ★ ★\A★ ★ ★ ★ ★ ★ ★\A★ ★ ★ ★ ★ ★ ★\A★ ★ ★ ★ ★ ★ ★\A★ ★ ★ ★ ★ ★ ★';
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    color: white;
    font-size: 10px;
    line-height: 10px;
    padding: 2px;
    white-space: pre;
    z-index: 1;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    }
    
    @keyframes flagWave {
    0%, 100% {
    transform: scale(1) rotateY(0deg);
    }
    25% {
    transform: scale(1.02) rotateY(1deg);
    }
    50% {
    transform: scale(1.05) rotateY(0deg);
    }
    75% {
    transform: scale(1.02) rotateY(-1deg);
    }
    }
    
    /* Fireworks - Position above the flag */
    /* TO TURN OFF FIREWORKS: Add this line to your CSS: .closure-notice-patriotic .firework { display: none; } */
    .closure-notice-patriotic .firework {
    position: absolute;
    top: -80px;
    z-index: 20;
    pointer-events: none;
    }
    
    /* Firework animation and styles */
    @keyframes firework {
    0% { transform: translate(var(--x), var(--initialY)); width: var(--initialSize); opacity: 1; }
    50% { width: 0.5vmin; opacity: 1; }
    100% { width: var(--finalSize); opacity: 0; }
    }
    
    .firework,
    .firework::before,
    .firework::after {
    --initialSize: 0.3vmin;
    --finalSize: 25vmin;
    --particleSize: 0.15vmin;
    --color1: #FF4444;
    --color2: #FFFFFF;
    --color3: #4444FF;
    --color4: #FFD700;
    --color5: #FF0000;
    --color6: #0052CC;
    --y: 50px;
    --x: -50%;
    --initialY: 100vmin;
    content: "";
    animation: firework 3s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, var(--y));
    width: var(--initialSize);
    aspect-ratio: 1;
    background: 
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 50% 0%,
    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 50%,
    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 50% 100%,
    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 0% 50%,
    
    /* bottom right */
    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 80% 90%,
    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 95% 90%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 90% 70%,
    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 60%,
    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 55% 80%,
    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 70% 77%,
    
    /* bottom left */
    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 22% 90%,
    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 45% 90%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 33% 70%,
    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 10% 60%,
    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 31% 80%,
    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 28% 77%,
    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 13% 72%,
    
    /* top left */
    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 80% 10%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 95% 14%,
    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 90% 23%,
    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 100% 43%,
    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 85% 27%,
    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 77% 37%,
    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 60% 7%,
    
    /* top right */
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 22% 14%,
    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 45% 20%,
    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 33% 34%,
    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 10% 29%,
    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 31% 37%,
    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 28% 7%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 13% 42%;
    background-size: var(--initialSize) var(--initialSize);
    background-repeat: no-repeat;
    }
    
    .firework::before {
    --x: -50%;
    --y: -50%;
    --initialY: -50%;
    transform: translate(-50%, -50%) rotate(40deg) scale(1.3) rotateY(40deg);
    }
    
    .firework::after {
    --x: -50%;
    --y: -50%;
    --initialY: -50%;
    transform: translate(-50%, -50%) rotate(170deg) scale(1.15) rotateY(-30deg);
    }
    
    /* Second firework - positioned differently */
    .closure-notice-patriotic .firework:nth-child(2) {
    --x: 15vmin;
    left: 20%;
    }
    
    .firework:nth-child(2),
    .firework:nth-child(2)::before,
    .firework:nth-child(2)::after {
    --color1: #FF0000;
    --color2: #FFFFFF;
    --color3: #0052CC;
    --color4: #FFD700;
    --color5: #BF0A30;
    --color6: #002868;
    --finalSize: 20vmin;
    animation-delay: -1s;
    }
    
    /* Third firework */
    .closure-notice-patriotic .firework:nth-child(3) {
    --x: -15vmin;
    --y: -15vmin;
    left: 80%;
    }
    
    .firework:nth-child(3),
    .firework:nth-child(3)::before,
    .firework:nth-child(3)::after {
    --color1: #4444FF;
    --color2: #FFFFFF;
    --color3: #FF4444;
    --color4: #FFD700;
    --color5: #0052CC;
    --color6: #BF0A30;
    --finalSize: 22vmin;
    animation-delay: -2s;
    }
    
    @media (max-width: 800px) {
    .closure-notice-patriotic {
    width: 95%;
    }
    .closure-banner-patriotic {
    font-size: 11px;
    padding: 6px 15px;
    padding-left: 22%;
    }
    .closure-banner-patriotic::before {
    content: '★★★★★★\A★★★★★★\A★★★★★★\A★★★★★★\A★★★★★★\A★★★★★★\A★★★★★★';
    font-size: 6px;
    line-height: 8px;
    }
    /* Scale down fireworks on tablet */
    .closure-notice-patriotic .firework,
    .closure-notice-patriotic .firework::before,
    .closure-notice-patriotic .firework::after {
    --finalSize: 15vmin;
    --initialSize: 0.2vmin;
    --particleSize: 0.1vmin;
    }
    .closure-notice-patriotic .firework {
    top: -60px;
    }
    }
    
    @media (max-width: 480px) {
    .closure-banner-patriotic {
    font-size: 10px;
    padding: 5px 12px;
    padding-left: 24%;
    }
    .closure-banner-patriotic::before {
    content: '★★★★★\A★★★★★\A★★★★★\A★★★★★\A★★★★★';
    font-size: 8px;
    line-height: 7px;
    }
    /* Keep fireworks same size as desktop on mobile */
    .closure-notice-patriotic .firework {
    top: -80px;
    }
    }

/* Large tablets and small laptops */
@media (max-width: 1024px) {
    .closure-notice-patriotic {
    width: 92%;
    }
    .closure-banner-patriotic {
    font-size: 14px;
    padding: 10px 20px;
    padding-left: 21%;
    }
    .closure-banner-patriotic::before {
    content: '★★★★★★\A★★★★★★\A★★★★★★\A★★★★★★\A★★★★★★';
    font-size: 8px;
    line-height: 9px;
    }
    }
    
    /* Medium tablets */
    @media (max-width: 900px) {
    .closure-notice-patriotic {
    width: 94%;
    }
    .closure-banner-patriotic {
    font-size: 13px;
    padding: 8px 18px;
    padding-left: 21%;
    }
    .closure-banner-patriotic::before {
    font-size: 7px;
    line-height: 8px;
    }
    }
    
    /* Small tablets */
    @media (max-width: 700px) {
    .closure-notice-patriotic {
    width: 96%;
    }
    .closure-banner-patriotic {
    font-size: 12px;
    padding: 7px 16px;
    padding-left: 22%;
    }
    .closure-banner-patriotic::before {
    font-size: 6px;
    line-height: 8px;
    }
    }
    
    /* Large phones */
    @media (max-width: 600px) {
    .closure-notice-patriotic {
    width: 97%;
    }
    .closure-banner-patriotic {
    font-size: 11px;
    padding: 6px 14px;
    padding-left: 23%;
    }
    }
    
    /* Medium phones */
    @media (max-width: 520px) {
    .closure-notice-patriotic {
    width: 98%;
    }
    .closure-banner-patriotic {
    font-size: 10px;
    padding: 5px 12px;
    padding-left: 24%;
    }
    }
    
    /* Very small phones */
    @media (max-width: 400px) {
    .closure-banner-patriotic {
    font-size: 9px;
    padding: 4px 10px;
    padding-left: 25%;
    }
    .closure-banner-patriotic::before {
    content: '★★★★★\A★★★★★\A★★★★★\A★★★★★\A★★★★★';
    font-size: 6px;
    line-height: 7px;
    }
    }