/* ==========================================================================
   VELA DARK LUXE THEME — FULLSCREEN MENU VERSION
   ========================================================================== */

/* COLOR SYSTEM */
:root {
    --bg: #201a17;
    --bg-alt: #241e1b;
    --bg-soft: #2b2522;

    --accent: #caa770;
    --accent-soft: rgba(202,167,112,0.18);
    --accent-strong: #e2c28f;

    --text: #f5f5f2;
    --muted: #b8b2ad;

    --border: #3a312d;
    --max-width: 1120px;
}

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.grid-2 {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--accent-strong);
    font-size: 0.75rem;
}

.section-title {
    font-size: 2.1rem;
    font-family: "Playfair Display", serif;
    line-height: 1.25;
    margin: 0.5rem 0 1rem;
}

.section-lead {
    color: var(--muted);
    font-size: 1rem;
    max-width: 40rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(32, 26, 23, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.site-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Header Elemente: links Menübutton, Mitte Logo, rechts CTA */
.menu-toggle {
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--muted);
    padding: 0.4rem 1.1rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
}
/* ==========================================================================
   SHRINKING HEADER LOGO (final balanced sizes)
   ========================================================================== */

/* Ausgangsgröße beim Laden */
.header-logo img {
    height: 56px;   /* statt 78px → viel eleganter */
    width: auto;
    opacity: 1;
    transition: height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    transform: translateY(1px);
}

/* Geschrumpfte Version beim Scrollen */
.site-header.shrink .header-logo img {
    height: 40px;   /* sehr harmonisch für Sticky Header */
    opacity: 0.9;
    transform: translateY(0);
}

/* Header Padding reduzieren beim Shrink */
.site-header.shrink .site-header-inner {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    transition: padding 0.3s ease;
}

/* ==========================================================================
   FULLSCREEN MENU OVERLAY
   ========================================================================== */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 15, 12, 0.98);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6%);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200; /* WICHTIG: über dem Header */
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-overlay-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.8rem 1.5rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Close Button */
.menu-close {
    align-self: flex-end;
    border: none;
    background: none;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.4rem 0;
}

.menu-close:hover {
    color: var(--accent-strong);
}

/* Inhalt des Overlays */
.menu-overlay-content {
    display: flex;
    flex: 1;
    gap: 4rem;
    margin-top: 1.8rem;
}

/* Linke Navigation im Overlay */
.menu-overlay-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.menu-overlay-nav a {
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.menu-overlay-nav a.active {
    color: var(--accent-strong);
}

.menu-overlay-nav a:hover {
    color: var(--accent);
}

/* Rechte Seite im Overlay */
.menu-overlay-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.menu-overlay-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin: 0 0 0.5rem;
}

.menu-overlay-text p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 26rem;
}

