:root {
    --primary-color: #e65100;
    --secondary-color: #ff833a;
    --text-color: #2d3748;
    --light-bg: #f9f9f9;
    --secondary-bg: #f0fdf4;  /* Light green background */
    --menu-bg: #FDF6F0;
    --header-height: 80px;
    --category-btn-color: #22C55E;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', 'Montserrat', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Poppins', serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

/* Header and Navigation */
header {
    background-color: #bdecd5;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

#logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
    padding: 5px 10px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Toast Link Style */
.nav-links a[href*="toasttab.com"] {
    color: #e65100 !important;
}

.nav-links a[href*="toasttab.com"]:hover {
    color: #ff833a !important;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: #bdecd5;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
        gap: 20px;
    }

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-content h1 {
    font-family: 'Poppins', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.hero-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 6px;
}

.hero-btn.primary {
    background-color: #E53E3E;
    color: white;
    border: none;
}

.hero-btn.primary:hover {
    background-color: #C53030;
    transform: translateY(-2px);
}

.hero-btn.secondary {
    background-color: transparent;
    color: white;
    border: 1.5px solid white;
}

.hero-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Menu Section */
#all-menu {
    padding-top: 40px;
    position: relative;
    z-index: 2;
}

/* Menu Categories */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.category-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn.active {
    background: var(--category-btn-color);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.category-btn:hover:not(.active) {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

/* Menu Grid */
.menu-grid {
    padding: 40px 0;
}

.menu-category-section {
    margin-bottom: 60px;
}

.menu-category-section:last-child {
    margin-bottom: 0;
}

.menu-category-section .category-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-category-section .category-title .category-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-category-section .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 0 20px;
}

.food-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.food-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.food-card .description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.food-card .price-spice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.food-card .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.food-card .add-to-cart-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.food-card .add-to-cart-btn:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .menu-category-section .category-title {
        font-size: 1.6rem;
        padding-left: 0;
    }

    .menu-category-section .category-title .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .menu-category-section .cards-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
        padding: 0 10px;
    }

    .food-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .menu-category-section .cards-container {
        grid-template-columns: 1fr;
    }
}

/* HOME PAGE MENU SECTIONS - CLEAN IMPLEMENTATION */
.home-menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.home-category-section {
    display: grid;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.home-category-section .cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* HOME PAGE CARDS - MATCHING ALL-MENU STYLE */
.home-category-section .food-card {
    position: relative !important;
    background: white !important;
    border: 1px solid #000000 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 160px !important;
    max-height: 160px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    cursor: pointer !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.home-category-section .food-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
    border-color: #22C55E !important;
}

.home-category-section .food-card .card-content {
    flex: 1 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
    overflow: hidden !important;
    padding-right: 60px !important;
}

.home-category-section .food-card .item-name {
    font-size: 1.0rem !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.2 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.home-category-section .food-card .item-description {
    font-size: 0.8rem !important;
    color: #6b7280 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.home-category-section .food-card .card-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.home-category-section .food-card .item-price {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 !important;
}

.home-category-section .food-card .add-to-cart-btn {
    display: none !important;
}

.home-category-section .food-card .item-badge {
    position: absolute !important;
    top: 50% !important;
    right: 20px !important;
    transform: translateY(-50%) !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    z-index: 2 !important;
}

.home-category-section .food-card .badge-special {
    background: #ff6b35 !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3) !important;
}

.home-category-section .food-card .badge-must-try {
    background: #22c55e !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3) !important;
}

/* RESPONSIVE DESIGN FOR HOME PAGE CARDS */
@media (max-width: 768px) {
    .home-category-section .food-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        min-height: 140px !important;
    }
    
    .home-category-section .food-card .item-badge {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        transform: none !important;
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
    }
}

@media (max-width: 480px) {
    .home-category-section .food-card {
        min-height: 120px !important;
    }
}

.category-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 80px;
    min-height: 65px;
}

