@import url('https://fonts.googleapis.com/css2?family=Google+Sans:opsz,wght,GRAD@17..18,700,200&family=Poppins&display=swap');

/* Theme Colors */
:root {
    /* Primary Colors */
    --primary: #c31912;
    --primary-dark: #dc2626;
    --secondary: #f5f5f5;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-gray-light: #e5e5e5;
    --color-gray: #6b7280;

    /* Shadow Colors */
    --shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px 0 rgba(0, 0, 0, 0.15);

    /* Specific Shadows */
    --shadow-red: 0 2px 8px 0 rgba(239, 68, 68, 0.3);
    --shadow-red-hover: 0 4px 12px 0 rgba(239, 68, 68, 0.4);

    /* Transitions */
    --transition-base: all 0.3s ease;
}

/* Base Styles */
html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

section {
    max-width: 100vw;
    overflow-x: hidden;
}

.title{
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "GRAD" 200;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
    border: 2px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--color-black);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    overflow-x: hidden;
    margin: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition-base);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-base);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition-base);
}

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

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

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

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

.nav-cta {
    background: var(--primary);
    color: var(--color-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: var(--shadow-red);
}

.nav-cta:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-red-hover);
    transform: translateY(-2px) !important;
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle-icon {
    width: 28px;
    height: 28px;
    transition: var(--transition-base);
}

.nav-toggle:hover .nav-toggle-icon {
    transform: scale(1.1);
}

.logo {
    width: 100%;
    max-width: 20rem;
}

.title-image {
    width: 100%;
    max-width: 20rem;
    height: auto;
    margin-bottom: 1rem;
}
.hero{
    background-color: var(--primary);
    scroll-snap-align: start;
    scroll-margin-top: 70px;
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 70px;
}
.hero-desc {
    list-style: circle;
    margin-left: 1.5rem;
    font-size: 1.5rem;
}

.hero-desc li {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--color-white);
}

/* Why Us Section */
.why-us-section {
    min-height: 100vh;
    background: var(--secondary);
    padding: 4rem 2rem;
    scroll-snap-align: start;
    scroll-margin-top: 70px;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-us-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-title img {
    height: 5rem;
    width: auto;
    vertical-align: middle;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 300px;
    height: 300px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    min-height: 100vh;
    background: var(--primary);
    padding: 4rem 2rem;
    scroll-snap-align: start;
    scroll-margin-top: 70px;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.how-it-works-section .section-title {
    color: var(--color-white);
}

.how-it-works-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.steps-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.step-row:nth-child(1) { animation-delay: 0.1s; }
.step-row:nth-child(2) { animation-delay: 0.2s; }
.step-row:nth-child(3) { animation-delay: 0.3s; }
.step-row:nth-child(4) { animation-delay: 0.4s; }
.step-row:nth-child(5) { animation-delay: 0.5s; }

/* Alternate image position - even rows have reversed order */
.step-row:nth-child(even) {
    direction: rtl;
}

.step-row:nth-child(even) > * {
    direction: ltr;
}

.step-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.step-image img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    transition: var(--transition-base);
}

.step-row:hover .step-image img {
    transform: scale(1.05);
}

.step-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.step-row:hover .step-content {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(10px);
}

.step-row:nth-child(even):hover .step-content {
    transform: translateX(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition-base);
}

.step-row:hover .step-number {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Menu Preview Section */
.menu-section {
    min-height: 100vh;
    background: var(--secondary);
    padding: 4rem 2rem;
    scroll-snap-align: start;
    scroll-margin-top: 70px;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

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

.menu-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.15s; }
.menu-card:nth-child(3) { animation-delay: 0.2s; }
.menu-card:nth-child(4) { animation-delay: 0.25s; }
.menu-card:nth-child(5) { animation-delay: 0.3s; }
.menu-card:nth-child(6) { animation-delay: 0.35s; }
.menu-card:nth-child(7) { animation-delay: 0.4s; }
.menu-card:nth-child(8) { animation-delay: 0.45s; }

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.menu-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.menu-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.menu-badge.veg {
    background: rgba(34, 197, 94, 0.9);
    color: var(--color-white);
}

.menu-badge.non-veg {
    background: rgba(239, 68, 68, 0.9);
    color: var(--color-white);
}

.menu-info {
    padding: 1.5rem;
}

.menu-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.menu-desc {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    animation: fadeInUp 0.8s ease 0.5s;
    animation-fill-mode: both;
}

.menu-button {
    display: inline-block;
    background: var(--primary);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-red);
    transition: var(--transition-base);
}

.menu-button:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-red-hover);
    transform: translateY(-3px);
}

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

/* Media Queries */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 35px;
    }

    .nav-container {
        padding: 0 1.5rem;
        max-width: 100%;
        width: 100%;
    }

    .nav-logo-img {
        margin-left: 0.5rem;
    }

    .hero {
        padding: 70px 1.5rem 1.5rem 1.5rem !important;
    }

    .hero-desc {
        margin-left: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--color-gray-light);
        box-shadow: var(--shadow-md);
    }

    .nav-links a {
        color: var(--color-dark) !important;
    }

    .nav-links a::after {
        background: var(--color-dark) !important;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

    .why-us-section {
        padding: 3rem 1rem;
    }

    .feature-icon {
        width: 200px;
        height: 200px;
    }

    .feature-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .features-grid {
        width: 100%;
    }

    .how-it-works-section {
        padding: 3rem 1rem;
    }

    .steps-container {
        gap: 2rem;
    }

    .step-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr !important;
    }

    .step-row:nth-child(even) {
        direction: ltr !important;
    }

    .step-image {
        padding: 1rem;
        order: -1;
    }

    .step-image img {
        max-width: 200px;
    }

    .step-content {
        padding: 2rem 1.5rem;
    }

    .step-row:hover .step-content {
        transform: translateY(-5px) !important;
    }

    .menu-section {
        padding: 3rem 1rem;
    }

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

    .menu-image {
        height: 200px;
    }
}