/* Sprache im Menü */
.menu-overlay-lang {
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-overlay-lang span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.menu-lang-options {
    display: flex;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.menu-lang-options a {
    color: var(--muted);
}

.menu-lang-options a.active {
    color: var(--accent-strong);
}

/* Responsive Overlay */
@media (max-width: 900px) {
    .menu-overlay-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ==========================================================================
   HERO FULLSCREEN
   ========================================================================== */

.hero-fullimage {
    padding: 0;
    margin: 0;
}

.hero-image-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-fullimage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.hero-overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay-logo img {
    width: 300px;
    opacity: 0.95;
}

/* ==========================================================================
   CARD ELEMENTE
   ========================================================================== */

.card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    padding: 1.8rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    margin: 0 0 .5rem;
}

.muted {
    color: var(--muted);
}

.list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: .7rem;
}

.list li strong {
    display: block;
    margin-bottom: .1rem;
    font-family: "Playfair Display", serif;
}

/* ==========================================================================
   FEATURE GRID (Tisch mit Seeblick · Menü · Events)
   ========================================================================== */

.feature-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.feature-card {
    background: var(--bg-alt);
    border-radius: 1.3rem;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.feature-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.feature-body {
    padding: 1.4rem 1.5rem 1.6rem;
}

.feature-body h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    margin: 0 0 0.4rem;
}

.feature-body p {
    margin: 0 0 0.8rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.feature-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
}
.feature-link:hover {
    color: var(--accent-strong);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    border-radius: 999px;
    border: 1px solid var(--accent);
    padding: .55rem 1.4rem;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--accent);
    background: var(--accent-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.btn-primary {
    background: var(--accent);
    color: #201a17;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: #1c1714;
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    margin-top: 3rem;
}

.site-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--muted);
    font-size: .78rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER LANGUAGE SWITCH – SLIDE BUTTON STYLE
   ========================================================================== */

.footer-lang {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Die „Schiene“ */
.lang-switch {
    display: inline-flex;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    gap: 2px;
}

/* Einzelelemente */
.lang-option {
    position: relative;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

/* Hover-Effekt */
.lang-option:hover {
    color: var(--accent-strong);
}

/* Aktive Sprache = „eingeschobener Button“ */
.lang-option.active {
    background: var(--accent);
    color: #201a17;
    transform: translateY(-1px);
}


/* ==========================================================================
   PERFECT CENTERED LANGUAGE SLIDER – NO EXTRA SPACE
   ========================================================================== */

.menu-overlay-lang {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;        /* Zentriert horizontal */
    justify-content: center;    /* Falls nötig */
    margin-top: 2rem;
}

.menu-overlay-lang > span {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.85;
}

/* WICHTIG: der Slider darf NICHT gestretched werden */
.menu-lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;                 /* verhindert Stretch */
    max-width: max-content;      /* verhindert Stretch */
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    gap: 2px;
}

/* Buttons */
.menu-lang-switch .lang-option {
    position: relative;
    padding: 0.32rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.menu-lang-switch .lang-option:hover {
    color: var(--accent-strong);
}

.menu-lang-switch .lang-option.active {
    background: var(--accent);
    color: #201a17;
    transform: translateY(-1px);
}

/* ==========================================================================
   PDF-MODAL FÜR MENÜ (LUNCH / DINNER)
   ========================================================================== */

.menu-pdf-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
}

.menu-pdf-modal.open {
    display: block;
}

.menu-pdf-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.menu-pdf-dialog {
    position: relative;
    max-width: 960px;
    height: 80vh;
    margin: 5vh auto;
    background: radial-gradient(circle at top, #27201c 0, #181210 55%);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
}

.menu-pdf-title {
    margin: 0 0 0.75rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.menu-pdf-frame-wrapper {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #3a312d;
    background: #100c0a;
}

.menu-pdf-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Close-Button oben rechts */
.menu-pdf-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    border: none;
    background: rgba(0, 0, 0, 0.35);
    color: #f5f3f0;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.menu-pdf-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Kleine Variante des Buttons */
.btn-small {
    font-size: 0.78rem;
    padding: 0.45rem 1.1rem;
}

/* ==========================================================================
   EVENT-ANFRAGE MODAL
   ========================================================================== */

/* =========================================
   EVENT MODAL – SCROLLBAR-FIX FÜR MOBILE
   ========================================= */

.event-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;               /* standard: unsichtbar */
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.65);
    overflow-y: auto;            /* WICHTIG: gesamtes Overlay darf scrollen */
}

/* wenn JS .open setzt */
.event-modal.open {
    display: flex;
}

/* dunkle Fläche hinter dem Dialog */
.event-modal-backdrop {
    position: absolute;
    inset: 0;
    background: transparent;     /* optional, kann auch leicht transparent sein */
}

/* eigentlicher Dialog */
.event-modal-dialog {
    position: relative;
    background: #1c1714;
    border-radius: 16px;
    border: 1px solid #3a312d;
    width: 100%;
    max-width: 640px;
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);

    max-height: calc(100vh - 3rem);  /* WICHTIG: nicht höher als Viewport */
    overflow-y: auto;                /* WICHTIG: Inhalt im Dialog scrollt */
}

/* Close-Button oben rechts */
.event-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    border: none;
    background: transparent;
    color: #f5f3f0;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Headline & Text */
.event-modal-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-modal-subtitle {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: #d3c9c2;
}

/* Feedback-Messages */
.event-modal-messages {
    margin-bottom: 1rem;
}

.event-modal-success,
.event-modal-error {
    font-size: 0.9rem;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    margin-bottom: 0.4rem;
}

.event-modal-success {
    background: rgba(46, 160, 67, 0.12);
    color: #b5f2c0;
    border: 1px solid rgba(46, 160, 67, 0.45);
}

.event-modal-error {
    background: rgba(207, 63, 63, 0.1);
    color: #f2c3c3;
    border: 1px solid rgba(207, 63, 63, 0.4);
}

/* Formular-Layout im Dialog */
.event-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
}

