/* Menu specific styles - Minimal & Premium Design */
:root {
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent: #CD1C18;
    --border: #eeeeee;
    --radius: 12px;
    --font-serif: 'Outfit', sans-serif;
    /* Using Outfit but with serif-like spacing/weight */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.menu-body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

/* Banner Styling */
.banner {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 0;
    filter: brightness(0.9);
}

.menu-content-wrapper {
    margin-top: -60px;
    background: var(--bg-body);
    border-radius: 30px 30px 0 0;
    padding: 3rem 2rem;
    position: relative;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
}

.menu-header {
    text-align: left;
    margin-bottom: 4rem;
}

.menu-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.menu-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 500px;
}

/* Filters */
.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--border);
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(205, 28, 24, 0.2);
}

/* Menu Items Styling */
.menu-section {
    margin-bottom: 5rem;
}

.category-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-2px);
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    background-color: #f7f7f7;
    transition: transform 0.4s ease;
}

.menu-item:hover .item-image {
    transform: scale(1.05);
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

/* Icons */
.veg-icon,
.non-veg-icon {
    width: 12px;
    height: 12px;
    border: 1px solid currentColor;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.veg-icon::after,
.non-veg-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.veg-icon {
    color: #2e7d32;
}

.veg-icon::after {
    background: #2e7d32;
}

.non-veg-icon {
    color: #c62828;
}

.non-veg-icon::after {
    background: #c62828;
}

/* Range Input Styling */
#price-range {
    -webkit-appearance: none;
    appearance: none;
    width: 150px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    outline: none;
}

#price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

/* Animations */
.menu-item {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .menu-header h1 {
        font-size: 2.5rem;
    }

    .menu-content-wrapper {
        padding: 2rem 1.5rem;
    }

    .filters-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .banner {
        height: 250px;
    }

    .item-image {
        width: 80px;
        height: 80px;
    }
}