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

.menu-section {
    background: linear-gradient(135deg, #f5f1e8 0%, #ede7dc 100%);
    border: 2px solid var(--highlight-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.menu-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    color: #1a4d47;
    text-align: center;
    margin: 0 0 5px 0;
    letter-spacing: 3px;
    font-weight: normal;
    text-transform: uppercase;
}

.menu-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: #1a4d47;
    text-align: center;
    margin: 0 0 25px 0;
    letter-spacing: 1px;
    font-weight: normal;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.menu-item {
    background-color: rgba(26, 77, 71, 0.08);
    border-left: 3px solid var(--highlight-color);
    padding: 16px 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background-color: rgba(26, 77, 71, 0.12);
    border-left-color: #1a4d47;
    transform: translateX(4px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.menu-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: #1a4d47;
    margin: 0;
    font-weight: normal;
}

.item-votes {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--highlight-color);
    white-space: nowrap;
    font-weight: bold;
}

.item-description {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    font-style: italic;
    line-height: 1.4;
}

.menu-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.whiskey-bar-banner {
    background: linear-gradient(135deg, #1a4d47 0%, #1d5a52 100%);
    border: 2px solid var(--highlight-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}

.whiskey-bar-banner h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--highlight-color);
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.whiskey-bar-banner p {
    color: #fff;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.qr-section {
    text-align: center;
    padding: 30px;
    font-size: 1.2rem;
    color: var(--highlight-color);
    font-family: 'Cinzel', serif;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Desktop Layout - zwei Spalten für große Bildschirme */
@media screen and (min-width: 1200px) {
    .menu-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: start;
    }
    
    .menu-container .menu-section:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

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

/* Tablet Layout */
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .menu-items {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Layout */
@media screen and (max-width: 767px) {
    .menu-section {
        padding: 25px 20px;
    }

    .whiskey-bar-banner {
        padding: 25px 20px;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .menu-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .item-header {
        flex-wrap: wrap;
    }
}