.event-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.event-form .form-field-full {
    grid-column: 1 / -1;
}

.event-form label {
    font-size: 0.9rem;
    color: #e6ded8;
}

.event-form input,
.event-form textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid #3a312d;
    background: #181310;
    color: #f5f3f0;
    font-size: 0.9rem;
}

.event-form textarea {
    resize: vertical;
    min-height: 90px;
}

.field-error {
    font-size: 0.78rem;
    color: #ff9c9c;
}

/* Button im Modal */
.event-submit-btn {
    margin-top: 1rem;
    width: 100%;
}

/* Mobile-Optimierung */
@media (max-width: 768px) {
    .event-modal {
        align-items: flex-start;              /* Dialog oben ansetzen */
        padding: 1rem 0.75rem;
    }

    .event-modal-dialog {
        max-height: calc(100vh - 1.5rem);     /* etwas mehr Platz */
        padding: 1.25rem 1rem 1.5rem;
    }

    .event-form-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================================
   MENU PAGE – PDF BUTTONS (Lunch / Dinner)
   ===================================================================== */

.menu-buttons {
    margin-top: 1.25rem;             /* schöner Abstand zum Text */
    display: flex;
    justify-content: center;         /* perfekt zentriert */
}

.menu-buttons .btn-small {
    min-width: 180px;                /* gleichmäßige, schöne Buttonbreite */
    text-align: center;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .menu-pdf-dialog {
        width: calc(100% - 2rem);
        margin: 5vh 1rem;
        height: 75vh;
        padding: 1.25rem 1.1rem 1rem;
    }

    .menu-pdf-title {
        font-size: 0.8rem;
    }
}

/* Mobile Feintuning */
@media (max-width: 800px) {
    .site-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.6rem;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-lang {
        margin-top: 0.3rem;
    }
}

@media (min-width: 800px) {
    .site-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ==========================================================================
   FORM STYLING
   ========================================================================== */

.reservation-form {
    margin-top: 0.5rem;
}

.form-grid {
    display: grid;
    gap: 1.2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

@media (min-width: 800px) {
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-field label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}

.form-field input,
.form-field textarea {
    padding: 0.6rem 0.75rem;
    border-radius: 0.6rem;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.field-error {
    font-size: 0.75rem;
    color: #ff9a9a;
}

.form-errors,
.form-success {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.8rem;
    font-size: 0.85rem;
}

.form-errors {
    background: rgba(200, 80, 80, 0.15);
    border: 1px solid rgba(200, 80, 80, 0.7);
}

.form-success {
    background: rgba(120, 200, 140, 0.15);
    border: 1px solid rgba(120, 200, 140, 0.7);
}

.responsive-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ==========================================================================
   MOBILE HEADER TUNING
   ========================================================================== */

@media (max-width: 640px) {

    /* Header etwas kompakter */
    .site-header-inner {
        padding: 0.6rem 0.9rem;
        gap: 0.6rem;
    }

    /* Logo auf Mobile: etwas kleiner als Desktop, aber präsenter im Verhältnis zum Button */
    .header-logo img {
        height: 48px;          /* statt 56px */
        transform: translateY(0);
    }

    .site-header.shrink .header-logo img {
        height: 38px;          /* statt 40px */
    }

   @media (max-width: 640px) {

    /* Größerer, edlerer mobile Menü-Button */
    .menu-toggle {
        padding: 0.55rem 1.1rem;
        font-size: 0.82rem;
        letter-spacing: 0.20em;
        text-transform: uppercase;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--muted);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
    }

    /* Optional: leichte Hover-Veredelung */
    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--accent-strong);
    }
}

    /* Reservierungsbutton schmaler & dezenter */
    .header-cta {
        padding: 0.3rem 0.85rem;
        font-size: 0.65rem;         /* kleiner als Desktop */
        letter-spacing: 0.14em;
        white-space: nowrap;        /* kein Umbruch */
    }
}

/* ==========================================================================
   MOBILE ACTION BAR (iPhone / Handy)
   ========================================================================== */

@media (max-width: 640px) {

    /* Header: CTA im Header ausblenden, Logo hat mehr Platz */
    .header-cta {
        display: none;
    }

    /* Damit der Inhalt nicht von der Action-Bar überdeckt wird */
    .page {
        padding-bottom: 64px; /* Höhe der Action-Bar */
    }

    .mobile-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 64px;
        background: rgba(20, 15, 12, 0.96);
        border-top: 1px solid #3a312d;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0 0.75rem;
        z-index: 250;
        backdrop-filter: blur(14px);
    }

    /* Alle drei Spalten gleich breit */
    .mobile-action {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-decoration: none;
        color: var(--muted);
    }

    .mobile-action-icon svg {
        width: 22px;
        height: 22px;
        opacity: 0.9;
    }

    .mobile-action-label {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-align: center;
        white-space: nowrap;
    }

    /* BOOK TABLE – größer, zweizeilig, pillenförmig */
    .mobile-action-primary {
        flex: 1 1 0;
    }

    .mobile-action-primary .mobile-action-label {
        background: var(--accent);
        color: #201a17;
        border-radius: 999px;
        padding: 0.35rem 0.95rem;
        font-size: 0.75rem;
        letter-spacing: 0.16em;
        line-height: 1.15;
        font-weight: 600;
        max-width: 90px;      /* erzwingt Zeilenumbruch „Book / table“ */
        white-space: normal;  /* darf umbrechen */
        text-align: center;
    }
}

