/* ===================================================================
   mc.css — Dark Theme Template
   Corporate Color: #ed702d (Accent)
   Primary: #0f141f (Dark)
   =================================================================== */

/* ===== FONTS ===== */
@font-face {
    font-family: 'praktika_rounded_boldbold';
    src: url('../font/praktika/praktika-rounded-bold-webfont.woff2') format('woff2'),
         url('../font/praktika/praktika-rounded-bold-webfont.woff') format('woff'),
         url('../font/praktika/praktika-rounded-bold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Roboto & Playfair Display SC via Google Fonts (loaded in styles.htm) */


/* ===== BASE ===== */
html {
    background-color: #0f141f;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #ffffff;
}


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display SC', serif;
    font-weight: 400;
}

.cdfont {
    font-family: 'Playfair Display SC', serif !important;
}

.font-normal { font-weight: 600; }
.font-bold, .font-semibold { font-weight: 700; }


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f141f; }
::-webkit-scrollbar-thumb { background: #ed702d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #d4621f; }
* { scrollbar-width: thin; scrollbar-color: #ed702d #0f141f; }


/* ===== CLS-SAFE REVEAL ANIMATIONS ===== */
.home-reveal {
    opacity: 0;
    animation: homeReveal 0.8s ease forwards;
}

@keyframes homeReveal {
    to { opacity: 1; }
}

/* js-scroll-reveal: visible by default, GSAP sets opacity:0 when ready */

.reveal {
    opacity: 0;
}

.reveal.active {
    animation: fade-in 0.8s ease-out forwards;
}

@keyframes fade-in {
    to { opacity: 1; }
}


/* ===== HERO TITLE SPLIT TEXT ===== */
.hero-title-split {
    visibility: visible;
    opacity: 1;
    min-height: 1em;
    display: block;
}

.hero-title-split.split-ready {
    visibility: visible;
}

.hero-title-split .char {
    display: inline-block;
    opacity: 1;
}


/* ===== NAVIGATION ===== */
#mainNav {
    background: transparent;
    transition: background 0.6s ease, box-shadow 0.6s ease, backdrop-filter 0.6s ease;
}

.glass-nav {
    background: rgba(10, 13, 22, 0.92) !important;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* Nav Links */
.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ed702d;
    border-radius: 1px;
    transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1), left 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Active Nav State */
.nav-active {
    color: #fff;
}

.nav-active::after {
    width: 100%;
    left: 0;
    background: #ed702d;
    box-shadow: 0 0 8px rgba(237, 112, 45, 0.4);
}


/* ===== FIXED BACKGROUND + GLASS CARDS ===== */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.fixed-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.glass-card {
    background: rgba(15, 20, 31, 0.65);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(237, 112, 45, 0.2);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}


/* ===== GALLERY — Horizontal Scroll ===== */
.gallery-scroll {
    overflow: hidden;
    position: relative;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 0 1.5rem;
}

.gallery-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.is-grabbing { cursor: grabbing; scroll-snap-type: none; }

.gallery-item {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(15, 20, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); }

@media (min-width: 768px) { .gallery-item { width: 380px; } }
@media (min-width: 1024px) { .gallery-item { width: 420px; } }

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) { .gallery-img { height: 320px; } }


/* ===== PARALLAX + SPLIT LAYOUT + CARDS ===== */
.parallax-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.parallax-hero .parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
        min-height: 80vh;
    }
}

.split-layout-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

@media (min-width: 1024px) { .split-layout-image { min-height: unset; } }

.split-layout-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-layout-content {
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
}

@media (min-width: 1024px) { .split-layout-content { padding: 4rem 5rem; } }

/* Horizontal scroll experience cards */
.hscroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0;
    scrollbar-width: none;
}

.hscroll::-webkit-scrollbar { display: none; }

.hscroll-card {
    flex: 0 0 85vw;
    max-width: 500px;
    scroll-snap-align: center;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) { .hscroll-card { flex: 0 0 45vw; } }
@media (min-width: 1200px) { .hscroll-card { flex: 0 0 30vw; } }

.hscroll-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) { .hscroll-card img { height: 420px; } }

.hscroll-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

/* Masonry gallery */
.masonry {
    columns: 2;
    column-gap: 1rem;
}

@media (min-width: 768px) {
    .masonry {
        columns: 3;
        column-gap: 1.25rem;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) { .masonry-item { margin-bottom: 1.25rem; } }

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img { transform: scale(1.05); }

/* CTA gradient */
.cta-gradient {
    background: linear-gradient(135deg, #ed702d 0%, #d4621f 50%, #b85419 100%);
}

/* Map container */
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    display: block;
    filter: grayscale(0.8) brightness(0.8) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) brightness(1) contrast(1);
}


