:root {
            --light-blue: #e0f2fe;
            --dark-bg: #07080b;
            --accent-pink: #ff00ea;
            --accent-yellow: #f9ce44;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--light-blue);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- NAVIGATION --- */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(7, 8, 11, 0.6);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
        }

        .nav-logo {
            color: #fff;
            font-weight: 900;
            font-size: 1.5rem;
            text-decoration: none;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--accent-yellow); }

        .nav-toggle { display: none; background: none; border: none; cursor: pointer; z-index: 1100; }
        .hamburger { display: block; width: 25px; height: 2px; background: #fff; position: relative; }
        .hamburger::before, .hamburger::after { content: ''; position: absolute; width: 25px; height: 2px; background: #fff; left: 0; transition: 0.3s; }
        .hamburger::before { top: -8px; }
        .hamburger::after { bottom: -8px; }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow: hidden;
            isolation: isolate;
            background: var(--dark-bg);
            --mx: .5;
            --my: .5;
        }

        .hero__img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -5;
            transform: scale(1.15); 
        }

        .hero__overlay {
            position: absolute;
            inset: 0;
            z-index: -4;
            /* FIX: Sanfter  bergang von Schwarz (Links) zu den braunen K sten (Rechts) */
            background: linear-gradient(to right, 
                rgba(7, 8, 11, 1) 0%, 
                rgba(7, 8, 11, 0.9) 15%, 
                rgba(7, 8, 11, 0.4) 25%, 
                transparent 100%);
        }

        .hero__gradient-exit {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 25vh;
            z-index: -2;
            background: linear-gradient(to bottom, transparent, var(--light-blue));
        }

        .hero__content {
            margin-left: 10%;
            margin-top: 22vh;
            position: relative;
            z-index: 10;
            width: 35%;
            min-width: 320px;
            color: #fff;
        }

        .hero__content .eyebrow {
            display: block;
            letter-spacing: 4px;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--accent-yellow);
            font-size: clamp(2.5rem, 8vw, 110px);
            line-height: 1;
            text-transform: uppercase;
        }

        .hero__content .sub-headline { font-size: 1.8rem; font-weight: 400; margin-bottom: 1rem; }
        .hero__content .description { font-size: 1.1rem; opacity: 0.85; margin-bottom: 2.5rem; max-width: 400px; }

        .btn {
            display: inline-block;
            padding: 1.2rem 2.8rem;
            border-radius: 50px;
            background: var(--accent-pink);
            background: #d000bf;
            color: #fff;
            text-decoration: none;
            font-weight: 800;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(255, 0, 234, 0.2);
        }

        .btn-mobile {
            text-align: center;
	    display: none;
        }


        .btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 0, 234, 0.4); }

.fog {
    position: absolute;
    left: -20%;
    width: 140%;
    height: 110%;
    pointer-events: none;
    filter: blur(4px);
    opacity: 0.6;
    z-index: -1;
    mix-blend-mode: screen;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    --dx: calc((var(--mx) - .5) * 1px);
    --dy: calc((var(--my) - .5) * 1px);
    will-change: transform;
}

.fog--back {
    top: -5%;
    opacity: 0.3;
    animation: fog-drift-slow 15s linear infinite alternate;
    transform: translate3d(calc(var(--dx) * 40), calc(var(--dy) * 20), 0) scale(1.1);
}

.fog--mid {
    top: 5%;
    opacity: 0.45;
    animation: fog-drift-medium 12s linear infinite alternate-reverse;
    transform: translate3d(calc(var(--dx) * 80), calc(var(--dy) * 40), 0) scale(1.2);
}

