/* ==========================================================================
   IDA's Ferienhaus – Stylesheet
   Gemütliches Tiny House am Steinhuder Meer
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* ---------- CSS Custom Properties (Farbpalette & Variablen) ---------- */
:root {
    --color-cream:        #FFF8F0;
    --color-beige:        #F5E6D3;
    --color-sand:         #E8D5B7;
    --color-tan:          #D4A574;
    --color-warm-brown:   #8B6914;
    --color-brown:        #6B4226;
    --color-dark-brown:   #5C3D2E;
    --color-deep-brown:   #3A2218;
    --color-accent:       #A0785A;
    --color-accent-light: #C9A882;
    --color-text:         #3A2218;
    --color-text-light:   #6B5B4E;
    --color-white:        #FFFFFF;
    --color-overlay:      rgba(58, 34, 24, 0.55);

    --font-body:    'Nunito', 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --shadow-sm:  0 2px  8px rgba(58, 34, 24, 0.08);
    --shadow-md:  0 4px 20px rgba(58, 34, 24, 0.12);
    --shadow-lg:  0 8px 40px rgba(58, 34, 24, 0.18);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s ease;
    --max-width:  1200px;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-brown);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-tan);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-deep-brown);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ---------- Utility ---------- */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center { text-align: center; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-tan), var(--color-accent-light));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.transparent {
    background: transparent;
    box-shadow: none;
}

.site-header.transparent .nav-link {
    color: var(--color-white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.site-header.transparent .logo {
    color: var(--color-white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.site-header.scrolled {
    background: rgba(255, 248, 240, 0.97);
    box-shadow: var(--shadow-md);
}

.site-header.scrolled .nav-link {
    color: var(--color-deep-brown);
    text-shadow: none;
}

.site-header.scrolled .logo {
    color: var(--color-deep-brown);
    text-shadow: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    max-width: var(--max-width);
    width: 90%;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-deep-brown);
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

.logo span {
    color: var(--color-tan);
}

/* Desktop Navigation */
.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-deep-brown);
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-tan);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-tan);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--color-deep-brown);
    border-radius: 2px;
    transition: all var(--transition);
}

.site-header.transparent .hamburger span {
    background: var(--color-white);
}

.site-header.scrolled .hamburger span {
    background: var(--color-deep-brown);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 1050;
    }

    .nav-list.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        color: var(--color-deep-brown) !important;
        text-shadow: none !important;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1040;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* ---------- Hero Section (Startseite) ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 34, 24, 0.3) 0%,
        rgba(58, 34, 24, 0.5) 50%,
        rgba(58, 34, 24, 0.7) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1.2s ease;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: clamp(2.4rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--color-sand);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-tan), var(--color-accent));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-deep-brown);
}

/* ---------- Page Header (Unterseiten) ---------- */
.page-header {
    background: linear-gradient(135deg, var(--color-deep-brown), var(--color-brown));
    color: var(--color-white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--color-sand);
    font-size: 1.1rem;
}

/* ---------- Intro / Über uns Section (Startseite) ---------- */
.intro-section {
    background: var(--color-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

.intro-text h2 {
    margin-bottom: 1rem;
}

.intro-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ---------- Highlights / Feature Cards ---------- */
.highlights-section {
    background: var(--color-beige);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h3 {
    margin-bottom: 0.8rem;
}

.highlight-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ---------- Galerie ---------- */
.gallery-section {
    background: var(--color-white);
}

/* Galerie Filter-Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--color-sand);
    background: transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-tan);
    border-color: var(--color-tan);
    color: var(--color-white);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 34, 24, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ---------- Lightbox ---------- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition);
    padding: 5px;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    padding: 0.8rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background var(--transition);
    backdrop-filter: blur(4px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-prev,
    .lightbox-next {
        padding: 0.5rem 0.7rem;
        font-size: 1.4rem;
    }
}

/* ---------- Ausstattung ---------- */
.ausstattung-section {
    background: var(--color-white);
}

.ausstattung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.ausstattung-card {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border-left: 4px solid var(--color-tan);
}

.ausstattung-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ausstattung-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.ausstattung-card .card-icon {
    font-size: 2rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-tan), var(--color-accent-light));
    border-radius: 50%;
    flex-shrink: 0;
}

.ausstattung-card h3 {
    font-size: 1.3rem;
}

.ausstattung-card ul {
    list-style: none;
    padding: 0;
}

.ausstattung-card ul li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.ausstattung-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-tan);
    font-weight: 700;
}

/* ---------- Lage Section ---------- */
.lage-section {
    background: var(--color-beige);
}

.lage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.lage-text p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lage-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 350px;
    background: var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lage-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ---------- Kontakt ---------- */
