/* ═══════════════════════════════════════════════════════════
   MEZZE RESTAURANT – CSS
   Farben: #1a2e1a (Dunkelgrün) | #c9a84c (Gold)
   Fonts:  Montserrat (Headings) | Poppins (Body)
   ═══════════════════════════════════════════════════════════ */
/* Inhalt: Reset · Base · Grid · Utils · Header · Nav · Footer */

/* =============================================================
   RESET, BASE, GRID, UTILS
   ============================================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--mz-text);
    background: #fff;
}
html, body { overflow-x: hidden; max-width: 100%; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--mz-dark);
    margin-top: 0;
}
h1 {
    font-size: clamp(36px, 5vw, 64px);
}
h2 {
    font-size: clamp(28px, 4vw, 46px);
}
h3 {
    font-size: clamp(22px, 3vw, 32px);
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
p {
    margin-bottom: 16px;
}
a {
    text-decoration: none;
    transition: all .3s;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
[class*="col-"] {
    padding: 0 15px;
    width: 100%;
}
@media(min-width:768px) {
    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media(min-width:992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .col-lg-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }
    .col-lg-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}
@media(min-width:1200px) {
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.d-flex {
    display: flex !important;
}
.d-none {
    display: none !important;
}
.d-block {
    display: block !important;
}
.align-items-center {
    align-items: center !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.text-center {
    text-align: center !important;
}
.text-white {
    color: #fff !important;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.gap-30 {
    gap: 30px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.pt-80 {
    padding-top: 80px !important;
}
.pb-80 {
    padding-bottom: 80px !important;
}
.pt-100 {
    padding-top: 100px !important;
}
.pb-100 {
    padding-bottom: 100px !important;
}
@media(min-width:992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
    .d-lg-block {
        display: block !important;
    }
}
@media(max-width:991px) {
    .d-lg-show {
        display: block !important;
    }
}
/* =============================================================

HEADER & NAV
   ============================================================= */
.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);
    height: 68px;
    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;
    }
}
/* ═══════════════════════════════════════════════════════════

/* 16. FOOTER                                              */
/* ─────────────────────────────────────────────────────── */
.mz-footer {
    background: var(--mz-dark);
}
.mz-footer-top {
    padding: 80px 0 40px;
}
.mz-footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.mz-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 22px;
}
.mz-footer-social {
    display: flex;
    gap: 10px;
}
.mz-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
    transition: all .3s;
}
.mz-footer-social a:hover {
    border-color: var(--mz-gold);
    color: var(--mz-gold);
    background: rgba(201, 168, 76, .08);
}
.mz-footer-heading {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--mz-gold);
    margin-bottom: 18px;
}
.mz-footer-links {
    list-style: none;
}
.mz-footer-links li {
    margin-bottom: 9px;
}
.mz-footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    transition: all .3s;
}
.mz-footer-links a:hover {
    color: var(--mz-gold);
    padding-left: 5px;
}
.mz-footer-hours {
    list-style: none;
}
.mz-footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
}
.mz-footer-hours li.closed {
    color: rgba(255, 255, 255, .25);
}
.mz-footer-contact {
    list-style: none;
}
.mz-footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    align-items: flex-start;
}
.mz-footer-contact li i {
    color: var(--mz-gold);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}
.mz-footer-contact a {
    color: rgba(255, 255, 255, .6);
}
.mz-footer-contact a:hover {
    color: var(--mz-gold);
}
.mz-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 22px 0;
}
.mz-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.mz-footer-bottom-inner p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
}
.mz-footer-bottom-inner ul {
    display: flex;
    gap: 20px;
    list-style: none;
}
.mz-footer-bottom-inner ul a {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
}
.mz-footer-bottom-inner ul a:hover {
    color: var(--mz-gold);
}
/* Demo Badge */
.mz-demo-badge {
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .04);
    margin-top: 10px;
}
.mz-demo-badge a {
    color: var(--mz-gold);
    opacity: .7;
}
.mz-demo-badge a:hover {
    opacity: 1;
}
/* ─────────────────────────────────────────────────────── */