.fog--front {
    bottom: -5%;
    opacity: 0.6;
    animation: fog-drift-fast 8s linear infinite alternate;
    transform: translate3d(calc(var(--dx) * 120), calc(var(--dy) * 60), 0) scale(1.3);
}

        @keyframes fog-drift-slow { 
            0% { transform: translate3d(calc(var(--dx) * 40 - 2%), calc(var(--dy) * 20), 0) scale(1.1); } 
            100% { transform: translate3d(calc(var(--dx) * 40 + 2%), calc(var(--dy) * 20), 0) scale(1.1); } 
        }
        @keyframes fog-drift-medium { 
            0% { transform: translate3d(calc(var(--dx) * 80 + 3%), calc(var(--dy) * 40), 0) scale(1.2); } 
            100% { transform: translate3d(calc(var(--dx) * 80 - 3%), calc(var(--dy) * 40), 0) scale(1.2); } 
        }
        @keyframes fog-drift-fast { 
            0% { transform: translate3d(calc(var(--dx) * 120 - 5%), calc(var(--dy) * 60), 0) scale(1.3); } 
            100% { transform: translate3d(calc(var(--dx) * 120 + 5%), calc(var(--dy) * 60), 0) scale(1.3); } 
        }

        .next-section { padding: 100px 10%; background-color: var(--light-blue); text-align: center; color: #1e293b; }

.pricing-section {
    padding: 100px 10%;
    background-color: var(--light-blue);
    text-align: center;
}

.pricing-header {
    margin-bottom: 30px;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
	cursor: pointer;
user-select: none;
}

/* Der "Fun-Shadow" Effekt aus deinem Prompt */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px var(--dark-bg);
    border-color: var(--dark-bg);
}

/* Highlight f r die mittlere Card */
.pricing-card.featured {
    border-color: var(--accent-pink);
    box-shadow: 10px 10px 0px rgba(255, 0, 234, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-pink);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
}

.card-emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-tier {
    color: var(--accent-pink);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.currency {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-bg);
}

.per-person {
    color: #64748b;
    font-size: 0.9rem;
}

.duration-info {
    font-weight: 600;
    color: #64748b;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    text-align: left;
    flex-grow: 1;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check {
    color: var(--accent-pink);
    font-weight: 900;
}

/* Buttons */
.btn-outline, .btn-filled {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-pink);
}

.btn-outline {
    background: transparent;
    color: var(--accent-pink);
}

.btn-outline:hover {
    background: rgba(255, 0, 234, 0.05);
}

.btn-filled {
    background: var(--accent-pink);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 234, 0.3);
}

.btn-filled:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 0, 234, 0.4);
}


/* --- GALLERY SECTION --- */
.gallery {
    padding: 100px 10%;
    background-color: var(--dark-bg); /* Dunkel f r maximalen Kontrast zu den Neon-Bildern */
}

.gallery-header {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #1a1c23;

    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Spezielle Gr  en f r das Grid-Layout */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.portrait {
    grid-row: span 2;
}

/* Hover-Effekt */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 0, 234, 0.4); /* Pinker Schimmer beim Hover */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}




.gallery-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- FEATURES BAR --- */
.features-bar {
    padding: 60px 10%;
    background-color: var(--light-blue);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    padding: 25px !important;
    flex-direction: row !important; /* Icons nebeneinander statt untereinander */
    align-items: center;
    gap: 20px;
    text-align: left;
    background: white;
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-text h3 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    font-weight: 800;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.clickable-feature {
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column !important; /* Untereinander wenn aufgeklappt */
    align-items: flex-start !important;
}

.features-container .clickable-feature {
    align-self: start;
}

.feature-main {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height:60px;
}

.feature-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
    border-top: 1px solid transparent;
}

/* Wenn die Karte die Klasse 'active' bekommt */
.clickable-feature.active {
    border-color: var(--accent-pink) !important;
    box-shadow: 10px 10px 0px var(--dark-bg);
}

.clickable-feature.active .feature-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.feature-details p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.4;
}






.target-container {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(7, 8, 11, 0.95);
    border: 2px solid var(--accent-pink);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    z-index: 2000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
color: white;
}


.target-container.active-game {
    bottom: 0;
}

.targets-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    height: 60px;
    align-items: center;
}

.target-slot {
    width: 50px;
    height: 50px;
    position: relative;
}

