* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fefaf5;  /* warm earthy background */
    color: #2d2a24;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* Rustic Urban palette: red / maroon + terracotta + grey */
:root {
    --red: #b33a2c;        /* vibrant red accent */
    --maroon: #7d2e24;      /* deep maroon */
    --terracotta: #c96e4b;
    --wood: #a57c5c;
    --grey-dark: #2f2e2b;
    --grey-soft: #5c5a53;
    --bg-light: #fdf7f0;
    --bg-card: #ffffffd9;
    --shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 { 
    font-size: 2rem; 
    margin-bottom: 1.2rem; 
    border-left: 8px solid var(--maroon); 
    padding-left: 1rem; 
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* ===== HEADER ===== */
header {
    background: var(--grey-dark);
    color: white;
    padding: 0.8rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.9rem;
    color: white;
    line-height: 1.1;
}

.logo span {
    color: var(--red);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 3px;
    display: block;
}

.nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav a {
    color: #eee;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.2s;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover { 
    border-bottom-color: var(--red); 
    color: white; 
}

/* ===== HERO SLIDER (simulated with pure css fade) ===== */
.hero {
    position: relative;
    height: 85vh;
    max-height: 700px;
    min-height: 600px;
    overflow: hidden;
    background: #2d2a24;
}

.slide-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeCycle 24s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.65), rgba(45,30,20,0.4));
}

.slide:nth-child(1) { 
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAwIiBoZWlnaHQ9IjgwMCIgdmlld0JveD0iMCAwIDEyMDAgODAwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjYzE0YzNhIi8+PHRleHQgeD0iMTUwIiB5PSI0MDAiIGZpbGw9IndoaXRlIiBmb250LWZhbWlseT0iQXJpYWwiIGZvbnQtc2l6ZT0iNDAiPlNpenpsaW5nIE55YW1hIENob21hPC90ZXh0Pjwvc3ZnPg=='); 
}

.slide:nth-child(2) { 
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAwIiBoZWlnaHQ9IjgwMCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2Q5N2MzZSIvPjx0ZXh0IHg9IjE1MCIgeT0iNDAwIiBmaWxsPSJ3aGl0ZSIgZm9udC1zaXplPSI0MCI+S2lkcyBQbGF5aW5nPC90ZXh0Pjwvc3ZnPg=='); 
    animation-delay: -6s; 
}

.slide:nth-child(3) { 
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAwIiBoZWlnaHQ9IjgwMCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iIzU3NDk0MCIvPjx0ZXh0IHg9IjE1MCIgeT0iNDAwIiBmaWxsPSJ3aGl0ZSIgZm9udC1zaXplPSI0MCI+UG9vbCAmIERhcnRzPC90ZXh0Pjwvc3ZnPg=='); 
    animation-delay: -12s; 
}

.slide:nth-child(4) { 
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAwIiBoZWlnaHQ9IjgwMCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iIzdhNjU1NSIvPjx0ZXh0IHg9IjE1MCIgeT0iNDAwIiBmaWxsPSJ3aGl0ZSIgZm9udC1zaXplPSI0MCI+U29sYXIgT2ZmaWNlPC90ZXh0Pjwvc3ZnPg=='); 
    animation-delay: -18s; 
}

.slide:nth-child(5) { 
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAwIiBoZWlnaHQ9IjgwMCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iIzNhNTk2NSIvPjx0ZXh0IHg9IjE1MCIgeT0iNDAwIiBmaWxsPSJ3aGl0ZSIgZm9udC1zaXplPSI0MCI+Q2FyIFdhc2ggU2VydmljZTwvdGV4dD48L3N2Zz4='); 
    animation-delay: -24s; 
}

