:root {
    --bg: #f6f4ef;
    --surface: #ffffff;
    --surface-soft: #f9f7f2;
    --text: #1f2328;
    --muted: #5f6b66;
    --line: #e7e1d6;
    --accent: #2f6b57;
    --accent-dark: #255243;
    --accent-soft: #e8f0ec;
    --radius: 14px;
    --shadow-sm: 0 8px 24px rgba(24, 32, 28, 0.06);
    --shadow-md: 0 14px 34px rgba(24, 32, 28, 0.10);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

img {
    max-width: 100%;
    display: block;
}

/* HERO */
.hero {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background-image: url("../images/titelbild.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 18, 16, 0.22),
        rgba(12, 18, 16, 0.42)
    );
}

.overlay {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 40px 34px;
    color: #fff;
}

.overlay h1 {
    margin: 0 0 14px;
    font-size: 3.4rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.overlay p {
    margin: 0 0 24px;
    font-size: 1.16rem;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.small-hero {
    min-height: 42vh;
}

/* BUTTONS */
.button,
.booking-form button,
.map-consent button {
    display: inline-block;
    border: none;
    border-radius: var(--radius);
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.22s ease;
}

.button {
    padding: 14px 26px;
    box-shadow: 0 10px 24px rgba(24, 32, 28, 0.18);
}

.button:hover,
.booking-form button:hover,
.map-consent button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* MOBILE NAV BUTTON */
.mobile-nav-bar {
    display: none;
}

.menu-toggle {
    width: 56px;
    height: 56px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.97rem;
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: 0.2s ease;
}

nav a:hover {
    color: var(--accent);
    background: var(--accent-soft);
}

/* LAYOUT */
main {
    overflow: hidden;
}

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 88px 24px;
}

.section.light {
    background: var(--surface-soft);
    border-radius: var(--radius);
    margin: 40px auto;
    padding: 60px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section h2 {
    margin: 0 0 18px;
    font-size: 2rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #1c3d31;
}

.section p {
    margin: 0 0 16px;
    font-size: 1.04rem;
    color: #39433f;
}

/* INTRO */
.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.intro-text p {
    margin: 0 0 22px;
}

.highlight {
    margin-top: 20px;
    font-weight: bold;
    color: var(--accent);
}

/* INFO CARD */
.info-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 1rem;
}

.info-item span {
    color: var(--muted);
    font-size: 0.95rem;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: 0.22s ease;
    min-height: 78px;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* DESKTOP GALLERY */
.gallery.desktop-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.gallery.desktop-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.gallery.desktop-gallery img:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* MOBILE SLIDER */
.mobile-slider {
    display: none;
}

.slider {
    position: relative;
    margin-top: 24px;
}

.slider-track {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.slide {
    display: none;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.slide.active {
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

/* TABLE */
table {
    width: 100%;
    margin-top: 24px;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

th {
    background: var(--accent);
    color: #fff;
    text-align: left;
}

th,
td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

tr:last-child td {
    border-bottom: none;
}

/* MAP */
.map-container {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.map-consent {
    padding: 16px;
    text-align: center;
}

.map-consent p {
    margin: 0 0 12px;
    color: var(--muted);
}

.map-consent p strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 1.05rem;
}

.google-map-frame {
    display: none;
    width: 100%;
    height: 380px;
    border-radius: calc(var(--radius) - 4px);
}

/* FORM */
.booking-form {
    max-width: 780px;
    display: grid;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.booking-form label {
    font-weight: 700;
    color: #22322b;
}

.booking-form input:not([type="checkbox"]),
.booking-form select,
.booking-form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px 15px;
    font-size: 1rem;
    color: var(--text);
    background: #fff;
    border: 1px solid #d9d2c7;
    border-radius: var(--radius);
    transition: 0.18s ease;
    appearance: none;
    -webkit-appearance: none;
}

.booking-form input:not([type="checkbox"]):focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(47, 107, 87, 0.12);
}

.booking-form button {
    padding: 15px 22px;
    margin-top: 8px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0 0;
    flex-shrink: 0;
    appearance: auto;
    -webkit-appearance: checkbox;
    cursor: pointer;
}

.checkbox span {
    display: block;
    flex: 1;
}

#kontakt p strong {
    font-size: 1.14rem;
}

#kontakt p {
    margin: 8px 0;
}

/* FOOTER */
footer {
    margin-top: 40px;
    padding: 34px 20px;
    background: #171c19;
    color: #fff;
    text-align: center;
}

footer a {
    color: #e4d5b3;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(12, 16, 15, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 84%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.18s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* FAQ DESIGN */
.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    padding-right: 50px;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    font-size: 1.4rem;
    color: var(--accent);
    transition: 0.25s ease;
}

.faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(-180deg);
}

.faq-item[open] summary {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 10px 16px; /* kleiner wenn geöffnet */
}

.faq-answer {
    padding: 0 22px 18px;
    animation: fadeIn 0.25s ease;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
section {
    scroll-margin-top: 100px;
}

@media (max-width: 900px) {
    .overlay h1 {
        font-size: 2.55rem;
    }

    .overlay p {
        font-size: 1.06rem;
    }

    .section {
        padding: 72px 22px;
    }

    .slide {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .mobile-nav-bar {
        display: flex;
        position: fixed;
        top: 14px;
        right: 14px;
        z-index: 3000;
        background: transparent;
    }

    nav {
        display: none !important;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        margin: 0;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(12px);
        position: fixed;
        top: 80px;
        right: 14px;
        left: 14px;
        z-index: 2999;
    }

    nav.nav-open {
        display: flex !important;
    }

    nav a {
        display: block;
        text-align: center;
        padding: 16px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 22px;
        font-size: 1.05rem;
    }

    .hero {
        min-height: 60vh;
        padding: 16px;
    }

    .overlay {
        padding: 24px 16px;
    }

    .overlay h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .overlay p {
        font-size: 1rem;
    }

    .section {
        padding: 48px 16px;
    }

    .section.light {
        padding: 40px 16px;
        margin: 24px auto;
    }

    .section h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .intro-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .desktop-gallery {
        display: none !important;
    }

    .mobile-slider {
        display: block;
    }

    .slide {
        height: 240px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .booking-form {
        max-width: 100%;
        padding: 18px;
    }

    .booking-form input:not([type="checkbox"]),
    .booking-form select,
    .booking-form textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 12px 14px;
        font-size: 1rem;
    }

    .checkbox {
        font-size: 0.92rem;
        gap: 10px;
    }

    .checkbox input {
        width: 16px;
        height: 16px;
        margin-top: 4px;
    }

    .google-map-frame {
        height: 300px;
    }

    .map-consent {
        padding: 22px 16px;
    }

    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .close {
        top: 14px;
        right: 16px;
        font-size: 34px;
    }
}