.category-title::before {
    content: attr(data-icon);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.view-all-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.view-all-btn:hover {
    background-color: var(--secondary-color);
}

/* Menu navigation bar at top */
.menu-categories-bar {
    display: flex;
    gap: 30px;
    margin-bottom: 32px;
    padding: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
    background: none;
}

.category-pill {
    background: #f7fafc;
    border: 1.5px solid #000000;
    border-radius: 500px;
    padding: 50px 50px 50px 50px;
    font-weight: 500;
    font-size: 1rem;
    color: #222;
    cursor: pointer;
    transition: box-shadow 0.18s, background 0.18s, color 0.18s, border 0.18s;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: none;
    width: 80px;
    height: 130px;
}

.category-pill.selected {
    background: #f0fdf4;
    color: #22C55E;
    border: 1.5px solid #22C55E;
    box-shadow: 0 0 0 2px #22C55E22;
}

.category-pill:hover {
    background: #e6f7ee;
    color: #22C55E;
    border: 1.5px solid #22C55E;
}

.category-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0;
    display: block;
}

.category-pill span {
    font-size: 0.98rem;
    font-weight: 500;
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    margin: 0;
    color: inherit;
    text-align: center;
}

@media (max-width: 900px) {
    .menu-categories-bar {
        gap: 8px;
    }
    .category-pill {
        min-width: 60px;
        min-height: 70px;
        padding: 7px 7px 4px 7px;
    }
    .category-icon-img {
        width: 24px;
        height: 24px;
    }
}

/* Menu Section Layout - Grid-based 2-column layout */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* or your preferred gap */
}

.menu-items-grid::-webkit-scrollbar {
    display: none;
}

.menu-item-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.menu-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: #22C55E;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 16px 0;
    line-height: 1.5;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #22C55E;
    margin: 0;
}

.add-to-cart-btn {
    background: #22C55E;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 80px;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-item-card {
        min-height: auto;
    }
    
    .category-title-left {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item-card {
        min-height: 120px;
    }
}

.menu-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.menu-item .heart-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    cursor: pointer;
    font-size: 1.4rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.menu-item .heart-icon:hover {
    background: rgba(0, 0, 0, 0.5);
}

.menu-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.badge.veg {
    background: #22C55E;
    color: white;
}

.badge.non-veg {
    background: #EF4444;
    color: white;
}

.badge.popular {
    background: #F97316;
    color: white;
}

.menu-content {
    background: transparent;
    padding: 0;
}

.menu-content h3 {
    color: #831843;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-family: 'Poppins', serif;
}

.menu-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price-spice {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    gap: 10px;
}

.spice-indicator {
    display: flex;
    gap: 2px;
}

.spice-indicator img {
    width: 16px;
    height: 16px;
}

/* Gallery Section */
#gallery {
    background-color: var(--secondary-bg);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

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

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Responsive gallery grid */
@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);  /* 5 images per row on extra large screens */
    }
}

@media (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);  /* 4 images per row on large screens */
    }
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);  /* 3 images per row on medium screens */
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);  /* 2 images per row on small screens */
    }
}