.target-hit {
    font-size: 2.5rem;
    cursor: pointer;
    user-select: none;
    animation: targetPop 0.8s ease-in-out forwards; /* Schnelles Erscheinen/Verschwinden */
}

@keyframes targetPop {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    20% { transform: scale(1.2) rotate(0deg); opacity: 1; }
    80% { transform: scale(1) rotate(0deg); opacity: 1; }
    100% { transform: scale(0) rotate(20deg); opacity: 0; }
}

.promo-code {
    color: var(--accent-yellow);
    font-weight: 900;
    font-size: 1.5rem;
    display: block;
    margin-top: 10px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


.main-footer {
    background: var(--dark-bg);
    color: white;
    padding: 80px 10% 20px;
    border-top: 2px solid var(--accent-pink);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-grid h4 {
    color: var(--accent-yellow);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-bottom a { color: white; text-decoration: none; margin: 0 10px; }


.group-discount-banner {
    max-width: 600px;
    margin: 0 auto 40px auto;
    background: linear-gradient(135deg, rgba(255, 234, 0, 0.1) 0%, rgba(255, 0, 234, 0.05) 100%);
    border: 2px dashed var(--accent-yellow);
    padding: 15px 25px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.discount-badge {
    background: var(--accent-yellow);
    color: var(--dark-bg);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.group-discount-banner p {
    margin: 0;
    font-size: 1.05rem;
    color: #f8fafc; /* Falls im dunklen Bereich, sonst standard Dunkel */
}

/* Anpassung f r hellen Hintergrund in der Sektion */
.pricing-section .group-discount-banner p {
    color: var(--dark-bg);
}

/* --- ONLINE-PREIS SPEZIFISCHE STILE --- */
.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.online-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Label-Hervorhebung f r das pinke Empfehlungs-Paket */
.online-tag.highlighted {
    background: rgba(255, 0, 234, 0.1);
    color: var(--accent-pink);
}

#booking {
    min-height: auto !important; 
    height: auto !important;     
    overflow: hidden !important; /* FIX: Schlie t gefloatete Elemente sauber ein (Clearfix) */
    background-color: var(--light-blue);
    display: block;
    clear: both; /* Verhindert, dass vorherige Sektionen reinst ren */
padding-bottom:50px;
}

/* FIX: Sorgt daf r, dass der Container im Widget die volle Breite nutzen darf */
#booking .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; 
}

/* FIX: Zwingt das Buchungs-Widget, nicht  ber den Bildschirmrand hinausragende Breiten zu sprengen */
.step-dates {
    width: 100%;
    max-width: 1050px;
    margin:0 auto 0 auto;
}

.clickable-mode {
    cursor: pointer;
    overflow: hidden;
}

.mode-more {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    transition: all 0.3s ease;
}

.mode-card.active .mode-more {
    max-height: 220px;
    opacity: 1;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.mode-more h4 {
    color: var(--accent-pink);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mode-more p {
    margin-bottom: 8px;
}


/* --- DESIGN 1: GAME MODES SECTION --- */
.game-modes-section {
    padding: 100px 10%;
    background-color: #f0f4f8;
    text-align: center;
}
.modes-header { margin-bottom: 60px; }
.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}
.mode-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    position: relative;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px var(--dark-bg);
    border-color: var(--dark-bg);
}
.mode-card.premium-mode {
    border-color: var(--accent-pink);
}
.mode-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-pink);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}
.mode-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.mode-card h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    font-weight: 900;
    margin-bottom: 12px;
}
.mode-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.mode-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

/* --- DESIGN 2: TIMELINE SECTION --- */
.timeline-section {
    padding: 100px 10%;
    background-color: var(--dark-bg);
    color: white;
}
.timeline-header { text-align: center; margin-bottom: 60px; }
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.timeline-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}
.step-number {
    background: var(--accent-pink);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(255, 0, 234, 0.6);
    flex-shrink: 0;
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-radius: 20px;
    width: 100%;
    transition: all 0.3s ease;
}
.step-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-yellow);
    transform: translateX(5px);
}