.kontakt-section {
    background: var(--color-white);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.kontakt-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.kontakt-info-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-beige);
    border-radius: 50%;
    flex-shrink: 0;
}

.kontakt-info-item h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.kontakt-info-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.kontakt-info-item a {
    color: var(--color-brown);
}

.kontakt-info-item a:hover {
    color: var(--color-tan);
}

/* Kontaktformular */
.kontakt-form {
    background: var(--color-cream);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: var(--color-deep-brown);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-tan);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    width: 100%;
}

/* ---------- Buchung / Preise ---------- */
.preise-section {
    background: var(--color-white);
}

.preis-hero {
    background: linear-gradient(135deg, var(--color-deep-brown), var(--color-brown));
    color: var(--color-white);
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.preis-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.preis-hero .preis-betrag {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-tan);
    margin: 1rem 0 0.3rem;
}

.preis-hero .preis-einheit {
    font-size: 1.2rem;
    color: var(--color-sand);
}

.preis-hero .preis-hinweis {
    font-size: 0.85rem;
    color: var(--color-sand);
    opacity: 0.8;
    margin-top: 0.4rem;
}

.preis-hero h2 {
    color: var(--color-white);
}

/* Buchungsbedingungen */
.bedingungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bedingung-card {
    background: var(--color-cream);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.bedingung-card .bedingung-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.bedingung-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.bedingung-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Buchungssystem Container */
.buchungssystem-wrapper {
    margin-top: 3rem;
}

.buchungssystem-wrapper h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

#buchungssystem-container {
    border-radius: var(--radius-md);
    padding: 0;
    min-height: 300px;
    background: transparent;
    overflow: hidden;
}

#buchungssystem-container:hover {
    border-color: var(--color-tan);
}

#buchungssystem-container .placeholder-text {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

#buchungssystem-container .placeholder-text span {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-deep-brown);
    color: var(--color-sand);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col p,
.footer-col a {
    color: var(--color-sand);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--color-tan);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 213, 183, 0.15);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(232, 213, 183, 0.6);
}

/* ---------- Rechtliche Seiten (Impressum, Datenschutz, AGB) ---------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--color-deep-brown);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--color-brown);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.legal-content ul {
    margin: 0.5rem 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.3rem;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-tan);
}

/* ---------- Meldeadresse-Hinweis ---------- */
.hinweis-box {
    background: var(--color-beige);
    border-left: 4px solid var(--color-tan);
    padding: 1.2rem 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.hinweis-box strong {
    color: var(--color-deep-brown);
}

/* ---------- Bewertungen – Review Slider ---------- */
.review-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.review-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.review-slide.active {
    opacity: 1;
    display: block;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.review-card-cta {
    background: linear-gradient(135deg, var(--color-deep-brown), var(--color-brown));
    color: var(--color-white);
}

.review-card-cta h2 {
    color: var(--color-white);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.review-cta-text {
    color: var(--color-sand);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.review-stars {
    font-size: 1.8rem;
    color: #F5A623;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.review-author {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-deep-brown);
}

.review-date {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.3rem;
}

/* Pfeil-Buttons */
.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--color-deep-brown);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-arrow:hover {
    background: var(--color-tan);
    color: var(--color-white);
}

.review-arrow-left {
    left: 0;
}

.review-arrow-right {
    right: 0;
}

/* Dots */
.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-sand);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.review-dot.active {
    background: var(--color-brown);
    transform: scale(1.2);
}

/* ---------- Sterne-Auswahl ---------- */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.8rem;
}

.star-select {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
}

.star-select:hover,
.star-select.hovered {
    color: #F5A623;
    transform: scale(1.15);
}

.star-select.selected {
    color: #F5A623;
}

.star-hint {
    font-size: 0.9rem;
    color: var(--color-sand);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* ---------- Feedback-Formular (innerhalb Slider) ---------- */
.feedback-form {
    text-align: left;
    margin-top: 1.5rem;
}

.feedback-form .form-group {
    margin-bottom: 1rem;
}

.feedback-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-sand);
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.feedback-form textarea {
    min-height: 100px;
    resize: vertical;
}

.feedback-intro {
    color: var(--color-sand);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

/* ---------- Responsive Anpassungen ---------- */

@media (max-width: 992px) {
    .intro-grid,
    .kontakt-grid,
    .lage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .review-card {
        padding: 2.5rem 1.5rem;
    }

    .review-arrow-left {
        left: 0;
    }

    .review-arrow-right {
        right: 0;
    }

    .review-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .review-slider {
        padding: 0 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.8rem;
    }

    .ausstattung-grid {
        grid-template-columns: 1fr;
    }

    .preis-hero {
        padding: 2rem 1.5rem;
    }

    .kontakt-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ---------- Scroll-Animationen ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