/* SCROLL ANIMATIONS                                       */
/* ─────────────────────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
[data-reveal="fade-up"] {
    transform: translateY(40px);
}
[data-reveal="fade-down"] {
    transform: translateY(-30px);
}
[data-reveal="fade-left"] {
    transform: translateX(40px);
}
[data-reveal="fade-right"] {
    transform: translateX(-40px);
}
[data-reveal="zoom"] {
    transform: scale(0.93);
}
[data-reveal="fade"] {
    transform: none;
}
[data-reveal].revealed {
    opacity: 1;
    transform: none;
}
[data-delay="100"] {
    transition-delay: 0.1s;
}
[data-delay="200"] {
    transition-delay: 0.2s;
}
[data-delay="300"] {
    transition-delay: 0.3s;
}
[data-delay="400"] {
    transition-delay: 0.4s;
}
[data-delay="500"] {
    transition-delay: 0.5s;
}
[data-delay="600"] {
    transition-delay: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* ─────────────────────────────────────────────────────── */
/* FLYOUT NAVIGATION DROPDOWN                              */
/* ─────────────────────────────────────────────────────── */
/* L1 Panel */
.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);
}
/* L1 Item (mit Sub) */
.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);
}
/* L1 Item (direkt, kein Sub) */
.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);
}
/* L2 Panel */
.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;
}
/* ── MOBILE ───────────────────────────────────────────── */
@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;
    }
    /* Alle L1-Items bündig, gleiche Breite */
    .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;
    }
    /* L2 mobile: klappt darunter auf */
    .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);
    }
}
/* ═══════════════════════════════════════════════════════════
   MEZZE RESTAURANT – Haupt-CSS
   Farben: #1a2e1a (Dunkelgrün) | #c9a84c (Gold)
   Fonts:  Montserrat (Headings) | Poppins (Body)
   Fonts zentral von andi24.de — DSGVO-konform, kein CDN
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────── */

/* andi24 Logo im Footer */
.mz-andi24-link {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
.mz-andi24-logo {
    height: 96px;
    width: auto;
    vertical-align: middle;
    opacity: .8;
    transition: opacity .2s;
}
.mz-andi24-logo:hover {
    opacity: 1;
}
/* ─────────────────────────────────────────────────────── */
/* FOOTER – 4-Spalten Layout (eine Zeile, luftig)          */
/* ─────────────────────────────────────────────────────── */
.mz-footer-top {
    padding: 52px 0 32px !important;
}
.mz-footer-top .row {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
    gap: 0 48px !important;
    align-items: start !important;
    flex-wrap: unset !important;
    margin: 0 !important;
}
/* alle Spalten – kein flex-col-Verhalten mehr */
.mz-footer-top [class*="col-"] {
    flex: unset !important;
    max-width: unset !important;
    width: unset !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}
/* mb-40 global-Override zurücksetzen im Footer */
.mz-footer-top .mb-40 {
    margin-bottom: 0 !important;
}

/* Logo-Spalte */
.mz-footer-logo-img {
    height: 54px !important;
    width: auto !important;
    display: block !important;
    margin-bottom: 14px !important;
}
.mz-footer-desc {
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
}
.mz-footer-social {
    gap: 8px !important;
}

/* Headings aller Spalten */
.mz-footer-heading {
    font-size: 11px !important;
    margin-bottom: 14px !important;
}

/* Alle Footer-Listen – einheitlicher Rhythmus */
.mz-footer-hours li,
.mz-footer-links li,
.mz-footer-contact li {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
}
.mz-footer-hours li {
    padding: 0 !important;
    border-bottom: none !important;
}
.mz-footer-links li a {
    font-size: 13px !important;
    line-height: 1.4 !important;
}
.mz-footer-contact li {
    gap: 10px !important;
    align-items: flex-start !important;
}

/* Responsive: 2 Spalten ab Tablet */
@media (max-width: 991px) {
    .mz-footer-top .row {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 40px !important;
    }
}
@media (max-width: 540px) {
    .mz-footer-top .row {
        grid-template-columns: 1fr !important;
        gap: 28px 0 !important;
    }
}