body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #181818 url('../ressources/images/adiBar.png') no-repeat center center fixed;
    background-size: cover;
    color: #f5f5f5;
    /* Dunkler Overlay für bessere Lesbarkeit */
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,24,24,0.82); /* Graphit Overlay */
    z-index: 0;
    pointer-events: none;
}
header, main, section, footer {
    position: relative;
    z-index: 1;
}
header {
    background: rgba(24, 24, 24, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3vw;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #000;
    gap: 0.7rem;
    background: radial-gradient(circle, #FFF8DC 0%, #FFD700 40%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-img {
    height: 96px;
    width: auto;
    max-width: 320px;
    max-height: 96px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 12px #000b;
    background: #222;
    padding: 4px;
}
nav a {
    text-decoration: none;
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 2rem;
    transition: color 0.2s;
    background: radial-gradient(circle, #FFF8DC 0%, #FFD700 40%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
nav a:hover {
    color: #fffbe6;
    text-shadow: 0 0 8px #FFD700;
}
a{
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.2s;
    background: radial-gradient(circle, #FFF8DC 0%, #FFD700 40%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
a:hover {
    color: #fffbe6;
}
h1, h2, h3, h4, h5, h6 {
    color: #FFD700;
    text-shadow: 0 2px 8px #000a;
    background: radial-gradient(circle, #FFF8DC 0%, #FFD700 40%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
p, li, span, div, label {
    color: #f5f5f5;
    text-shadow: 0 1px 4px #000a;
}
.menu-switch-label {
    background: radial-gradient(circle, #FFF8DC 0%, #FFD700 40%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.menu-switch-label.active {
    background: radial-gradient(circle, #FFF8DC 0%, #FFD700 60%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .food, .info-section {
        max-width: 95vw;
        padding: 2.5rem 2vw;
    }
    header {
        padding: 1rem 2vw;
    }
}
@media (max-width: 900px) {
    .logo-img {
        height: 72px;
        max-width: 220px;
        max-height: 72px;
    }
    .food, .info-section {
        padding: 2rem 1vw;
    }
    nav a {
        margin-left: 1.2rem;
        font-size: 0.95rem;
    }
}
@media (max-width: 700px) {
    header {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 2vw;
        position: relative;
    }
    .logo {
        margin-bottom: 0;
        justify-content: center;
        flex: 1 1 auto;
        display: flex;
    }
    .logo-img {
        margin: 0 auto;
        display: block;
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        margin-left: 0;
        margin-right: 0;
        z-index: 20;
        position: absolute;
        right: 2vw;
        top: 50%;
        transform: translateY(-50%);
        background: none;
    }
    .burger span {
        height: 4px;
        width: 28px;
        background: linear-gradient(90deg, #FFD700 0%, #B8860B 100%);
        margin: 4px 0;
        border-radius: 2px;
        transition: 0.3s;
        display: block;
        box-shadow: 0 1px 4px #000a;
    }
    nav {
        width: 100vw;
        min-width: 0;
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        background: rgba(24,24,24,0.98);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 16px #000a;
        align-items: stretch;
        padding: 0.5rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.25s;
    }
    nav.open {
        display: flex;
        max-height: 400px;
        padding: 0.5rem 0 1.5rem 0;
        overflow: visible;
    }
    nav a {
        margin: 0;
        padding: 1rem 2vw;
        text-align: center;
        font-size: 1.1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .food, .info-section, .welcome, .tagesgerichte-section {
        padding: 1.2rem 2vw !important;
        max-width: 100vw !important;
        box-sizing: border-box;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden;
    }
    .gallery-wrapper, .gallery {
        max-width: 100vw !important;
        overflow-x: auto;
    }
    body.menu-open .welcome,
    body.menu-open .info-section,
    body.menu-open .food,
    body.menu-open .pictures,
    body.menu-open .google-rezensionen-widget,
    body.menu-open footer {
        /* Abstand nach unten, wenn Menü offen */
        margin-top: 4.5rem !important;
        transition: margin-top 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    header {
        z-index: 100;
    }
}
@media (max-width: 500px) {
    .logo-img {
        height: 48px;
        max-width: 120px;
        max-height: 48px;
    }
    .food, .info-section, .welcome, .tagesgerichte-section {
        padding: 0.7rem 1vw !important;
        font-size: 0.98rem;
        max-width: 100vw !important;
        box-sizing: border-box;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden;
    }
    h1, h2, h3 {
        font-size: 1.2rem;
    }
    nav a {
        font-size: 0.98rem;
    }
    .welcome {
        margin-bottom: 3.5rem !important;
    }
    .info-section {
        margin-top: 0 !important;
    }
}
@media (max-width: 1024px) {
    body {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
