/*
 * Home Shanti - Ferienwohnung Leipzig
 * Stylesheet
 *
 * Autor: Home Shanti
 * Version: 1.0
 * Letzte Aktualisierung: Januar 2026
 */

/* Local Fonts */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorant-garamond-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorant-garamond-400i.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/cormorant-garamond-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/cormorant-garamond-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/nunito-sans-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/nunito-sans-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/nunito-sans-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/nunito-sans-600.woff2') format('woff2');
}

:root {
    /* Pastellgrün Farbpalette */
    --sage-50: #f6f9f6;
    --sage-100: #e8f0e8;
    --sage-200: #d4e4d4;
    --sage-300: #b8d4b8;
    --sage-400: #9bc49b;
    --sage-500: #7eb07e;
    --sage-600: #5d8a5d;
    --sage-700: #4a6f4a;
    --sage-800: #3d5a3d;
    --sage-900: #2d432d;

    /* Neutrale Töne */
    --warm-white: #fdfcfa;
    --cream: #f8f6f2;
    --stone-100: #f5f4f0;
    --stone-200: #e8e6e1;
    --stone-400: #a8a5a0;
    --stone-600: #6b6860;
    --stone-800: #3d3b38;
    --stone-900: #1a1918;

    /* Akzente */
    --terracotta: #c4a77d;
    --terracotta-light: #e8d4b8;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --content-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--stone-800);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--stone-900);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--stone-600);
}

a {
    color: var(--sage-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sage-700);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sage-100);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--stone-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo span {
    color: var(--sage-600);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--stone-600);
    letter-spacing: 0.02em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage-400);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--sage-500);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--sage-600);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--stone-800);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sage-50) 0%, var(--cream) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--sage-50) 0%, transparent 30%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    width: 100%;
}

.hero-text {
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sage-100);
    color: var(--sage-700);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--sage-600);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--stone-600);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--stone-700);
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    color: var(--sage-500);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--sage-500);
    color: white;
    box-shadow: 0 4px 20px rgba(126, 176, 126, 0.3);
}

.btn-primary:hover {
    background: var(--sage-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(126, 176, 126, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--stone-700);
    border: 2px solid var(--stone-200);
}

.btn-secondary:hover {
    border-color: var(--sage-400);
    color: var(--sage-600);
}

/* Rating Badge */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sage-200);
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.rating-score {
    background: var(--sage-500);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
}

.rating-text strong {
    color: var(--stone-800);
    display: block;
}

/* Sections */
section {
    padding: var(--section-padding) 2rem;
}

.section-container {
    max-width: var(--content-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-600);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background: var(--cream);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--sage-200);
    border-radius: 1rem;
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--sage-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--sage-600);
}

.highlight-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-text p {
    font-size: 0.9rem;
    margin: 0;
}

/* Amenities Section */
.amenities {
    background: var(--warm-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.amenity-category {
    background: var(--cream);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.amenity-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    background: var(--sage-100);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.amenity-icon svg {
    width: 28px;
    height: 28px;
    color: var(--sage-600);
}

.amenity-category h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.amenity-list {
    list-style: none;
}

.amenity-list li {
    font-size: 0.9rem;
    color: var(--stone-600);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amenity-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--sage-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery {
    background: var(--sage-50);
}

/* Desktop Slider */
.gallery-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-slider {
    overflow: hidden;
    border-radius: 1rem;
    flex: 1;
    background: var(--stone-100);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    height: 500px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--stone-100);
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: var(--sage-500);
    color: white;
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
}

.gallery-prev {
    left: -25px;
}

.gallery-next {
    right: -25px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--sage-400);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background: var(--sage-300);
}

.gallery-dot.active {
    background: var(--sage-500);
    border-color: var(--sage-500);
}

/* Mobile Gallery */
.gallery-mobile {
    display: none;
}

.gallery-mobile-item {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--stone-100);
}

.gallery-mobile-item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

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

.lightbox.active {
    display: flex;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    width: 28px;
    height: 28px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
    width: 28px;
    height: 28px;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
}

/* Location Section */
.location {
    background: var(--warm-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location-map {
    border-radius: 1rem;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-content h2 {
    margin-bottom: 1rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--sage-50);
    border-radius: 1rem;
    margin: 1.5rem 0 2rem;
}

.location-address svg {
    width: 24px;
    height: 24px;
    color: var(--sage-600);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.location-address p {
    margin: 0;
    color: var(--stone-700);
}

.location-address strong {
    color: var(--stone-900);
}

.poi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.poi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--stone-100);
}

.poi-item span:first-child {
    color: var(--stone-700);
}

.poi-item span:last-child {
    font-weight: 500;
    color: var(--sage-600);
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--sage-100) 0%, var(--sage-50) 100%);
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-box {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--stone-100);
}

