/* menu.css */

/* --- Header --- */
.header-menu {
    background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?q=80&w=1974&auto=format&fit=crop');
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
}


.page-header {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: var(--primary-white);
}

.header-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* --- Menu Navigation --- */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.menu-tab {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--secondary-charcoal);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-tab:hover,
.menu-tab.active {
    background-color: var(--secondary-charcoal);
    color: var(--primary-white);
}

/* --- Menu Grid --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.menu-item {
    border-bottom: 1px dashed rgba(43, 43, 43, 0.2);
    padding-bottom: 1.5rem;
    transition: transform var(--transition-fast);
}

.menu-item:hover {
    transform: translateX(10px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.item-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--secondary-charcoal);
}

.price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.menu-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 90%;
}

.me-2 {
    margin-right: 0.5rem;
}

/* --- Filtering Classes --- */
.menu-item.hidden {
    display: none;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 3.5rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .menu-tabs {
        gap: 0.5rem;
    }

    .menu-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }
}