/* Auf größeren Geräten: Action-Bar ausblenden */
@media (min-width: 641px) {
    .mobile-action-bar {
        display: none;
    }
}

   /* Wenn das Menü offen ist, mobile Action-Bar ausblenden */
    body.menu-open .mobile-action-bar {
        display: none;
    }

    /* Und das zusätzliche Padding unten wieder entfernen */
    body.menu-open .page {
        padding-bottom: 0;
    }

    /* ==========================================================================
   MOBILE OVERLAY LANGUAGE SWITCH – Premium Centered Version
   ========================================================================== */

@media (max-width: 640px) {

    .menu-overlay-lang {
        margin-top: 2.5rem;
        text-align: center;
        width: 100%;
    }

    .menu-overlay-lang span {
        display: block;
        text-transform: uppercase;
        font-size: 0.65rem;
        letter-spacing: 0.22em;
        color: var(--muted);
        margin-bottom: 0.6rem;
        opacity: 0.8;
    }

    .menu-lang-options {
        display: flex;
        justify-content: center;
        gap: 1.2rem;
    }

    .menu-lang-options a {
        font-size: 0.8rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        opacity: 0.75;
        padding-bottom: 3px;
        border-bottom: 1px solid transparent;
        transition: 0.2s ease;
    }

    .menu-lang-options a.active {
        color: var(--accent);
        opacity: 1;
        border-bottom: 1px solid var(--accent);
    }

    .menu-lang-options a:hover {
        opacity: 1;
        color: var(--accent-strong);
    }
}

/* ==========================================================================
   MOBILE FOOTER LANGUAGE SWITCH
   ========================================================================== */