.booking-info-item {
    text-align: center;
}

.booking-info-item svg {
    width: 32px;
    height: 32px;
    color: var(--sage-500);
    margin-bottom: 0.75rem;
}

.booking-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--stone-500);
    margin-bottom: 0.25rem;
}

.booking-info-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--stone-800);
    margin: 0;
}

/* Smoobu Calendar Placeholder */
.smoobu-widget {
    background: var(--stone-100);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.smoobu-widget svg {
    width: 64px;
    height: 64px;
    color: var(--sage-400);
    margin-bottom: 1.5rem;
}

.smoobu-widget p {
    color: var(--stone-500);
    font-size: 0.9rem;
}

.smoobu-widget code {
    display: block;
    background: var(--stone-200);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--stone-600);
}

/* Booking CTA */
.booking-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--sage-50) 0%, var(--sage-100) 100%);
    border-radius: 1rem;
    border: 2px solid var(--sage-200);
}

.booking-cta-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(126, 176, 126, 0.2);
}

.booking-cta-icon svg {
    width: 40px;
    height: 40px;
    color: var(--sage-500);
}

.booking-cta h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--stone-900);
}

.booking-cta p {
    color: var(--stone-600);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
    background: var(--cream);
}

/* FAQ Section */
.faq {
    background: var(--warm-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--cream);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--sage-400);
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--stone-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--sage-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--sage-700);
}

.review-meta h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-meta span {
    font-size: 0.85rem;
    color: var(--stone-400);
}

.review-stars {
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--stone-600);
    font-style: italic;
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--stone-400);
}

/* Contact Section */
.contact {
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

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

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--sage-600);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item a {
    color: var(--stone-700);
}

.contact-item a:hover {
    color: var(--sage-600);
}

.contact-form {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 1rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--stone-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--stone-200);
    border-radius: 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-400);
}

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

/* Footer */
.footer {
    background: var(--stone-900);
    color: var(--stone-400);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: var(--content-width);
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--stone-800);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--sage-400);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--stone-400);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--stone-400);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sage-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--stone-400);
    margin-left: 2rem;
}

.footer-legal a:hover {
    color: var(--sage-400);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-bg {
        width: 50%;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-rows: repeat(2, 250px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--sage-100);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 300px;
        order: -1;
    }

    .hero-bg::before {
        background: linear-gradient(180deg, transparent 60%, var(--sage-50) 100%);
    }

    .hero-content {
        padding: 2rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

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

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

    /* Gallery Mobile Styles */
    .gallery-slider-container,
    .gallery-dots {
        display: none;
    }

    .gallery-mobile {
        display: block;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .booking-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

/* Kontaktformular Styles */
.btn-fullwidth {
    width: 100%;
    justify-content: center;
}

.form-status {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Honeypot field - hidden from humans */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ================================
   Cookie Consent Banner
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--warm-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-hidden {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner-content {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--stone-900);
}

.cookie-banner-text p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--stone-600);
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--sage-600);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--sage-700);
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: var(--sage-600);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--sage-700);
}

.cookie-btn-essential {
    background: transparent;
    color: var(--stone-600);
    border: 1px solid var(--stone-400);
}

.cookie-btn-essential:hover {
    background: var(--stone-100);
    border-color: var(--stone-600);
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 1rem;
        /* Ensure it stays fixed even if something weird happens */
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        right: auto;
        /* Safe area adjustment for modern mobile browsers */
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
        z-index: 2147483647;
        /* Maximum z-index */
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    /* Mobile Hero Fixes */
    .hero {
        flex-direction: column;
        padding-top: 60px;
        /* Space for nav */
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 4rem 2rem;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-rating {
        justify-content: center;
        text-align: left;
    }
}

/* ================================
   Map Placeholder (DSGVO)
   ================================ */

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: var(--sage-50);
    border: 2px dashed var(--sage-300);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
    padding: 2rem;
}