@keyframes fadeCycle {
    0%, 22% { opacity: 0; }
    5%, 17% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 1.5rem;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content h2 {
    font-size: clamp(1.8rem, 8vw, 4rem);
    border: none;
    text-shadow: 3px 3px 0 var(--maroon);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 600;
    margin: 0.5rem 0 1.5rem;
    letter-spacing: 1px;
    line-height: 1.3;
}

.btn-group { 
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    border: 2px solid transparent;
    background: var(--red);
    color: white;
    box-shadow: 0 8px 18px rgba(0,0,0,0.3);
    font-size: clamp(0.8rem, 3vw, 1rem);
    white-space: nowrap;
}

.btn-outline { 
    background: transparent; 
    border-color: white; 
    color: white; 
}

.btn:hover { 
    transform: scale(1.05); 
    background: var(--maroon); 
}

.btn-outline:hover { 
    background: white; 
    color: var(--maroon); 
    border-color: white; 
}

/* ===== multi‑service selector (interactive) ===== */
.service-ribbon {
    background: var(--grey-dark); 
    padding: 2rem 0;
}

.service-icons {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1.5rem 2.5rem;
}

.service-item {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 0.3rem;
    cursor: pointer; 
    filter: brightness(0.9); 
    transition: 0.2s; 
    color: #ccc;
    font-weight: 600; 
    border-bottom: 3px solid transparent; 
    padding-bottom: 0.3rem;
}

.service-item i { 
    font-size: 2.2rem; 
    color: var(--terracotta); 
}

.service-item.active { 
    border-bottom-color: var(--red); 
    color: white; 
    filter: brightness(1.2); 
}

.service-item.active i { 
    color: white; 
}

#servicePreview {
    margin-top: 1.5rem; 
    background: #443e36; 
    padding: 1.5rem; 
    border-radius: 60px;
    color: white; 
    text-align: center; 
    font-size: 1.5rem; 
    font-weight: 600;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="%23b33a2c"><circle cx="30" cy="30" r="6"/></svg>');
    background-repeat: no-repeat; 
    background-position: 95% center;
}

/* ===== CARDS & SECTIONS ===== */
.card-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--bg-card); 
    backdrop-filter: blur(2px); 
    border-radius: 2rem 1rem 2rem 1rem;
    padding: 2rem 1.5rem; 
    box-shadow: var(--shadow); 
    border: 1px solid #e0cdbb;
    transition: all 0.25s;
}

.service-card:hover { 
    transform: translateY(-8px); 
    background: white; 
}

.service-card i { 
    font-size: 2.8rem; 
    color: var(--maroon); 
}

.service-card h3 { 
    font-size: 1.9rem; 
    margin: 0.5rem 0; 
}

.price-badge { 
    background: var(--red); 
    color: white; 
    display: inline-block; 
    padding: 0.2rem 1rem; 
    border-radius: 40px; 
    font-size: 0.9rem; 
    font-weight: 600; 
}

/* menu gallery */
.menu-grid {
    display: grid; 
    grid-template-columns: repeat(3,1fr); 
    gap: 1.5rem;
}

.menu-item {
    background: white; 
    border-radius: 1.5rem; 
    padding: 1.8rem 1rem; 
    text-align: center; 
    box-shadow: 0 5px 15px #f0ddd0;
}

.menu-item .price { 
    color: var(--maroon); 
    font-weight: 800; 
    font-size: 1.6rem; 
}

/* kids zone / office etc */
.feature-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 2rem; 
    margin-top: 2rem; 
}

.feature-block { 
    background: var(--maroon); 
    color: white; 
    border-radius: 2rem; 
    padding: 2rem; 
    flex: 1 1 200px; 
}

/* map & contact */
.contact-row {
    display: flex; 
    flex-wrap: wrap; 
    gap: 2rem; 
    background: #e4d6ca; 
    border-radius: 2.5rem; 
    padding: 2rem;
}

.map { 
    flex: 2; 
    min-height: 280px; 
    background: #b0a89b; 
    border-radius: 2rem; 
    overflow: hidden; 
}

.info { 
    flex: 1; 
}

/* WhatsApp float */
.wa-float {
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    background: #25D366; 
    width: 65px; 
    height: 65px;
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: white; 
    font-size: 2.5rem; 
    box-shadow: 0 10px 20px #00000044; 
    z-index: 99;
    transition: 0.2s;
    text-decoration: none;
}

.wa-float:hover { 
    transform: scale(1.1); 
    background: #20b859; 
}

/* mobile optimizations */
@media (max-width: 900px) {
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: normal;
    }
    
    .btn-group {
        gap: 0.5rem;
    }
}

