/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    /* Colors */
    --primary: #0f1c2e;
    --primary-dark: #0a1420;
    --primary-light: #1c314e;
    --secondary: #f0d8c0;
    --accent: #f5c16c;
    --accent-dark: #d99634;
    --background: #f7f2ec;
    --background-dark: #efe4d9;
    --text: #1f2a37;
    --text-light: #7a8699;
    --white: #ffffff;
    --black: #000000;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 45%), var(--background);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 28, 46, 0.75);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(15, 28, 46, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.logo span {
    color: var(--white);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-cta {
    margin-left: 0.5rem;
}

.btn-nav {
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent), var(--secondary));
    color: var(--primary);
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1003;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section with Slider
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 60px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    min-height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 28, 46, 0.55) 0%, rgba(32, 61, 99, 0.45) 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--accent);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-badges li {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: rgba(255, 255, 255, 0.16);
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-outline {
    border: 1px solid rgba(15, 28, 46, 0.15);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--white);
    background-color: var(--primary);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    pointer-events: all;
    z-index: 11;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--white);
    width: 30px;
    border-radius: 6px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Hide scroll indicator on touch devices */
@media (hover: none) and (pointer: coarse) {
    .scroll-indicator {
        display: none;
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0.3;
        top: 20px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Intro Section
   ============================================ */

.intro {
    background-color: var(--background);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ============================================
   Features Section
   ============================================ */

.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Family Experience Section
   ============================================ */

.family-experience {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 60%), var(--background-dark);
}

.family-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.family-copy p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.family-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.family-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.family-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.family-card {
    padding: 2rem;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 28, 46, 0.05);
}

.family-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.family-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Pool Details Section
   ============================================ */

.pool-details {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pool-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pool-details .section-title,
.pool-details .section-label {
    color: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.detail-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.detail-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.detail-item:hover::before {
    opacity: 1;
}

.detail-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.detail-number {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    font-family: var(--font-display);
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.detail-item:hover .detail-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: var(--accent);
}

.detail-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    stroke-width: 2.5;
}

.detail-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.detail-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.detail-item p strong {
    color: var(--accent);
    font-weight: 600;
}

.detail-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.spec-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-item strong {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============================================
   Stories Section
   ============================================ */

.stories {
    background-color: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--background);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 28, 46, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-head {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.story-head img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.story-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.story-tag {
    align-self: flex-start;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(245, 193, 108, 0.15);
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ============================================
   Galerie Section
   ============================================ */

.galerie {
    background-color: var(--background);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.galerie-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
}

.galerie-video {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.galerie-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.galerie-item:hover img {
    transform: scale(1.1);
}

.galerie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 28, 46, 0.85) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.galerie-item:hover .galerie-overlay {
    opacity: 1;
}

.galerie-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Reservieren Section
   ============================================ */

.reservieren {
    background-color: var(--white);
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.info-card {
    background-color: var(--background);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 28, 46, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-card.featured {
    border: 1px solid var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.pricing-head {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pricing-head strong {
    font-size: 2rem;
    color: var(--primary);
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-card ul li {
    color: var(--text-light);
    position: relative;
    padding-left: 1.2rem;
}

.pricing-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.badge {
    align-self: flex-start;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 28, 46, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge-accent {
    background: rgba(245, 193, 108, 0.2);
    color: var(--accent-dark);
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.booking-times {
    list-style: none;
    margin: 1.5rem 0;
}

.booking-times li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--background-dark);
    color: var(--text);
}

.booking-times li:last-child {
    border-bottom: none;
}

.email-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.email-link:hover {
    color: var(--primary-dark);
}

.booking-module {
    margin-top: var(--spacing-lg);
}

.module-placeholder {
    background-color: var(--background);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px dashed var(--primary-light);
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ============================================
   Hinweise Section
   ============================================ */

.hinweise {
    background-color: var(--background);
}

.hinweise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.hinweis-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.hinweis-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hinweis-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.hinweis-card ul {
    list-style: none;
}

.hinweis-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.hinweis-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   Kontakt Section
   ============================================ */

.kontakt {
    background-color: var(--white);
}

.kontakt-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: var(--spacing-lg);
    align-items: start;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.kontakt-item {
    text-align: left;
    background: var(--background);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.kontakt-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.kontakt-item a {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.kontakt-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.kontakt-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.kontakt-map {
    width: 100%;
    position: sticky;
    top: 100px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 28, 46, 0.1);
    background: var(--background);
    padding: 0.5rem;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 520px;
    border-radius: 15px;
    border: none;
}

/* ============================================
   AGB Section
   ============================================ */

.agb {
    background-color: var(--background);
}

.agb-content {
    max-width: 900px;
    margin: 0 auto;
}

.agb-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.agb-item h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.agb-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.agb-item p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: var(--spacing-sm) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.footer-logo span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Scroll to Top Button
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    :root {
        --spacing-xxl: 4rem;
        --spacing-lg: 2rem;
        --container-padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 28, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition-normal);
        z-index: 1002;
        overflow-y: auto;
        height: calc(100vh - 60px);
        gap: 0;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .btn-nav {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 0.875rem 0;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary);
    }
    
    .hero-slider {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .hero-title {
        margin-bottom: 0.75rem;
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle {
        margin-bottom: 0.75rem;
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .hero-description {
        margin-bottom: 1.25rem;
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
    }
    
    .hero-badges {
        margin-bottom: 1.25rem;
        gap: 0.5rem;
    }
    
    .hero-badges li {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-dots {
        bottom: 3rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .details-grid,
    .galerie-grid,
    .booking-info,
    .family-wrapper,
    .hinweise-grid,
    .kontakt-info {
        grid-template-columns: 1fr;
    }
    
    .kontakt-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kontakt-map {
        position: static;
        order: -1;
    }
    
    .kontakt-item {
        text-align: center;
        padding: 1.5rem;
    }
    
    .detail-item {
        padding: 2rem 1.5rem;
    }
    
    .detail-number {
        font-size: 4rem;
    }
    
    .detail-icon {
        width: 70px;
        height: 70px;
    }
    
    .detail-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .galerie-video {
        grid-column: span 1;
    }
    
    .map-wrapper {
        padding: 0.25rem;
    }
    
    .map-wrapper iframe {
        height: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 1.25rem;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        margin-bottom: 1rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .hero-badges {
        margin-bottom: 1rem;
        gap: 0.4rem;
    }
    
    .hero-badges li {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn-ghost {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-dots {
        bottom: 2.5rem;
        gap: 0.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .feature-card,
    .info-card,
    .hinweis-card,
    .agb-item {
        padding: 1.5rem;
    }
}