.map-placeholder .map-icon {
    width: 48px;
    height: 48px;
    color: var(--sage-500);
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 1rem;
    color: var(--stone-600);
}

.map-placeholder .btn {
    margin-bottom: 0.75rem;
}

.map-placeholder-hint {
    font-size: 0.8rem;
    color: var(--stone-400);
    margin-bottom: 0;
}

/* ================================
   Accessibility
   ================================ */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage-600);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 500;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--sage-500);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid var(--sage-700);
    outline-offset: 2px;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--sage-500);
    outline-offset: 4px;
    border-radius: 2px;
}

.gallery-dot:focus-visible {
    outline: 2px solid var(--sage-600);
    outline-offset: 2px;
}

.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* ================================
   Language Switcher
   ================================ */

.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--stone-200);
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stone-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-btn:hover {
    border-color: var(--sage-400);
    color: var(--sage-600);
}

.language-btn:focus-visible {
    outline: 2px solid var(--sage-500);
    outline-offset: 2px;
}

.lang-text {
    font-weight: 600;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.language-switcher.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Flag Icons */
.flag-icon {
    display: inline-block;
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.flag-de {
    background: linear-gradient(to bottom, #000 33.33%, #D00 33.33%, #D00 66.66%, #FFCE00 66.66%);
}

.flag-en {
    background:
        linear-gradient(to bottom, #012169 0%, #012169 100%);
    position: relative;
}

.flag-en::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Red diagonal stripes */
        linear-gradient(to bottom right, transparent 40%, #C8102E 40%, #C8102E 45%, transparent 45%,
                        transparent 55%, #C8102E 55%, #C8102E 60%, transparent 60%),
        linear-gradient(to bottom left, transparent 40%, #C8102E 40%, #C8102E 45%, transparent 45%,
                        transparent 55%, #C8102E 55%, #C8102E 60%, transparent 60%),
        /* White diagonal stripes */
        linear-gradient(to bottom right, transparent 35%, white 35%, white 50%, transparent 50%),
        linear-gradient(to bottom left, transparent 35%, white 35%, white 50%, transparent 50%),
        /* Red cross */
        linear-gradient(to bottom, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        linear-gradient(to right, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
        /* White cross */
        linear-gradient(to bottom, transparent 35%, white 35%, white 65%, transparent 65%),
        linear-gradient(to right, transparent 40%, white 40%, white 60%, transparent 60%),
        /* Blue background */
        #012169;
    border-radius: 2px;
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.language-switcher.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--stone-600);
    text-decoration: none;
    transition: all 0.15s ease;
}

.language-option:hover {
    background: var(--sage-50);
    color: var(--sage-700);
}

.language-option.active {
    background: var(--sage-50);
    color: var(--sage-600);
    font-weight: 500;
}

.language-option.active::after {
    content: '✓';
    margin-left: auto;
    font-size: 0.85rem;
}

/* Language switcher in nav for legal/booking pages */
.nav-lang {
    margin-left: auto;
    margin-right: 1rem;
}

/* Gallery ARIA Region */
.gallery[role="region"] {
    /* Ensure proper focus management */
}

/* Gallery Dots - Increased touch targets for accessibility */
.gallery-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--sage-400);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--sage-400);
    transition: all 0.3s ease;
}

.gallery-dot:hover::before {
    background: var(--sage-300);
}

.gallery-dot.active::before {
    background: var(--sage-500);
    border-color: var(--sage-500);
}

/* Mobile adjustments for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        order: -1;
        margin-bottom: 1rem;
        width: 100%;
    }

    .language-btn {
        width: 100%;
        justify-content: center;
    }

    .language-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0.5rem;
        display: none;
    }

    .language-switcher.open .language-dropdown {
        display: block;
    }

    .nav-lang {
        margin: 0;
        position: absolute;
        right: 4rem;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
    }

    .nav-lang .language-btn {
        width: auto;
        padding: 0.5rem;
    }

    .nav-lang .lang-text {
        display: none;
    }

    .nav-lang .language-dropdown {
        position: absolute;
        display: none;
    }

    .nav-lang.open .language-dropdown {
        display: block;
    }
}