@charset "utf-8";
/* CSS Document */
## Datei: `assets/css/menu-landhaus.css`

```css
.landhaus-menu{
    max-width: 1000px;
    margin: 40px auto;
    font-family: Arial, Helvetica, sans-serif;
    color: #2f2419;
}

.menu-block{
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.menu-block h2{
    color: #7a3d12;
    border-bottom: 2px solid #d6b07a;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.menu-block h3{
    color: #8b4513;
    margin: 20px 0 10px;
}

.menu-note{
    color: #666;
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: .95rem;
}

.menu-item{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child{
    border-bottom: none;
}

.menu-item span{
    flex: 1;
    line-height: 1.4;
}

.menu-item small{
    display: block;
    color: #777;
    font-size: .9rem;
}

.menu-item strong{
    color: #8b4513;
    white-space: nowrap;
}

@media (max-width: 600px){
    .menu-item{
        flex-direction: column;
        gap: 5px;
    }

    .menu-item strong{
        align-self: flex-end;
    }
}
```

