/* ═══════════════════════════════════════════════════════════
   MEZZE Restaurant – Header & Nav (wie restaurant.andi24.de)
   Dunkelgrün, Gold, feste Höhe
   ═══════════════════════════════════════════════════════════ */
body.mz-site { padding-top: 68px !important; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.mz-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
    background: rgba(26, 46, 26, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    height: 68px; display: flex; align-items: center;
    transition: all .3s; border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.mz-header.scrolled {
    background: rgba(26, 46, 26, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
.mz-header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.mz-logo a { display: flex; align-items: center; text-decoration: none; }
.mz-logo-img { height: 52px; width: auto; display: block; }
.mz-logo-img:hover { opacity: .85; }

.mz-nav > ul { display: flex; gap: 32px; align-items: center; list-style: none; }
.mz-nav > ul > li > a {
    color: rgba(255, 255, 255, 0.8); font-size: 13px; font-weight: 500;
    letter-spacing: 0.8px; text-transform: uppercase; padding: 4px 0;
    position: relative; text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.mz-nav > ul > li > a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
    background: var(--mz-gold); transition: width .3s;
}
.mz-nav > ul > li > a.active { color: var(--mz-gold); }
.mz-nav > ul > li > a:hover::after, .mz-nav > ul > li > a.active::after { width: 100%; }
.mz-nav-reserve {
    background: var(--mz-gold) !important; color: var(--mz-dark) !important;
    padding: 9px 22px !important; border-radius: 30px; font-weight: 600 !important;
    font-size: 12px !important; letter-spacing: 1px !important;
}
.mz-nav-reserve::after { display: none !important; }
.mz-nav-reserve:hover {
    background: var(--mz-gold-lt) !important; transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.mz-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.mz-hamburger span { display: block; width: 24px; height: 2px; background: var(--mz-gold); transition: all .3s; border-radius: 2px; }
.mz-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mz-hamburger.open span:nth-child(2) { opacity: 0; }
.mz-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

@media(max-width:991px) {
    .mz-hamburger { display: flex; }
    .mz-nav {
        display: none; position: fixed; top: 68px; left: 0; width: 100%;
        background: rgba(20, 38, 20, 0.98); padding: 10px 0 20px;
        border-top: 1px solid rgba(201, 168, 76, 0.15);
        max-height: calc(100vh - 68px); overflow-y: auto; -webkit-overflow-scrolling: touch;
    }
    .mz-nav.open { display: block; }
    .mz-nav > ul { flex-direction: column; gap: 0; }
    .mz-nav > ul > li > a { padding: 13px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.04); justify-content: space-between; }
    .mz-nav-reserve { margin: 14px 24px 0; display: inline-block; text-align: center; }
}

/* Dropdown */
.mz-dd-l1 {
    display: none; position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    width: 180px; background: var(--mz-dark); border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px; padding: 6px 0; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); z-index: 500; list-style: none;
}
.mz-dd-l1::before {
    content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 13px; height: 13px; background: var(--mz-dark); border-left: 1px solid rgba(201, 168, 76, 0.2); border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.mz-has-dd.open .mz-dd-l1 { display: block; }
.mz-has-dd.open > a .mz-dd-arrow { transform: rotate(180deg); }
.mz-dd-l1-item {
    position: relative; display: flex; justify-content: space-between; align-items: center;
    padding: 10px 16px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75); cursor: default; transition: color .15s, background .15s;
    border-radius: 6px; margin: 2px 4px;
}
.mz-dd-l1-item::after { content: "›"; opacity: 0.5; font-size: 14px; }
.mz-dd-l1-item:hover { color: var(--mz-gold); background: rgba(201, 168, 76, 0.08); }
.mz-dd-l1-direct a {
    display: block; padding: 10px 16px; font-size: 12px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255, 255, 255, 0.75); border-radius: 6px; margin: 2px 4px; transition: all .15s;
}
.mz-dd-l1-direct a::after { display: none !important; }
.mz-dd-l1-direct a:hover { color: var(--mz-gold); background: rgba(201, 168, 76, 0.08); }
.mz-dd-l2 {
    display: none; position: absolute; top: -6px; left: calc(100% + 6px); width: 210px;
    background: var(--mz-dark); border: 1px solid rgba(201, 168, 76, 0.2); border-radius: 12px;
    padding: 6px 0; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); z-index: 501; list-style: none;
}
.mz-dd-l1-item:hover .mz-dd-l2 { display: block; }
.mz-dd-l2 li a { display: block; padding: 9px 16px; font-size: 12px; color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: all .2s; }
.mz-dd-l2 li a::after { display: none !important; }
.mz-dd-l2 li a:hover { color: var(--mz-gold); padding-left: 22px; }

@media(max-width:991px) {
    .mz-dd-l1 { display: none; position: static; transform: none; width: 100%; border: none; border-radius: 0; box-shadow: none; padding: 0; background: rgba(0, 0, 0, 0.2); }
    .mz-dd-l1::before { display: none; }
    .mz-has-dd.open .mz-dd-l1 { display: block; }
    .mz-dd-l1-item, .mz-dd-l1-direct a { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 12px 24px; margin: 0; border-radius: 0; position: static; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); border-bottom: 1px solid rgba(255, 255, 255, 0.05); background: none; }
    .mz-dd-l1-item::after { content: "+"; }
    .mz-dd-l1-item.sub-open { color: var(--mz-gold); }
    .mz-dd-l1-item.sub-open::after { content: "−"; }
    .mz-dd-l1-direct a::after { display: none !important; }
    .mz-dd-l1-direct a:hover { background: rgba(201, 168, 76, 0.06); padding-left: 24px; }
    .mz-dd-l2 { display: none; position: static; width: 100%; border: none; border-radius: 0; box-shadow: none; padding: 0; background: rgba(0, 0, 0, 0.15); }
    .mz-dd-l1-item:hover .mz-dd-l2 { display: none; }
    .mz-dd-l1-item.sub-open .mz-dd-l2 { display: block; }
    .mz-dd-l2 li a { padding: 10px 36px !important; font-size: 11px; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
}
