/**
 * Zucker & Zorn Main Stylesheet
 * Clean extraction from Vorlage.html - Dark Reader styles removed
 */

/* ===== CSS VARIABLES ===== */
:root {
    --bg: #0B1020;
    --surface: rgba(255, 255, 255, .06);
    --text: #F5F7FF;
    --muted: rgba(245, 247, 255, .72);
    --red: #FF2D2D;
    --pink: #FF3FB4;
    --yellow: #FFD23F;
    --cyan: #1DE9FF;
    --radius: 18px;
    --shadow: 0 12px 30px rgba(0, 0, 0, .45);
    --max: 1100px;
}

/* ===== BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Fixed Background Layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background:
        radial-gradient(1100px 800px at 20% 10%, rgba(255, 63, 180, .18), transparent 55%),
        radial-gradient(900px 650px at 80% 20%, rgba(29, 233, 255, .12), transparent 55%),
        radial-gradient(900px 650px at 50% 85%, rgba(255, 210, 63, .10), transparent 55%),
        linear-gradient(180deg, #070A14, var(--bg));
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--cyan);
    color: #000;
    padding: 8px;
    z-index: 100;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* ===== NEON HELPERS ===== */
.neon {
    text-shadow:
        0 0 10px rgba(255, 63, 180, .55),
        0 0 22px rgba(255, 45, 45, .35);
}

.glow-red {
    box-shadow: 0 0 0 1px rgba(255, 45, 45, .45), 0 0 26px rgba(255, 45, 45, .18);
}

.glow-cyan {
    box-shadow: 0 0 0 1px rgba(29, 233, 255, .40), 0 0 24px rgba(29, 233, 255, .16);
}

.glow-pink {
    box-shadow: 0 0 0 1px rgba(255, 63, 180, .40), 0 0 24px rgba(255, 63, 180, .16);
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(11, 16, 32, .75);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--red));
    box-shadow: 0 0 18px rgba(255, 63, 180, .35), 0 0 28px rgba(255, 45, 45, .20);
    flex-shrink: 0;
}

.brand strong {
    letter-spacing: .3px;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: var(--muted);
    padding: 10px;
    border-radius: 12px;
    transition: all .2s ease;
}

nav a:hover,
nav a:focus {
    color: var(--text);
    background: rgba(255, 255, 255, .06);
    outline: 2px solid rgba(29, 233, 255, .35);
    outline-offset: 2px;
}

.cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
    border: 0;
    cursor: pointer;
    color: var(--text);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 11px 14px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow);
    font-size: 15px;
    font-weight: 600;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn:hover,
.btn:focus {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-1px);
    outline: 2px solid rgba(29, 233, 255, .35);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--red));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 0 0 1px rgba(255, 45, 45, .35), 0 0 34px rgba(255, 63, 180, .22);
}

.btn-primary:hover,
.btn-primary:focus {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(11, 16, 32, .2);
    border: 1px solid rgba(29, 233, 255, .35);
    box-shadow: 0 0 20px rgba(29, 233, 255, .12);
}

.btn-large {
    padding: 14px 20px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 0 0 1px rgba(29, 233, 255, .15);
}

.btn-outline:hover,
.btn-outline:focus {
    background: rgba(29, 233, 255, .08);
    border-color: rgba(29, 233, 255, .45);
    box-shadow: 0 0 24px rgba(29, 233, 255, .18);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== CARD COMPONENT ===== */
.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.badge.yellow {
    border-color: rgba(255, 210, 63, .35);
    box-shadow: 0 0 18px rgba(255, 210, 63, .10);
}

.badge.cyan {
    border-color: rgba(29, 233, 255, .35);
    box-shadow: 0 0 18px rgba(29, 233, 255, .10);
}

.badge.pink {
    border-color: rgba(255, 63, 180, .35);
    box-shadow: 0 0 18px rgba(255, 63, 180, .10);
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
    font-weight: 650;
    letter-spacing: .2px;
}

.badge-new.cyan {
    border-color: rgba(29, 233, 255, .4);
    box-shadow: 0 0 20px rgba(29, 233, 255, .12);
}

.badge-new.yellow {
    border-color: rgba(255, 210, 63, .4);
    box-shadow: 0 0 20px rgba(255, 210, 63, .12);
}

.badge-new.pink {
    border-color: rgba(255, 63, 180, .4);
    box-shadow: 0 0 20px rgba(255, 63, 180, .12);
}

/* ===== SECTIONS ===== */
section {
    padding: 28px 0;
}

.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 22px;
    letter-spacing: .2px;
    font-weight: 800;
}

.small {
    font-size: 13px;
    color: var(--muted);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}

.info-card {
    padding: 18px;
}

.info-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.info-card h3 svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: -2px;
    color: var(--cyan);
}

.info-card p {
    color: var(--muted);
    margin-bottom: 8px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.programm-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.programm-title svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--cyan);
}

.kontakt-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.kontakt-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.kontakt-mini-card {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    padding: 10px;
}

.kontakt-mini-card h4 {
    margin: 0 0 6px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kontakt-mini-card h4 svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--cyan);
}

