/* Subpages Menu Layout */
.page-header {
    padding: 150px 5% 80px;
    background-color: var(--black);
    color: var(--cream);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: var(--font-heading);
}

.page-subtitle {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--black);
    padding-right: 1rem;
    line-height: 1.2;
}

.menu-item-price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold);
    font-size: 1.2rem;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color var(--transition-fast);
}

.back-link:hover {
    color: var(--cream);
}
