/* Menu Page Styles */
.menu-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/our_menu/pizza-showcase.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 12rem 2rem 8rem;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-header h1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-header .subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.menu-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.menu-section {
    margin-bottom: 3rem;
}

.menu-section h3 {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.item-header h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 0;
}

.price {
    color: var(--primary-color);
    font-weight: 600;
}

.description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.specialty-intro {
    margin-bottom: 2rem;
    font-style: italic;
    color: #666;
}

.hot-icon {
    color: #ff4b4b;
    font-size: 0.8em;
    margin-left: 0.5rem;
}

.premium-icon {
    color: #ffd700;
    font-size: 0.8em;
    margin-left: 0.5rem;
}

.builder-section {
    margin-bottom: 2rem;
}

.builder-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.builder-section ul {
    list-style: none;
    padding: 0;
}

.builder-section li {
    margin-bottom: 0.5rem;
}

.pricing-tables {
    margin-top: 2rem;
}

.price-table {
    margin-bottom: 2rem;
}

.price-table h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

th, td {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: var(--secondary-color);
    color: white;
}

.menu-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.wing-options {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.wing-options strong {
    color: var(--secondary-color);
}

.wing-options em {
    color: #666;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .menu-header {
        padding: 5rem 1rem 2rem;
    }

    .menu-container {
        padding: 1rem;
    }

    .item-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price {
        font-size: 0.95rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.5rem;
    }
}