@media (max-width: 800px) {

    .site-footer-inner {
        text-align: center;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-lang {
        justify-content: center;
        margin-top: 0.4rem;
        font-size: 0.78rem;
    }
}

/* ============================================================
   DESKTOP: Menü-Button gleich hoch wie Reservierungs-Button
   ============================================================ */
@media (min-width: 641px) {

  .site-header-inner {
    gap: 1rem;
  }

  .site-header .menu-toggle,
  .site-header .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;          /* gleiche Höhe für beide */
  }

  /* Menü-Button im Desktop-Style (passt zum Dark-Luxe-Look) */
  .site-header .menu-toggle {
    padding: 0 1.4rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .site-header .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-strong);
  }

  /* Reservierungs-Button leicht angleichen, falls nötig */
  .site-header .header-cta {
    padding: 0 1.6rem;   /* Breite, Höhe kommt über height:44px */
  }
}

/* ================================
   MENU-PDF MODAL – RESPONSIVE FIX
   ================================ */

.menu-pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-pdf-modal.open {
  display: flex;
}

.menu-pdf-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Desktop / Standard */
.menu-pdf-dialog {
  position: relative;
  background: #121010;
  border-radius: 16px;
  max-width: 900px;
  width: 90vw;
  max-height: 90vh;
  padding: 16px 16px 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
}

.menu-pdf-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-pdf-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  color: #f5f3f0;
  font-size: 20px;
  cursor: pointer;
}

/* Wrapper für das iFrame */
.menu-pdf-frame-wrapper {
  flex: 1 1 auto;
  margin-top: 8px;
  width: 100%;
  height: calc(90vh - 70px); /* Dialoghöhe minus Titel/Buttons */
  overflow: hidden;
}

.menu-pdf-frame-wrapper iframe {
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}

/* --- MOBILE: Vollbild & breite Ansicht --- */
@media (max-width: 768px) {
  .menu-pdf-dialog {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
    padding: 12px 8px 10px;
  }

  .menu-pdf-frame-wrapper {
    width: 100%;
    height: calc(100vh - 60px); /* etwas Platz für Titel + Close */
  }

  .menu-pdf-title {
    font-size: 14px;
    padding-right: 32px; /* Platz für das X */
  }

  .menu-pdf-close {
    top: 6px;
    right: 10px;
  }
}

/* ============================
   MENÜ – BUTTON-OPTIK & POSITION
   ============================ */

/* Allgemeine Button-Ausrichtung in Cards */
.card .btn,
.card .btn-secondary,
.card .btn-ghost,
.card .btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 1.25rem; /* Abstand zur Liste / zum Text */
}

/* Wrapper-Variante (DE: .menu-buttons) */
.menu-buttons {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

.menu-buttons .btn,
.menu-buttons .btn-secondary,
.menu-buttons .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile: Buttons über gesamte Kartenbreite laufen lassen */
@media (max-width: 640px) {
    .card .btn,
    .card .btn-secondary,
    .card .btn-ghost,
    .card .btn-small,
    .menu-buttons .btn,
    .menu-buttons .btn-secondary,
    .menu-buttons .btn-ghost {
        width: 100%;
    }

    .menu-buttons {
        justify-content: stretch;
    }
}

/* Optional: Auf größeren Screens etwas kompakter / nicht full-width */
@media (min-width: 641px) {
    .card .btn,
    .card .btn-secondary,
    .card .btn-ghost,
    .card .btn-small {
        width: auto;
        min-width: 180px; /* wirkt wertiger, kann angepasst werden */
    }
}

/* ======================================================
   ✅ Select Styling (match inputs) – dark luxe
   ====================================================== */
/* ===== Select Styling (40px height – clean & elegant) ===== */
.reservation-form select,
.event-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  width: 100%;
  height: 40px;              /* ✅ exakt 40px */
  line-height: 40px;

  padding: 0 42px 0 14px;    /* rechts Platz für Pfeil */
  font-size: 15px;
  color: #f5f3f0;

  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d3c9c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;

  transition: border-color .2s ease, box-shadow .2s ease;
}