.kontakt-mini-card p {
    margin: 0;
    font-size: 13px;
}

/* ===== HERO SECTION ===== */
.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Logo Styling */
.hero-logo-wrapper {
    position: relative;
    width: min(500px, 90vw);
    height: min(500px, 90vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(255, 63, 180, .4)) drop-shadow(0 0 80px rgba(255, 45, 45, .25));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

/* Hero Text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.hero-panel {
    width: min(960px, 100%);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .05));
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.hero-title {
    margin: 0;
    font-size: clamp(26px, 3.8vw, 42px);
    line-height: 1.1;
    text-align: center;
    font-weight: 900;
    letter-spacing: .2px;
}

.hero-schedule-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-schedule-item {
    border-radius: 14px;
    padding: 14px;
    background: rgba(11, 16, 32, .45);
    border: 1px solid rgba(255, 255, 255, .12);
    text-align: left;
}

.hero-schedule-item h3 {
    margin: 0 0 6px;
    font-size: 13px;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--cyan);
}

.hero-day-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-day-title svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hero-schedule-item h3.day-mi-do {
    color: #39ffb6;
    text-shadow: 0 0 12px rgba(57, 255, 182, .55);
}

.hero-schedule-item h3.day-fr {
    color: #ff4fd8;
    text-shadow: 0 0 12px rgba(255, 79, 216, .55);
}

.hero-schedule-item h3.day-sa {
    color: #25e9ff;
    text-shadow: 0 0 12px rgba(37, 233, 255, .55);
}

.hero-schedule-item p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    font-weight: 600;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 20px rgba(29, 233, 255, .6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(1.3);
    }
}

.hero-headline {
    font-size: clamp(28px, 4.5vw, 48px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: .5px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-headline .line {
    background: linear-gradient(135deg, var(--pink), var(--yellow), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-sub {
    color: var(--muted);
    font-size: 17px;
    max-width: 65ch;
    margin: 0;
    line-height: 1.5;
}

.hero-today {
    width: 100%;
    padding: 12px 14px;
    text-align: left;
    border-radius: 14px;
}

.hero-today-label {
    margin: 0 0 4px;
    color: var(--cyan);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 700;
}

.hero-today-text {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}

.hero-ctas .btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    animation: bounce 2s ease-in-out infinite;
    opacity: .6;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===== LOKAL SECTION ===== */
.lokal-section {
    padding: 60px 0;
    padding-bottom: 100px;
    background:
        radial-gradient(900px 700px at 30% 50%, rgba(255, 63, 180, .08), transparent),
        radial-gradient(800px 600px at 70% 50%, rgba(29, 233, 255, .06), transparent);
}

/* Image Grid */
.lokal-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-template-areas:
        "main side-top"
        "main side-bottom";
    gap: 16px;
    margin-bottom: 60px;
}

.lokal-image-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.lokal-image-card.main-image {
    grid-area: main;
    aspect-ratio: auto;
    min-height: 100%;
}

.lokal-image-card:nth-child(2) {
    grid-area: side-top;
}

.lokal-image-card:nth-child(3) {
    grid-area: side-bottom;
}

.lokal-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.lokal-image-card:hover,
.lokal-image-card:focus {
    transform: translateY(-4px);
}

.lokal-image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 16, 32, .95) 0%,
            rgba(11, 16, 32, .4) 50%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease;
}

.lokal-image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.overlay-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Feature Cards */
.lokal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}

.feature-card {
    padding: 22px;
    text-align: center;
    transition: transform .3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--cyan);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Highlight/Quote */
.lokal-highlight {
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
    background: linear-gradient(135deg,
            rgba(255, 63, 180, .08),
            rgba(255, 45, 45, .06));
}

.lokal-highlight blockquote {
    margin: 0;
}

.quote-text {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.5;
    color: var(--text);
    font-weight: 600;
    font-style: italic;
    margin: 0 0 12px;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    display: block;
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

/* Focus Cards */
.lokal-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.lokal-focus-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
}

.lokal-focus-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--text);
}

.lokal-focus-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* CTA */
.lokal-cta {
    text-align: center;
    padding: 32px 0 0;
}

.lokal-cta p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 17px;
}

.zz-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(2, 4, 10, .88);
    display: grid;
    place-items: center;
    padding: 30px;
}

.zz-lightbox[hidden] {
    display: none !important;
}

.zz-lightbox img {
    max-width: min(1000px, 94vw);
    max-height: 78vh;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.zz-lightbox p {
    margin-top: 10px;
    color: var(--muted);
    text-align: center;
}

.zz-lightbox-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    color: var(--text);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

/* ===== RESERVATION SECTION ===== */
#reservieren {
    padding: 60px 0;
}

/* Method Cards (WhatsApp, Phone, Form) */
.reservation-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.method-card {
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform .3s ease;
}

.method-card:hover {
    transform: translateY(-4px);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    margin-bottom: 4px;
    font-size: 0;
}

.method-card.glow-pink .method-icon {
    background: rgba(255, 63, 180, .08);
    border-color: rgba(255, 63, 180, .3);
    color: var(--pink);
}