@media (max-width: 700px) {
    h2 { 
        font-size: 1.8rem; 
    } 
    .header-flex { 
        flex-direction: column; 
        gap: 0.5rem; 
    }
    .nav ul { 
        justify-content: center; 
        gap: 0.8rem; 
    }
    .menu-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Video hero specific */
    .video-hero {
        height: auto;
        min-height: 550px;
        padding: 3rem 0;
    }
    
    .video-hero .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
        width: calc(100% - 2rem);
        max-width: none;
    }
    
    .hero-tagline {
        margin: 0.5rem 0 1rem;
    }
    
    .btn-group {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .video-hero {
        min-height: 500px;
    }
    
    .video-hero .hero-content {
        padding: 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
}

footer {
    background: var(--grey-dark); 
    color: #aaa; 
    text-align: center; 
    padding: 3rem 1rem;
    margin-top: 4rem;
}
/* Video Hero Styles */
.video-hero {
     height: 85vh;
    max-height: 700px;
    min-height: 600px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures video covers entire area without distortion */
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(45,30,20,0.5));
    z-index: 1;
}

.video-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 95%;
    width: 100%;
    padding: 2rem;
    margin: 0 auto;
    top: auto;
    transform: none;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 2rem;
    backdrop-filter: blur(3px);
}

/* Mobile optimization for video */
@media (max-width: 700px) {
    .video-hero {
        height: 70vh;
        min-height: 500px;
    }
}
/* Menu Items with Hover Images */
.menu-item {
    background: white;
    border-radius: 1.5rem;
    padding: 1.8rem 1rem;
    text-align: center;
    box-shadow: 0 5px 15px #f0ddd0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Individual menu item images using data attributes - we'll set these via JS or direct CSS */
.menu-item[data-image="gallery/gracenyama-choma.jpg"] .menu-image-hover {
    background-image: url('galery/grace.jpg');
}
.menu-item[data-image="images/pork-ribs.jpg"] .menu-image-hover {
    background-image: url('../images/pork-ribs.jpg');
}
.menu-item[data-image="images/chomakuku.jpg"] .menu-image-hover {
    background-image: url('../images/chomakuku.jpg');
}
.menu-item[data-image="images/pilau.jpg"] .menu-image-hover {
    background-image: url('../images/pilau.jpg');
}
.menu-item[data-image="images/delivery-platter.jpg"] .menu-image-hover {
    background-image: url('../images/delivery-platter.jpg');
}
.menu-item[data-image="images/chips-sausage.jpg"] .menu-image-hover {
    background-image: url('../images/chips-sausage.jpg');
}

/* Dark overlay on hover image for better text readability */
.menu-item:hover .menu-image-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.menu-item:hover .menu-image-hover {
    opacity: 1;
}

/* Content stays above the image */
.menu-item > *:not(.menu-image-hover) {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.menu-item:hover .menu-icon,
.menu-item:hover h3,
.menu-item:hover .price,
.menu-item:hover p {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.menu-item .menu-icon {
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

/* For the chips icon (using fa-utensils as fallback) */
.fa-french-fries:before {
    content: "\f816"; /* Font Awesome french fries icon */
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .menu-item {
        min-height: 200px;
    }
}

/* Force menu hover images to work */
.menu-item:hover .menu-image-hover {
    opacity: 1 !important;
}

.menu-item:hover .menu-icon,
.menu-item:hover h3,
.menu-item:hover .price,
.menu-item:hover p {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
    z-index: 4;
    position: relative;
}
/* Order Modal Styles */
.order-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.order-modal-content {
    background: white;
    margin: 3% auto;
    padding: 2rem;
    width: 90%;
    max-width: 900px;
    border-radius: 2rem;
    position: relative;
    animation: slideDown 0.4s ease;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-order-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--grey-soft);
    transition: color 0.3s ease;
    z-index: 10;
}

.close-order-modal:hover {
    color: var(--red);
}

.order-modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--red);
}

.order-modal-header i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.order-modal-header h2 {
    color: var(--maroon);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--grey-soft);
    font-size: 1rem;
}

.order-menu-items h3 {
    color: var(--maroon);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    border-left: 5px solid var(--red);
    padding-left: 1rem;
}

.order-menu-items h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.order-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.order-menu-item {
    background: #fdf7f0;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #f0e0d0;
}

.order-menu-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.item-info h4 {
    color: var(--maroon);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.item-info p {
    color: var(--grey-soft);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.item-price {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.whatsapp-order-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-order-btn:hover {
    background: #20b859;
    transform: scale(1.05);
}

.whatsapp-order-btn::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
    font-size: 1rem;
}

.order-modal-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--terracotta);
    text-align: center;
}