.step-content h3 {
    color: var(--accent-yellow);
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 1.25rem;
}
.step-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}


.faq-section {
    padding: 100px 10%;
    background-color: var(--light-blue);
}
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    font-weight: 800;
    margin: 0;
}
.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-pink);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.faq-answer p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 30px 22px 30px; /* Padding nach innen verlagert f r fl ssiges Aufklappen */
    margin: 0;
}

/* Zusammengefasster aktiver Zustand ohne  berschneidungen */
.faq-item.active {
    border-color: var(--dark-bg);
    box-shadow: 6px 6px 0px var(--dark-bg);
}
.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

/* --- DESIGN: ADULTS SECTION --- */
.adults-section {
    padding: 100px 10%;
    background-color: var(--dark-bg); /* Dunkel gehalten f r die Neon-Cyberpunk-Stimmung */
    color: white;
    overflow: hidden;
}

.adults-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.adults-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.reason-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-pink);
    background: rgba(255, 255, 255, 0.05);
}

.reason-emoji {
    font-size: 2rem;
    line-height: 1;
}

.reason-item h4 {
    font-size: 1.15rem;
    color: var(--accent-pink);
    font-weight: 800;
    margin-bottom: 4px;
}

.reason-item p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.adults-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--accent-pink);
    box-shadow: 0 0 30px rgba(255, 0, 234, 0.2);
}

.adults-image-box img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    display: block;
}

.adults-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 11, 0.8), transparent);
    pointer-events: none;
}


/* --- DESIGN: KIDS SECTION --- */
.kids-section {
    padding: 100px 10%;
    background-color: white; /* Heller, freundlicher Kontrast zur Erwachsenen-Sektion */
    color: var(--dark-bg);
    overflow: hidden;
}

.kids-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.kids-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-item-kids {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.reason-item-kids:hover {
    transform: translateX(-10px); /* Bewegt sich nach links, weil der Text rechts steht */
    border-color: var(--accent-pink);
    box-shadow: 6px 6px 0px var(--dark-bg);
}

.reason-item-kids h4 {
    font-size: 1.15rem;
    color: var(--dark-bg);
    font-weight: 800;
    margin-bottom: 4px;
}

.reason-item-kids p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.kids-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--dark-bg);
    box-shadow: 10px 10px 0px var(--dark-bg);
}

.kids-image-box img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    display: block;
}

.kids-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}




.bookingtool .ui-datepicker-prev2, .bookingtool .ui-datepicker-next2 {
	cursor: pointer;
}

.bookingtool .ui-datepicker-prev2 img{
	margin-top: -5px;
	height:30px;
	margin-right:10px;
}
.bookingtool .ui-datepicker-next2 img{
	margin-top: -5px;
	height:30px;
	margin-left:5px;
}
	
.bookingtool .prev-day{
	width:120px;
}
.bookingtool .next-day {
	width:120px;
}	

.bookingtool .calender3{
	font-size:20px;
	width:400px;
	margin: 0 auto 50px auto;
}

.bookingtool .ui-datepicker-header {

	background:none;

}

.booking-dates{font-size:16px;}
.booking-dates .games-title{font-size:14px;}
.booking-dates .dates-game-list{width:140px;}