.method-card.glow-cyan .method-icon {
    background: rgba(29, 233, 255, .08);
    border-color: rgba(29, 233, 255, .3);
    color: var(--cyan);
}

.method-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.method-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Divider */
.reservation-divider {
    text-align: center;
    position: relative;
    margin: 50px 0;
}

.reservation-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, .15) 20%,
            rgba(255, 255, 255, .15) 80%,
            transparent);
}

.reservation-divider span {
    position: relative;
    background: var(--bg);
    padding: 0 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Form Wrapper */
.reservation-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.form-intro {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.form-intro h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.form-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

/* Form Styling */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.form-field label svg {
    flex-shrink: 0;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    padding: 12px 14px;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    transition: all .2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(245, 247, 255, .35);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(29, 233, 255, .55);
    box-shadow: 0 0 0 3px rgba(29, 233, 255, .12);
    background: rgba(255, 255, 255, .08);
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
}

/* Form Submit */
.form-submit {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    max-width: 50ch;
}

.form-hint svg {
    flex-shrink: 0;
}

.form-status {
    margin: 6px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(29, 233, 255, .35);
    background: rgba(29, 233, 255, .08);
    color: var(--text);
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.form-status a {
    color: var(--cyan);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(800px 600px at 30% 50%, rgba(255, 63, 180, .06), transparent),
        rgba(0, 0, 0, .2);
    margin-top: 30px;
}

.footer-links .btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
    margin: 0;
}

.footer-description {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all .3s ease;
}

.social-link:hover,
.social-link:focus {
    background: rgba(255, 63, 180, .12);
    border-color: rgba(255, 63, 180, .4);
    color: var(--text);
    box-shadow: 0 0 20px rgba(255, 63, 180, .2);
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-heading {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .3px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all .2s ease;
    padding: 4px 0;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: var(--text);
    padding-left: 8px;
}

/* Address */
.footer-address {
    font-style: normal;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-address p {
    margin: 0 0 12px;
}

.footer-address-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer-address-row svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--cyan);
    margin-top: 2px;
}

.footer-address strong {
    color: var(--text);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    transition: all .2s ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus {
    color: var(--cyan);
}

/* Opening Hours */
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-hours li {
    color: var(--muted);
    font-size: 14px;
}

.footer-hours strong {
    color: var(--text);
    font-weight: 650;
    min-width: 40px;
    display: inline-block;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.footer-legal-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
    color: var(--text);
}

.footer-legal-links span {
    color: rgba(255, 255, 255, .2);
}

.footer-credit {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sticky-mobile-cta {
    display: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    nav ul {
        display: none;
    }

    .hero-new {
        min-height: 90vh;
        padding: 60px 0 40px;
    }

    .hero-logo-wrapper {
        width: min(400px, 85vw);
        height: min(400px, 85vw);
    }

    .hero-headline {
        font-size: clamp(24px, 5vw, 36px);
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-panel {
        padding: 20px;
    }

    .hero-schedule-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .lokal-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "side-top"
            "side-bottom";
    }

    .lokal-image-card.main-image {
        min-height: auto;
        aspect-ratio: 16/9;
    }

    .lokal-features {
        grid-template-columns: 1fr;
    }

    .lokal-focus-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .image-overlay {
        opacity: 1;
    }

    .reservation-methods {
        grid-template-columns: 1fr;
    }

    .reservation-form-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .sticky-mobile-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1100;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        border-radius: 14px;
        background: rgba(7, 10, 20, .9);
        border: 1px solid rgba(255, 255, 255, .12);
        backdrop-filter: blur(10px);
    }

    body {
        padding-bottom: 90px;
    }
}

@media (max-width: 600px) {
    .hero-logo-wrapper {
        width: min(320px, 80vw);
        height: min(320px, 80vw);
    }

    .hero-badges {
        flex-direction: column;
        width: 100%;
    }

    .badge-new {
        justify-content: center;
    }

    .lokal-focus-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .kontakt-two-columns {
        grid-template-columns: 1fr;
    }

    .kontakt-grid-two {
        grid-template-columns: 1fr;
    }
}

.footer-contact-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--cyan);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .hero-logo,
    .pulse-dot,
    .scroll-hint,
    .hero-headline .line {
        animation: none !important;
    }

    .lokal-image-card,
    .feature-card {
        transition: none !important;
    }

    .lokal-image-card:hover img {
        transform: none !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    header,
    .cta,
    .hero-actions,
    .today-ctas,
    form {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}
/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(11,16,32,.98), rgba(11,16,32,1));
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
  padding: 20px;
  transform: translateY(100%);
  transition: transform .3s ease;
}

#cookie-banner.cookie-banner-show {
  transform: translateY(0);
}

#cookie-banner.cookie-banner-hide {
  transform: translateY(100%);
}

.cookie-banner-content {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner-text strong {
  color: var(--text);
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.cookie-banner-text a {
  color: var(--cyan);
  text-decoration: underline;
  transition: color .2s ease;
}

.cookie-banner-text a:hover,
.cookie-banner-text a:focus {
  color: var(--text);
}

.cookie-banner-actions {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  #cookie-banner {
    padding: 16px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner-text {
    min-width: auto;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}
