/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
/* Nagłówek z datą */
.menu-date-header {
    text-align: center;
    font-size: 28px;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Lora', serif;
    color: #000;
}

/* Kontener menu */
.restaurant-menu-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 50px 80px;
    padding: 40px 20px;
}

.restaurant-menu-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.restaurant-menu-grid.columns-1 {
    grid-template-columns: 1fr;
}

/* Responsywność */
@media (max-width: 992px) {
    .restaurant-menu-grid.columns-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Pojedyncze danie */
.menu-dish {
    text-align: left;
}

/* Nagłówek z tytułem i ceną */
.menu-dish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

/* Tytuł dania */
.menu-dish-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-transform: none;
    font-family: 'Lora', serif;
    line-height: 1.4;
}

/* Cena */
.menu-dish-price {
    font-weight: 600;
    color: #5F6E1E;
    font-size: 18px;
    white-space: nowrap;
}

/* Opis dania */
.menu-dish-description {
    font-style: italic;
    color: #666;
    margin: 0;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}