.whatsapp-order-summary {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-order-summary i {
    font-size: 2rem;
    color: #25D366;
}

.whatsapp-order-summary p {
    color: #2e7d32;
    margin: 0;
    font-size: 0.9rem;
}

.delivery-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.delivery-info span {
    color: var(--grey-soft);
    font-size: 0.85rem;
}

.delivery-info i {
    color: var(--red);
    margin-right: 0.3rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 700px) {
    .order-modal-content {
        padding: 1.5rem;
        margin: 5% auto;
        width: 95%;
    }
    
    .order-menu-item {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-order-btn {
        width: 100%;
        justify-content: center;
    }
    
    .order-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .delivery-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* Vegan Section Styles */
.vegan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.vegan-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e0cdbb;
    position: relative;
    overflow: hidden;
}

.vegan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
    border-color: var(--red);
}

.vegan-card i {
    margin-bottom: 1rem;
}

.vegan-card h3 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.vegan-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 0.8rem;
}

.vegan-card p {
    color: var(--grey-soft);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Vegan Section Responsive */
@media (max-width: 700px) {
    .vegan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .vegan-card {
        padding: 1.5rem 1rem;
    }
    
    .vegan-card h3 {
        font-size: 1.2rem;
    }
    
    .vegan-card .price {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .vegan-grid {
        grid-template-columns: 1fr;
    }
}
/* Ensure vegan modal uses same styles as order modal */
#veganMenuModal .order-modal-content {
    background: white;
    border-radius: 2rem;
    max-width: 900px;
}

#veganMenuModal .order-modal-header {
    text-align: center;
    border-bottom: 3px solid var(--red);
    padding-bottom: 1rem;
}

#veganMenuModal .order-modal-header i {
    font-size: 3rem;
    color: var(--red);
}

#veganMenuModal .order-modal-header h2 {
    color: var(--maroon);
    font-size: 1.8rem;
}

/* Vegan specific button styling */
.vegan-whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vegan-whatsapp-btn:hover {
    background: #20b859;
    transform: scale(1.05);
}

.vegan-whatsapp-btn::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
    font-size: 1rem;
}

/* Mobile Navigation - Hamburger Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 101;
}

.mobile-menu-btn:hover {
    color: var(--red);
}

@media (max-width: 700px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 1rem;
    }
    
    .header-flex {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .logo {
        width: 100%;
        text-align: left;
        padding-right: 60px;
    }
    
    .nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--grey-dark);
        border-radius: 0 0 1.5rem 1.5rem;
        margin-top: 0.5rem;
    }
    
    .nav.open {
        max-height: 400px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0.5rem 0;
    }
    
    .nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav ul li:last-child {
        border-bottom: none;
    }
    
    .nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav ul li a:hover,
    .nav ul li a.active {
        background: rgba(179, 58, 44, 0.2);
        border-bottom-color: transparent;
        padding-left: 2rem;
    }
    
    /* Animation for menu items */
    .nav.open ul li {
        animation: slideIn 0.3s ease forwards;
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .nav.open ul li:nth-child(1) { animation-delay: 0.05s; }
    .nav.open ul li:nth-child(2) { animation-delay: 0.1s; }
    .nav.open ul li:nth-child(3) { animation-delay: 0.15s; }
    .nav.open ul li:nth-child(4) { animation-delay: 0.2s; }
    .nav.open ul li:nth-child(5) { animation-delay: 0.25s; }
    
    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .mobile-menu-btn {
        right: 1rem;
        top: 0.8rem;
        font-size: 1.5rem;
    }
    
    .nav ul li a {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
}

/* When menu is open, prevent body scroll (optional) */
body.menu-open {
    overflow: hidden;
}

/* Improve touch targets on mobile */
@media (max-width: 700px) {
    .nav ul li a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    /* Active page indicator */
    .nav ul li a.active {
        background: rgba(179, 58, 44, 0.3);
        border-left: 4px solid var(--red);
        padding-left: calc(1.5rem - 4px);
    }
    
    /* Add subtle shadow when menu is open */
    .nav.open {
        box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .nav {
        -webkit-overflow-scrolling: touch;
    }
}