.food {
    max-width: 800px;
    margin: 0 auto 8rem auto;
    padding: 3rem 2vw;
    background: rgba(24,24,24,0.85); /* Graphit, halbtransparent */
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    text-align: center;
    color: #FFD700;
    border: 1.5px solid #FFD700;
    overflow-x: auto;
}
.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1.1rem;
    background: rgba(34,34,34,0.92);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    color: #FFD700;
    border: 1.2px solid #FFD700;
    min-width: 600px;
}
.menu-table th, .menu-table td {
    padding: 1rem 0.7rem;
    text-align: left;
    color: #f5f5f5;
    text-shadow: 0 1px 4px #000a;
}
.menu-table th {
    background: rgba(24,24,24,0.95);
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: 2px solid #FFD700;
    color: #FFD700;
    background: radial-gradient(circle, #FFF8DC 0%, #FFD700 40%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.menu-table tr {
    border-bottom: 1px solid #FFD70033;
}
.menu-table tr:last-child {
    border-bottom: none;
}
.menu-table td {
    color: #f5f5f5;
}
.menu-table tr:nth-child(even) {
    background: rgba(34,34,34,0.85);
}
.menu-switch-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.menu-switch-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(24,24,24,0.85);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border: 1.2px solid #FFD700;
}
.menu-switch-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: White;
    cursor: pointer;
    transition: color 0.2s;
    text-shadow: 0 1px 4px #000a;
}
.menu-switch-label.active {
    color: #FFD700;
}
.menu-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}
.menu-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ccc;
    border-radius: 34px;
    transition: background 0.3s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
.menu-switch input:checked + .slider {
    background: #b85c00;
}
.menu-switch input:checked + .slider:before {
    transform: translateX(24px);
}
#speisekarte-list, #pizzakarte-list {
    transition: opacity 0.3s;
    overflow-x: auto;
    max-width: 100%;
}
#speisekarte {
    position: relative;
    background: url('../ressources/images/logo.png') no-repeat center center;
    background-size: 40%;
    opacity: 1;
}
#speisekarte::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../ressources/images/logo.png') no-repeat center center;
    background-size: 40%;
    opacity: 100%;
    pointer-events: none;
    z-index: 0;
}
#speisekarte > * {
    position: relative;
    z-index: 1;
}