.reservation-form select:focus,
.event-form select:focus {
  outline: none;
  border-color: rgba(240,210,138,0.6);
  box-shadow: 0 0 0 2px rgba(240,210,138,0.18);
}

.reservation-form select:invalid,
.event-form select:invalid {
  color: rgba(245,243,240,0.55);
}

/* Remove default arrow (Safari / IE) */
select::-ms-expand {
  display: none;
}

/* ======================================
   FULLSCREEN MENU – COMPACT LUXE STYLE
   ====================================== */

.menu-overlay {
  background:
    radial-gradient(1200px 700px at 70% 20%, rgba(240,210,138,0.07), transparent 60%),
    rgba(10,8,7,0.96);
}

/* Gesamtlayout kompakter */
.menu-overlay-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  padding-top: 70px;
  align-items: flex-start;
}

/* -------------------------
   NAVIGATION LINKS
-------------------------- */
.menu-overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;               /* 🔽 vorher zu groß */
}

.menu-overlay-nav a {
  display: flex;
  align-items: center;
  gap: 18px;

  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.78);
  text-decoration: none;

  padding: 6px 0;
  transition: all 0.25s ease;
}

/* Nummer links */
.menu-overlay-nav .menu-index {
  font-size: 11px;
  letter-spacing: 0.25em;
  opacity: 0.45;
  min-width: 32px;
}

/* Hover */
.menu-overlay-nav a:hover {
  color: #fff;
  transform: translateX(4px);
}

.menu-overlay-nav a:hover .menu-index {
  opacity: 0.9;
}

/* Aktiver Menüpunkt */
.menu-overlay-nav a.active {
  color: #e7c98a;
}

.menu-overlay-nav a.active .menu-index {
  color: #e7c98a;
  opacity: 1;
}

/* -------------------------
   RECHTE SEITE (TEXTBLOCK)
-------------------------- */
.menu-overlay-text h2 {
  font-size: 26px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.menu-overlay-text p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  color: rgba(255,255,255,0.75);
}

/* -------------------------
   SPRACHAUSWAHL
-------------------------- */
.menu-overlay-lang {
  margin-top: 28px;
}

.menu-overlay-lang span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0.6;
  margin-bottom: 8px;
}

.menu-lang-switch {
  display: flex;
  gap: 10px;
}

.menu-lang-switch a {
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all 0.25s ease;
}

.menu-lang-switch a:hover,
.menu-lang-switch a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ======================================
   FULLSCREEN MENU – MOBILE (<= 768px)
   ====================================== */
@media (max-width: 768px){

  /* weniger “Luft” oben/unten */
  .menu-overlay-inner{
    padding: 18px 18px 22px 18px;
  }

  /* Close Button besser erreichbar */
  .menu-close{
    top: 16px;
    right: 16px;
    font-size: 12px;
    letter-spacing: .16em;
    padding: 10px 12px;
  }

  /* 1 Spalte statt 2 */
  .menu-overlay-content{
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 52px;
  }

  /* NAV kompakter + größere Tap-Fläche */
  .menu-overlay-nav{
    gap: 8px;
  }

  .menu-overlay-nav a{
    font-size: 14px;
    letter-spacing: .12em;
    padding: 10px 0;               /* tap-friendly */
  }

  /* Textblock unter der Nav – etwas kleiner */
  .menu-overlay-text h2{
    font-size: 20px;
    letter-spacing: .10em;
    margin: 6px 0 10px 0;
  }

  .menu-overlay-text p{
    font-size: 14px;
    line-height: 1.65;
    max-width: 100%;
  }

  /* Sprache nicht ganz unten “verloren”, sondern normal im Flow */
  .menu-overlay-lang{
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  .menu-overlay-lang span{
    font-size: 10px;
    letter-spacing: .20em;
    margin-bottom: 8px;
  }

  .menu-lang-switch{
    gap: 8px;
    flex-wrap: wrap;
  }

  .menu-lang-switch a{
    font-size: 12px;
    padding: 8px 14px;
  }

  /* Optional: wenn’s auf kleinen Phones zu hoch wird → scroll */
  .menu-overlay{
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}