@media (max-width: 768px) {
            .nav-toggle { display: block; }
            .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 100%; background: var(--dark-bg); flex-direction: column; justify-content: center; transition: 0.4s; }
            .nav-links.active { right: 0; }
            .hero {justify-content: center; text-align: center; }
            .hero__content { 
		width: 90%; 
                margin-left: 0;
                margin-top: 100px;
		text-align: left;
		}
	    .hero__content .sub-headline{
                margin-top: 30vh;
		}
 .pricing-section { padding: 60px 5%; }
    .features-bar { padding: 40px 5%; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    .gallery-item.large, .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (min-width: 769px) {
    .target-container {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media (max-width: 800px) {
	.timeline-section {
	    padding: 100px 20px;
	}
	.step-content {
	    padding: 25px 10px;
	}
}

@media (max-width: 992px) {
        .btn-mobile {
            display: inline-block;
        }

    .adults-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .adults-image-box {
        order: -1; /* Bild wandert am Handy nach oben */
    }
    .adults-image-box img {
        min-height: 300px;
    }
    .reason-item:hover {
        transform: translateY(-5px) translateX(0); /* FIX: Verhindert diagonales Springen auf Smartphones */
    }

    .kids-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .kids-image-box {
        order: -1; /* Bild wandert am Handy nach oben */
    }
    .kids-image-box img {
        min-height: 300px;
    }
    .reason-item-kids:hover {
        transform: translateY(-5px) translateX(0); /* FIX:  berschreibt das translateX der Desktop-Version sauber ohne Ruckeln */
    }
}

@media only screen and (min-width: 1506px) and (max-width: 1660px) {
	.booking-dates{font-size:14px;}
}
@media only screen and (min-width: 1151px) and (max-width: 1505px) {
	.booking-dates .dates-game-list{width:140px;}
	.booking-dates{font-size:14px;}
}
@media only screen and (min-width: 1001px) and (max-width: 1150px) {
	.step-dates{width:900px;}	
	.booking-dates .dates-game-list{width:120px;}
	.booking-dates{font-size:13px;}
	.bookingtool .calender3{font-size:16px;width:300px;}
}
@media only screen and (min-width: 820px) and (max-width: 1000px) {
	.step-dates{width:800px;}	
	.booking-dates .dates-game-list{width:100px;}
	.booking-dates{font-size:12px;}
	.bookingtool .calender3{font-size:16px;width:300px;}
}
@media only screen and (max-width: 819px) {
	.game-dates-legend{display:none;}
	.games-available-pc{display:none;}
	.games-available-mobile{display:block;}
	
	.bookingtool .calender3{ display:none;}
	.step-dates{ width:100%;}

	.bookingtool .gameCalender{
		float:none;
		clear:both;
		width:100%;
		margin: 0 0 50px 0;
	}
	
	
	.bookingtool .ui-datepicker {
		width: 90%;
		max-width:380px;
		margin: 0 auto 0 auto;
	}
	.bookingtool .ui-datepicker td span, .bookingtool .ui-datepicker td a {
		font-size:1.2em;
	}
	.bookingtool .gameDates{
		float:none;
		clear:both;
		margin: 0 auto 0 auto;
		width:90%;
	}

	.booking-dates .dates-game-list{
		width:100%;
		float:none;
		clear:both;
		margin:0 0 40px 0;
	}
	.booking-dates .games-title {
		font-size:1.2em;
	}
	.booking-dates .games-player {
		font-size:1.2em;
	}
	.bookingtool .currentDate{
		padding-top:5px;
		font-size:0.7em;
	}
	.bookingtool .calender2{
		padding:50px 0 0 0;
	}
}


.info-section {
    background-color: #f0f4f8; /* Sehr leichtes, modernes Blau/Grau */
    padding: 60px 20px;        /* Abstand nach oben und unten zur nächsten Sektion */
    width: 100%;
    box-sizing: border-box;
}

/* Die weiße Box im Inneren */
.info-section .info-box {
    background-color: #ffffff; /* Weißer Hintergrund */
    max-width: 1100px;         /* Maximale Breite (passt sich gut an dein Layout an) */
    margin: 0 auto;            /* Zentriert die weiße Box auf der Seite */
    padding: 40px;             /* Innenabstand für den Text */
    border-radius: 12px;       /* Leicht abgerundete Ecken für einen modernen Look */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); /* Subtiler Schatten */
    
    /* Textausrichtung */
    text-align: left;          /* Text strikt linksbündig */
}

/* Optionale Stylings für die Typografie innerhalb der Box */
.info-box h2 {
    color: #1e293b;            /* Dunkles Anthrazit für guten Kontrast */
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.info-box p {
    color: #475569;            /* Angenehmes Lesegrau */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;          /* Verhindert unschönen Abstand beim letzten Element */
}