/* menu.css */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 12, 9, 0.6) 0%, var(--bg-main) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.page-hero-content h1 {
    font-size: 4rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.menu-section {
    padding: 4rem 0;
}

.menu-category {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

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

.menu-item-info {
    flex: 1;
    padding-right: 2rem;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.menu-item-price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
}

.price-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 3rem;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-info {
        margin-bottom: 0.5rem;
        padding-right: 0;
    }
}