/* ===== MMENU MOBILE NAVIGATION ===== */
#menu:not(.mm-menu) { display: none; }

.mm-menu {
    --mm-navbar-size: 60px;
    --mm-line-height: 24px;
    --mm-color-border: rgba(255, 255, 255, 0.08);
    --mm-color-button: #fff;
    --mm-color-text: #fff;
    --mm-color-text-dimmed: rgba(255, 255, 255, 0.5);
    --mm-color-background: #0f141f;
    --mm-color-background-highlight: rgba(237, 112, 45, 0.1);
    --mm-color-background-emphasis: rgba(237, 112, 45, 0.15);
    --mm-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    --mm-listitem-size: 56px;
    --mm-sidebar-expanded-size: 320px;
    background-color: #0f141f !important;
}

.mm-menu .mm-navbar { background-color: #0f141f !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
.mm-menu .mm-panel { background-color: #0f141f !important; }
.mm-menu .mm-listitem { border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important; }
.mm-menu .mm-listitem > a,
.mm-menu .mm-listitem > span { color: #fff !important; }
.mm-menu .mm-listitem:hover { background-color: rgba(237, 112, 45, 0.1) !important; }
.mm-menu .mm-listitem.mm-active > a,
.mm-menu .mm-listitem.mm-active > span { color: #ed702d !important; }
.mm-menu .mm-listitem.mm-active { background-color: rgba(237, 112, 45, 0.12) !important; border-left: 3px solid #ed702d !important; }

.mm-navbars_bottom .mm-navbar { background-color: #0f141f !important; border-top: 1px solid rgba(255, 255, 255, 0.08) !important; border-bottom: none !important; }
.mm-navbars_top .mm-navbar { background-color: #0f141f !important; }
.mm-navbar a, .mm-navbar button, .mm-navbar .mm-btn { color: #fff !important; }
.mm-navbars_bottom .mm-navbar a, .mm-navbars_bottom .mm-navbar i { color: #fff !important; }
.mm-btn_close { color: #fff !important; }
.mm-navbar__title { color: #fff !important; background: transparent !important; font-family: 'Playfair Display SC', serif !important; text-transform: uppercase !important; letter-spacing: 0.06em; font-weight: 700; }

.mm-menu_offcanvas {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.mm-logo-link { display: inline-block !important; line-height: 1 !important; padding: 13px 0 0 17px !important; }
.mm-navbar-logo { max-width: 150px !important; height: auto !important; max-height: 36px !important; }
.mm-navbar .mm-breadcrumbs { display: none !important; }
.mm-panel:after { display: none; }

/* Page wrapper stability during mmenu */
#page { position: relative; min-height: 100vh; }


/* ===== FOOTER ===== */
footer { position: relative; z-index: 10; }
footer a { color: #fff; }

.footer-glass {
    background: rgba(5, 8, 15, 0.82);
    backdrop-filter: blur(24px) saturate(1.1);
    -webkit-backdrop-filter: blur(24px) saturate(1.1);
}


/* ===== SECTIONS Z-INDEX ===== */
section { position: relative; z-index: 10; }


/* ===== SCREEN READER ONLY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ===== SPEISEKARTE & WEINKARTE ===== */
.menu-nav-glass {
    background: rgba(15, 20, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(237, 112, 45, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.menu-tab {
    flex-shrink: 0;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
}

.menu-tab:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.menu-tab.active { color: #fff; background: #ed702d; }

.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* JS-gesteuerte Sticky-Logik (sticky CSS funktioniert nicht mit mmenu.js) */
#menuNav.menu-nav-fixed {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 40;
}

.menu-section-header { text-align: center; margin-bottom: 2rem; }

.menu-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ed702d;
    margin-bottom: 8px;
}

.menu-section-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2rem;
    color: #fff;
    margin: 0 0 12px;
}

@media (min-width: 768px) { .menu-section-title { font-size: 2.5rem; } }

.menu-section-line { width: 60px; height: 2px; background: #ed702d; margin: 0 auto; }

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

@media (min-width: 768px) { .menu-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

.menu-item-card {
    background: rgba(15, 20, 31, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.menu-item-card:hover { border-color: rgba(237, 112, 45, 0.2); transform: translateY(-2px); }
.menu-item-card.featured { border-color: rgba(237, 112, 45, 0.25); background: rgba(237, 112, 45, 0.06); }

.cocktail-card { text-align: center; }
.cocktail-card.signature { border-color: rgba(237, 112, 45, 0.4); background: rgba(237, 112, 45, 0.1); grid-column: 1 / -1; }

.menu-item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 6px; }

.menu-item-name { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 17px; color: #fff; margin: 0; line-height: 1.3; }
.menu-item-price { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 18px; color: #ed702d; white-space: nowrap; flex-shrink: 0; }
.menu-item-price::after { content: ' \20AC'; font-size: 13px; opacity: 0.7; }
.menu-item-desc { font-size: 15px; color: rgba(255, 255, 255, 0.55); line-height: 1.6; margin: 0; }

.menu-item-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    margin-top: 8px;
}

.badge-bestseller { background: #ed702d; color: #fff; }
.badge-hot { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-vegan { background: rgba(34, 197, 94, 0.12); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.badge-veggie { background: rgba(74, 222, 128, 0.12); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.25); }
.badge-info { background: rgba(96, 165, 250, 0.12); color: #60a5fa; border: 1px solid rgba(96, 165, 250, 0.25); }
.badge-add { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); }
.badge-signature { background: #ed702d; color: #fff; position: absolute; top: -10px; right: 16px; }

.menu-item-extras { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.menu-item-extras span { font-size: 11px; color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.05); padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.08); }

.menu-note { margin-top: 16px; padding: 16px 20px; background: rgba(15, 20, 31, 0.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; }
.menu-note p { font-size: 14px; color: #fff; font-weight: 600; margin: 0 0 4px; line-height: 1.5; }
.menu-note p:last-child { margin-bottom: 0; }

.menu-note-wide { padding: 24px; background: rgba(15, 20, 31, 0.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; }

.menu-allergen-box { padding: 24px; background: rgba(15, 20, 31, 0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; }

.menu-list { background: rgba(15, 20, 31, 0.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 8px 20px; }
.menu-list-item { display: flex; align-items: baseline; gap: 8px; padding: 10px 0; /* border-bottom: 1px solid rgba(255, 255, 255, 0.04); */ }
.menu-list-item:last-child { border-bottom: none; }
.menu-item-name { font-size: 14px; font-weight: 600; color: #fff; white-space: nowrap; }
@media (max-width: 480px) { .menu-item-name { white-space: normal; font-size: 13px; } }
.menu-list-dots { flex: 1; border-bottom: 1px dotted rgba(255, 255, 255, 0.15); min-width: 20px; margin-bottom: 4px; }
.menu-list-price { font-weight: 700; font-size: 14px; color: #ed702d; white-space: nowrap; flex-shrink: 0; }

.menu-grid-shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; background: rgba(15, 20, 31, 0.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 12px; }
@media (min-width: 640px) { .menu-grid-shots { grid-template-columns: repeat(3, 1fr); } }
.shot-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 8px; font-size: 14px; }
.shot-item span:first-child { color: #fff; font-weight: 600; }
.shot-item span:last-child { color: #ed702d; font-weight: 700; }
.shot-item.highlight { border-color: rgba(237, 112, 45, 0.3); background: rgba(237, 112, 45, 0.08); }

.cocktail-happy-hour { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 2rem; padding: 24px; background: rgba(237, 112, 45, 0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(237, 112, 45, 0.2); border-radius: 12px; text-align: center; }

/* js-scroll-reveal animation handled by GSAP ScrollTrigger in page scripts */
.js-scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* Wine card styles */
.wine-card { background: rgba(15, 20, 31, 0.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 24px; transition: border-color 0.3s ease, transform 0.3s ease; }
.wine-card:hover { border-color: rgba(237, 112, 45, 0.2); transform: translateY(-2px); }
.wine-card-premium { border-color: rgba(237, 112, 45, 0.25); background: rgba(237, 112, 45, 0.05); }
.wine-origin { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #ed702d; margin-bottom: 6px; }
.wine-grape { font-size: 11px; color: rgba(255, 255, 255, 0.4); margin-top: 4px; }
.wine-desc { font-size: 13px; color: rgba(255, 255, 255, 0.5); line-height: 1.5; margin: 8px 0 0; font-style: italic; }


/* ===== RESERVATION FLOATING BUTTON ===== */
.reservation-fab {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #ed702d;
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 6px 24px rgba(237, 112, 45, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(80px);
}

.reservation-fab.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s ease, box-shadow 0.3s ease;
}

.reservation-fab:hover {
    background: #d4621f;
    box-shadow: 0 8px 32px rgba(237, 112, 45, 0.55), 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.reservation-fab:active {
    transform: translateY(0) scale(0.97);
}

.reservation-fab svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.reservation-fab .fab-label {
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 640px) {
    .reservation-fab {
        bottom: 1.25rem;
        left: 1.25rem;
        padding: 12px 18px;
        font-size: 12px;
    }
}

.reservation-fab.is-visible {
    animation: fabPulse 3s ease-in-out 2s infinite;
}

.reservation-fab:hover {
    animation: none;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(237, 112, 45, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 6px 32px rgba(237, 112, 45, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3); }
}


/* ===== RESERVATION MODAL ===== */
.reservation-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reservation-modal-overlay.is-open {
    display: flex;
    opacity: 1;
}

.reservation-modal {
    background: #1a1f2e;
    border: 1px solid rgba(237, 112, 45, 0.2);
    border-radius: 16px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reservation-modal-overlay.is-open .reservation-modal {
    transform: translateY(0) scale(1);
}

.reservation-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.reservation-modal-title {
    font-family: 'Playfair Display SC', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    text-align: center;
}

.reservation-modal-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
    line-height: 1;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.reservation-modal-close:hover {
    background: rgba(237, 112, 45, 0.15);
    border-color: rgba(237, 112, 45, 0.3);
    color: #ed702d;
}

.reservation-modal-intro {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.reservation-modal-intro p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0 0 14px;
}

.reservation-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(237, 112, 45, 0.1);
    border: 1px solid rgba(237, 112, 45, 0.25);
    border-radius: 999px;
    color: #ed702d;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.reservation-phone-link:hover {
    background: rgba(237, 112, 45, 0.2);
    border-color: rgba(237, 112, 45, 0.4);
    color: #ed702d;
    transform: translateY(-1px);
}

.reservation-phone-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.reservation-modal-body {
    padding: 0;
    background: #f5f5f5;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.reservation-modal-body iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: none;
}

@media (max-width: 640px) {
    .reservation-modal {
        max-width: 100%;
        max-height: 85vh;
        border-radius: 16px 16px 0 0;
        align-self: flex-end;
    }

    .reservation-modal-body iframe {
        height: 420px;
    }
}


/* ===== EVENT INQUIRY FLOATING BUTTON ===== */
.event-inquiry-fab {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(15, 20, 31, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    border: 1px solid rgba(237, 112, 45, 0.35);
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.event-inquiry-fab.is-visible {
    animation: eiFabEntrance 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               eiFabGlow 2.5s ease-in-out 3s infinite;
}

@keyframes eiFabGlow {
    0%, 100% { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4); border-color: rgba(237, 112, 45, 0.35); }
    50% { box-shadow: 0 6px 32px rgba(237, 112, 45, 0.45), 0 0 16px rgba(237, 112, 45, 0.2); border-color: rgba(237, 112, 45, 0.7); }
}

.event-inquiry-fab:hover {
    background: #ed702d;
    border-color: #ed702d;
    box-shadow: 0 8px 32px rgba(237, 112, 45, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: none;
}

.event-inquiry-fab:active {
    transform: translateX(-50%) scale(0.97);
}

.event-inquiry-fab svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ed702d;
    transition: color 0.3s ease;
}

.event-inquiry-fab:hover svg {
    color: #fff;
}

.event-inquiry-fab .fab-label {
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 640px) {
    .event-inquiry-fab {
        bottom: 1.25rem;
        padding: 12px 18px;
        font-size: 12px;
    }
}

/* Entrance: slide up → scale up → wiggle → settle */
@keyframes eiFabEntrance {
    0%   { opacity: 0; transform: translateX(-50%) translateY(120px) scale(1); }
    30%  { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
    42%  { transform: translateX(-50%) translateY(0) scale(1.15); }
    52%  { transform: translateX(-50%) translateY(0) scale(1.05) rotate(0deg); }
    58%  { transform: translateX(-50%) translateY(0) scale(1.05) rotate(-6deg); }
    64%  { transform: translateX(-50%) translateY(0) scale(1.05) rotate(6deg); }
    70%  { transform: translateX(-50%) translateY(0) scale(1.05) rotate(-4deg); }
    76%  { transform: translateX(-50%) translateY(0) scale(1.05) rotate(4deg); }
    82%  { transform: translateX(-50%) translateY(0) scale(1.05) rotate(-2deg); }
    88%  { transform: translateX(-50%) translateY(0) scale(1.02) rotate(0deg); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1) rotate(0deg); }
}


/* MC Datepicker — z-index above modals */
.mc-calendar {
    z-index: 100000 !important;
}

.mc-calendar__overlay {
    z-index: 99999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.85) !important;
}

/* MC Datepicker — Zeitlos Dark Theme */
.mc-calendar {
    --mc-theme-color: #ed702d !important;
    --mc-main-bg: #1a1f2e !important;
    --mc-active-text-color: #fff !important;
    --mc-inactive-text-color: rgba(255,255,255,0.5) !important;
    --mc-display-foreground: rgba(255,255,255,0.9) !important;
    --mc-display-background: #ed702d !important;
    --mc-picker-foreground: #fff !important;
    --mc-picker-background: #1a1f2e !important;
    --mc-picker-header-active: rgba(255,255,255,0.7) !important;
    --mc-picker-header-inactive: rgba(255,255,255,0.25) !important;
    --mc-weekday-foreground: #ed702d !important;
    --mc-btn-success-foreground: #ed702d !important;
    --mc-btn-danger-foreground: #e65151 !important;
    --mc-date-active-def-foreground: #fff !important;
    --mc-date-active-pick-foreground: #fff !important;
    --mc-date-active-pick-background: #ed702d !important;
    --mc-date-active-today-foreground: #ed702d !important;
    --mc-date-active-today-background: rgba(237,112,45,0.15) !important;
    --mc-date-inactive-def-foreground: rgba(255,255,255,0.2) !important;
    --mc-date-inactive-pick-foreground: #ed702d !important;
    --mc-date-inactive-pick-background: rgba(237,112,45,0.3) !important;
    --mc-date-inactive-today-foreground: rgba(255,255,255,0.2) !important;
    --mc-date-inactive-today-background: rgba(255,255,255,0.05) !important;
    --mc-date-marcked-foreground: #ed702d !important;
    --mc-prev-active-def-foreground: #fff !important;
    --mc-prev-active-pick-foreground: #fff !important;
    --mc-prev-active-pick-background: rgba(237,112,45,0.2) !important;
    --mc-prev-inactive-def-foreground: rgba(255,255,255,0.2) !important;
    --mc-prev-inactive-pick-foreground: rgba(255,255,255,0.3) !important;
    --mc-prev-inactive-pick-background: rgba(255,255,255,0.05) !important;
}

/* MC Datepicker — Dark shadow & border */
.mc-calendar__body {
    border-radius: 12px !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}


/* ===== EVENT INQUIRY MODAL ===== */
.ei-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ei-modal-overlay.is-open {
    opacity: 1;
}

.ei-modal {
    background: #1a1f2e;
    border: 1px solid rgba(237, 112, 45, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    margin: 40px auto;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ei-modal-overlay.is-open .ei-modal {
    transform: translateY(0) scale(1);
}

.ei-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    background: rgba(237, 112, 45, 0.05);
}

.ei-modal-title {
    font-family: 'Playfair Display SC', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    margin: 0;
    text-align: center;
}

.ei-modal-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.ei-modal-close:hover {
    background: rgba(237, 112, 45, 0.15);
    border-color: rgba(237, 112, 45, 0.3);
    color: #ed702d;
}

.ei-modal-intro {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.ei-modal-intro p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0 0 14px;
}

.ei-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(237, 112, 45, 0.1);
    border: 1px solid rgba(237, 112, 45, 0.25);
    border-radius: 999px;
    color: #ed702d;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ei-phone-link:hover {
    background: rgba(237, 112, 45, 0.2);
    border-color: rgba(237, 112, 45, 0.4);
    color: #ed702d;
    transform: translateY(-1px);
}

.ei-phone-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ei-modal-body {
    padding: 28px;
    max-height: 65vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ed702d #1a1f2e;
}

.ei-modal-body::-webkit-scrollbar { width: 6px; }
.ei-modal-body::-webkit-scrollbar-track { background: #1a1f2e; }
.ei-modal-body::-webkit-scrollbar-thumb { background: #ed702d; border-radius: 3px; }

@media (max-width: 640px) {
    .ei-modal {
        margin: 10px auto;
        border-radius: 16px;
    }
    .ei-modal-body {
        padding: 20px;
        max-height: 60vh;
    }
    .ei-modal-header {
        padding: 18px 20px;
    }
    .ei-modal-intro {
        padding: 16px 20px;
    }
}