@media (max-width: 479px) {
    .gallery-grid {
        grid-template-columns: 1fr;  /* 1 image per row on extra small screens */
    }
    .gallery-caption {
        font-size: 0.8rem;
        padding: 10px;
    }
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact Section */
.contact-content {
    position: relative;
    bottom: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.restaurant-info {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.restaurant-info h3 {
    color: #831843;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.info-item h4 {
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

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

.contact-form-container {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: #831843;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .home-menu-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .home-menu-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    nav {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: #bdecd5;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
        gap: 20px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .menu-categories {
        gap: 15px;
        padding: 0 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
        padding: 16px;
    }
    
    .menu-grid .food-card {
        padding: 16px;
    }
    
    .menu-grid .food-card .add-to-cart-btn {
        padding: 6px 12px;
        min-width: 100px;
    }
    
    .gallery-grid {
        gap: 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .menu-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .menu-categories::-webkit-scrollbar {
        display: none;
    }
    
    .category-btn {
        flex: 0 0 auto;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-item i {
        margin: 0 auto;
    }
}

/* Add mobile menu toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Utility Classes */
.section-padding { 
    padding: 80px 0; 
}
.text-center { 
    text-align: center; 
}
.img-fluid { max-width: 100%; height: auto; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-fade-in { animation: fadeInUp 0.8s forwards; }
.animate-slide-in { animation: slideIn 0.8s forwards; }

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1101;
}

#gallery-modal-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.gallery-modal-caption {
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-modal-caption h3 {
    margin-bottom: 10px;
    color: white;
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-modal-prev {
    left: -60px;
}

.gallery-modal-next {
    right: -60px;
}

@media (max-width: 768px) {
    .gallery-modal-content {
        max-width: 95%;
    }

    .gallery-modal-close {
        top: 10px;
        right: 10px;
    }

    .gallery-modal-prev,
    .gallery-modal-next {
        padding: 10px;
        font-size: 20px;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }
}

/* Section Headings */
section h2 {
    margin-bottom: 40px;
    position: relative;
    padding-top: 10px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Catering Section */
.catering-content {
    max-width: 1200px;
    margin: 0 auto;
}

.catering-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.catering-intro p {
    font-size: 1.2rem;
    color: #666;
}

.catering-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.catering-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.catering-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.catering-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.catering-card p {
    color: #666;
    margin-bottom: 20px;
}

.catering-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.catering-card ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.catering-card ul li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.catering-cta {
    text-align: center;
    margin-top: 40px;
}

.catering-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #666;
}

@media (max-width: 768px) {
    .catering-options {
        grid-template-columns: 1fr;
    }
    
    .catering-card {
        padding: 20px;
    }
}

.view-all-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.view-all-btn:hover {
    background-color: var(--secondary-color);
}

/* Cart Styles */
.add-to-cart-btn {
    margin-left: 0;
    margin-bottom: 0;
    align-self: flex-end;
}

.cart-container {
    margin: 20px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 15px 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 20px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    padding-right: 20px;
}

.cart-item-details h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.item-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.item-price {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1em;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #c0392b;
}

.cart-summary {
    text-align: right;
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-summary .total {
    margin-bottom: 15px;
}

.cart-summary h3 {
    color: #333;
    font-size: 1.4em;
}

#checkout-btn {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#checkout-btn:hover {
    background-color: #27ae60;
}

.empty-cart {
    text-align: center;
    padding: 40px;
    font-size: 1.2em;
    color: #666;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2ecc71;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Cart Badge Styles */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.food-card.redesigned {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    min-height: 200px;
}
.card-content {
    position: relative;
}
.chef-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px; /* or your preferred size */
    height: 28px;
    z-index: 2;
}

.food-card.redesigned:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.food-card .food-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.food-card .food-desc {
    font-size: 0.9rem;
    color: #666;
    flex-grow: 1;
}

.food-card .price-spice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.food-card .food-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.food-card .add-to-cart-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.food-card .add-to-cart-btn:hover {
    background-color: var(--secondary-color);
}

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

.menu-grid h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    text-transform: capitalize;
}

.home-categories-container {
    margin-top: 30px;
}

.home-category-section {
    margin-bottom: 40px;
}

.home-category-section .food-card {
    margin: 0;
}

/* Make all cards appear in one row */
.home-categories-container {
    display: block;
}

.home-category-section .category-title {
    margin-bottom: 30px;
}

/* Create a flex container for cards */
.home-category-section {
    display: flex;
    flex-direction: column;
}

.home-categories-container .food-card {
    flex: 1;
    min-width: calc(25% - 24px); /* 4 cards with gap */
}

/* Container for all cards */
.all-cards-container {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .all-cards-container {
        flex-wrap: wrap;
    }
    
    .home-categories-container .food-card {
        min-width: calc(50% - 12px); /* 2 cards per row on smaller screens */
    }
}

@media (max-width: 768px) {
    .all-cards-container {
        flex-direction: column;
    }
    
    .home-categories-container .food-card {
        min-width: 100%;
    }
}

/* MENU GRID STYLES */
