:root {
    --bg: #111111;
    --bg-soft: #1b1b1b;
    --text: #f6f1e8;
    --muted: #b9b0a2;
    --gold: #c69b45;
    --gold-soft: #e4c071;
    --cream: #f5ead8;
    --dark-text: #191714;
    --border: rgba(198, 155, 69, 0.25);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

/* =========================================================
   RESET / BASIS
========================================================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 76px;
    padding: 14px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-soft);
    font-size: 26px;
    font-weight: 800;
}

.brand small {
    display: block;
    color: var(--muted);
    margin-top: -4px;
}

nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    color: var(--gold-soft);
}

.nav-toggle {
    display: none;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    font-size: 26px;
    border-radius: 10px;
    padding: 4px 10px;
    cursor: pointer;
}

/* =========================================================
   HERO / STARTBEREICH
========================================================= */

.map-view {
    margin-top: 24px;
    min-height: 360px;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    background: #171717;
}

.map-view iframe {
    display: block;
    width: 100%;
    height: 360px;
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.82) 28%,
            rgba(0, 0, 0, 0.50) 50%,
            rgba(0, 0, 0, 0.82) 72%,
            rgba(0, 0, 0, 0.96) 100%
        ),
        url("../img/bala.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 6vw;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 50%, rgba(198, 155, 69, 0.22), transparent 28%),
        radial-gradient(circle at 82% 45%, rgba(198, 155, 69, 0.18), transparent 30%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 35%, transparent 65%, rgba(0, 0, 0, 0.72));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.45) 18%,
            rgba(0, 0, 0, 0.08) 50%,
            rgba(0, 0, 0, 0.45) 82%,
            rgba(0, 0, 0, 0.92) 100%
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
    padding: 34px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(198, 155, 69, 0.22);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.eyebrow,
.section-kicker {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    font-size: 13px;
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(48px, 8vw, 94px);
    line-height: 0.95;
    margin: 0 0 22px;
}

h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.08;
    margin: 0 0 18px;
}

h3 {
    margin-top: 0;
    font-size: 24px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: #eee1ce;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-badges span {
    border: 1px solid var(--border);
    color: var(--cream);
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--gold);
    color: #120f0a;
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: var(--gold);
    color: var(--text);
    background: rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: rgba(198, 155, 69, 0.15);
}

.btn-dark {
    background: #151515;
    color: var(--gold-soft);
    border-color: var(--border);
}

/* =========================================================
   SECTIONS
========================================================= */
.section {
    padding: 90px 6vw;
}

.section-narrow {
    margin: -70px auto 0;
    width: min(1100px, calc(100% - 32px));
    position: relative;
    z-index: 5;
}

.dark-section {
    background: #080808;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.muted {
    color: var(--muted);
}

.light {
    color: #d7cabb;
}

/* =========================================================
   ÖFFNUNGSZEITEN-KARTE
========================================================= */
.open-card {
    background: var(--cream);
    color: var(--dark-text);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.open-card h2 {
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 5px;
}

.open-card .section-kicker {
    color: #815f1c;
}

/* =========================================================
   ÜBER UNS
========================================================= */
.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.image-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-card img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    background: #252525;
}

.image-card span {
    display: block;
    padding: 12px 16px;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   LEISTUNGS-KARTEN
========================================================= */
.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.card,
.price-box,
.contact-box,
.booking-form,
.booking-info {
    background: linear-gradient(180deg, #1d1d1d, #151515);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.card h3,
.price-box h3,
.contact-box h3,
.booking-info h3 {
    color: var(--gold-soft);
}

/* =========================================================
   PREISE
========================================================= */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 12px 0;
}

.price-row strong {
    color: var(--gold-soft);
    white-space: nowrap;
}

/* =========================================================
   BUCHUNG
========================================================= */
.booking-section {
    background: var(--cream);
    color: var(--dark-text);
}

.booking-section .section-kicker {
    color: #815f1c;
}

.booking-section .muted {
    color: #6b6257;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-top: 30px;
}

.booking-form,
.booking-info {
    background: white;
    color: var(--dark-text);
    border-color: rgba(0, 0, 0, 0.08);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}

.booking-form label:nth-last-of-type(1),
.booking-form button,
.form-message {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    background: #fffdf8;
}

textarea {
    resize: vertical;
}

.form-message {
    margin: 0;
    font-weight: 800;
}

.form-message.success {
    color: #1f7a38;
}

.form-message.error {
    color: #a82626;
}

.mini-card {
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
    background: #f5ead8;
}

/* =========================================================
   GALERIE
========================================================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.gallery figure {
    margin: 0;
    background: #151515;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #2b2b2b;
}

.gallery figcaption {
    padding: 12px 14px;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   KONTAKT
========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-box a {
    color: var(--gold-soft);
}

.map-placeholder {
    margin-top: 24px;
    min-height: 280px;
    border: 1px dashed var(--border);
    border-radius: 28px;
    display: grid;
    place-items: center;
    color: var(--muted);
    background: #171717;
    text-align: center;
    padding: 20px;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
    padding: 34px 6vw;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--border);
    background: #050505;
}

.footer p {
    margin: 4px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: var(--gold-soft);
}

/* =========================================================
   IMPRESSUM / DATENSCHUTZ
========================================================= */
.legal-page {
    background: var(--cream);
    color: var(--dark-text);
}

.legal-container {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0;
}

.legal-container a {
    color: #7d560e;
}

/* =========================================================
   RESPONSIVE / TABLET
========================================================= */
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #080808;
        padding: 16px 6vw;
        border-bottom: 1px solid var(--border);
    }

    nav.open {
        display: flex;
    }

    .hero {
        min-height: 650px;
    }

    .open-card,
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .split,
    .booking-layout,
    .price-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   RESPONSIVE / HANDY
========================================================= */
@media (max-width: 580px) {
    .section {
        padding: 64px 20px;
    }

    .hero {
        padding: 100px 20px;
    }

    .cards,
    .gallery,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-form label:nth-last-of-type(1),
    .booking-form button,
    .form-message {
        grid-column: auto;
    }
}
/* =========================================================
   INTERAKTIVE TERMINÜBERSICHT
========================================================= */

.slot-overview {
    grid-column: 1 / -1;
    margin-top: 4px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    padding: 16px;
    background: #fffaf0;
}

.slot-overview-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.slot-overview-head span {
    color: #6b6257;
    font-size: 14px;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 10px;
}

.slot-button {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 10px 8px;
    background: #ffffff;
    color: #191714;
    font-weight: 800;
    cursor: pointer;
    transition: 0.18s ease;
}

.slot-button small {
    display: block;
    margin-top: 2px;
    font-weight: 600;
    color: #6b6257;
}

.slot-button:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.slot-button.free {
    background: #ffffff;
}

.slot-button.selected {
    background: var(--gold);
    color: #120f0a;
    border-color: var(--gold);
}

.slot-button.selected small {
    color: #120f0a;
}

.slot-button.blocked,
.slot-button.disabled {
    background: #e9e1d3;
    color: #958b7b;
    cursor: not-allowed;
    opacity: 0.8;
}

.slot-button.blocked:hover,
.slot-button.disabled:hover {
    transform: none;
    border-color: rgba(0, 0, 0, 0.12);
}

.slot-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    color: #6b6257;
    font-size: 14px;
}

.slot-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.slot-legend i {
    width: 14px;
    height: 14px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.14);
}

.legend-free {
    background: #ffffff;
}

.legend-selected {
    background: var(--gold);
}

.legend-blocked {
    background: #e9e1d3;
}