@media (min-width: 640px) {
    .title-image {
        max-width: 25rem;
    }
}

@media (min-width: 768px) {
    .logo {
        max-width: 25rem;
    }

    .title-image {
        max-width: 30rem;
    }

    .hero-desc {
        margin-left: 2rem;
    }
}

@media (min-width: 1024px) {
    .logo {
        max-width: 30rem;
    }

    .title-image {
        max-width: 35rem;
    }
}

/* Menu Page Styles */
.menu-hero {
    min-height: 50vh;
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
    background: var(--primary) url("./assets/images/pattern.png") ;
    background-size: 50rem;
    background-repeat: repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    margin-top: 70px;
    animation: fadeInUp 0.8s ease;
}

.menu-hero-content {
    text-align: center;
    max-width: 800px;
}

.menu-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.menu-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Filter Section */
.filter-section {
    background: var(--color-white);
    padding: 2rem;
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-dark);
    min-width: 80px;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--color-gray-light);
    background: var(--color-white);
    color: var(--color-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--color-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-red);
}

/* Menu Items Section */
.menu-items-section {
    background: var(--secondary);
    padding: 4rem 2rem;
    min-height: 100vh;
}

.category-group {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.category-group:nth-child(1) { animation-delay: 0.3s; }
.category-group:nth-child(2) { animation-delay: 0.4s; }
.category-group:nth-child(3) { animation-delay: 0.5s; }
.category-group:nth-child(4) { animation-delay: 0.6s; }

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.category-desc {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Subcategory Sections */
.subcategory-section {
    margin-top: 3rem;
}

.subcategory-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

/* Item List and Cards */
.item-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-items: center;
}

.item-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.item-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.item-badge-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(34, 197, 94, 0.95);
    color: var(--color-white);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.item-badge-overlay.non-veg {
    background: rgba(239, 68, 68, 0.95);
}

.item-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(34, 197, 94, 0.9);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.item-badge.non-veg {
    background: rgba(239, 68, 68, 0.9);
}

.item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.5;
    opacity: 0.85;
}

/* Combo Section */
.combo-section {
    background: var(--primary);
    padding: 4rem 2rem;
}

.combo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.combo-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.combo-section .section-title {
    color: var(--color-white);
}

.combo-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

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

.combo-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.combo-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.combo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.combo-badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(34, 197, 94, 0.95);
    color: var(--color-white);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.combo-badge-overlay.non-veg {
    background: rgba(239, 68, 68, 0.95);
}

.combo-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.combo-card:nth-child(1) { animation-delay: 0.1s; }
.combo-card:nth-child(2) { animation-delay: 0.2s; }
.combo-card:nth-child(3) { animation-delay: 0.3s; }
.combo-card:nth-child(4) { animation-delay: 0.4s; }

.combo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.combo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.combo-content {
    flex-grow: 1;
}

.combo-desc {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.combo-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.combo-items li {
    padding: 0.5rem 0;
    color: var(--color-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.8;
}

.combo-items li:last-child {
    border-bottom: none;
}

.combo-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem;
    background: var(--primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: var(--shadow-red);
}

.combo-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-red-hover);
    transform: translateY(-2px);
}

.combo-custom {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.5s;
    animation-fill-mode: both;
}

.combo-custom-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.combo-custom-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Menu CTA Section */
.menu-cta-section {
    background: var(--secondary);
    padding: 4rem 2rem;
    text-align: center;
}

.menu-cta-container {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.menu-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.menu-cta-desc {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
}

.menu-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-button-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.menu-button-outline:hover {
    background: var(--primary);
    color: var(--color-white);
    box-shadow: var(--shadow-red-hover);
    transform: translateY(-3px);
}

/* Menu Page Media Queries */
@media (max-width: 768px) {
    .menu-hero {
        min-height: 40vh;
        padding: 5rem 1.5rem 3rem;
    }

    .menu-hero-title {
        font-size: 2.5rem;
    }

    .menu-hero-subtitle {
        font-size: 1.1rem;
    }

    .filter-section {
        padding: 1.5rem 1rem;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-label {
        min-width: auto;
        margin-bottom: 0.5rem;
    }

    .filter-buttons {
        width: 100%;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .menu-items-section {
        padding: 3rem 1rem;
    }

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

    .category-desc {
        font-size: 1rem;
    }

    .subcategory-title {
        font-size: 1.5rem;
    }

    .item-list {
        grid-template-columns: 1fr;
    }

    .item-card-body {
        padding: 0.875rem;
    }

    .item-title {
        font-size: 0.95rem;
    }

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

    .combo-section {
        padding: 3rem 1rem;
    }

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

    .combo-card-body {
        padding: 1.25rem;
    }

    .combo-title {
        font-size: 1.25rem;
    }

    .combo-items li {
        font-size: 0.8rem;
    }

    .combo-custom {
        padding: 2rem 1.5rem;
    }

    .menu-cta-section {
        padding: 3rem 1.5rem;
    }

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

    .menu-cta-desc {
        font-size: 1rem;
    }

    .menu-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-button,
    .menu-button-outline {
        width: 100%;
    }
}
