:root {
    --primary-color: #DA8A29;
    /* warm orange matching the hero image */
    --secondary-color: #F4B443;
    /* golden accent */
    --accent-color: #004D5B;
    /* deep teal for text and highlights */
    --light-color: #F6E8D2;
    /* warm beige background */
    --dark-color: #2E3B3E;
    /* dark slate for headings */
    --white: #FFFFFF;
    --gray-light: #F9F5EE;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered animation delay for child elements */
.stagger-children>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children>*:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-children>*:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-children>*:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger-children>*:nth-child(6) {
    transition-delay: 0.5s;
}

.stagger-children>*:nth-child(7) {
    transition-delay: 0.6s;
}

.stagger-children>*:nth-child(8) {
    transition-delay: 0.7s;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header - Design 3: Minimal mit Akzentlinie */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 3px solid var(--primary-color);
    z-index: 999;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-area .logo-icon {
    width: 44px;
    height: 44px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

nav ul {
    display: flex;
    gap: 6px;
    margin-left: auto;
    margin-right: 30px;
}

nav li a {
    display: block;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all var(--transition);
    color: var(--dark-color);
}

nav li a i {
    margin-right: 8px;
    color: var(--primary-color);
}

nav li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition);
}

.cta-header:hover {
    background: var(--primary-color);
}

.cta-header.disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--accent-color);
    border-radius: 2px;
    transform-origin: center;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

/* Animation zum "X" */
.hamburger.active {
    justify-content: center;
    /* verhindert "space-between" Abstand */
}

.hamburger.active span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    /* exakt mittig */
}

.hamburger.active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
}

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

    .cta-header {
        display: none;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 5%;
        left: 5%;
        background: var(--white);
        box-shadow: 0 4px 20px var(--shadow-color);
        border-radius: 12px;
        border-top: 3px solid var(--primary-color);
        padding: 12px;
        gap: 4px;
    }

    nav ul.active {
        display: flex;
    }

    nav li a {
        padding: 14px 16px;
        border-radius: 8px;
    }

    nav li a:hover {
        background: var(--light-color);
    }
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    /* space for the fixed header */
    overflow: hidden;
    color: var(--dark-color);
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* subtle white overlay to ensure text readability */
#hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 80%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: auto;
}

.hero-text {
    flex: 1 1 55%;
    padding: 20px;
}

.hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.hero-description strong {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons_info {
    font-style: italic;
    font-size: 14px;
}

.btn {
    display: inline-block;
    width: 175px;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.primary-btn {
    background: var(--primary-color);
    color: var(--white);
}

.primary-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-image img {
    width: auto;
    max-height: 500px;
}

/* Trailer & Info */
.light-section {
    background-color: var(--gray-light);
}

#trailer {
    padding: 80px 0;
}

#trailer h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--accent-color);
}

.trailer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* align-items: flex-start; */
}

.video-wrapper {
    flex: 1 1 55%;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* YouTube Consent Overlay (DSGVO) */
.youtube-consent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(0, 77, 91, 0.95) 0%, rgba(46, 59, 62, 0.98) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Decorative Background Pattern */
.youtube-consent::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(218, 138, 41, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(244, 180, 67, 0.1) 0%, transparent 40%);
    animation: subtleFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-2%, 2%);
    }
}

.consent-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
    max-width: 480px;
}

/* Big Play Button Circle */
.consent-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 32px rgba(218, 138, 41, 0.4),
        0 0 0 8px rgba(218, 138, 41, 0.15),
        0 0 0 16px rgba(218, 138, 41, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.consent-icon:hover {
    transform: scale(1.08);
    box-shadow:
        0 12px 40px rgba(218, 138, 41, 0.5),
        0 0 0 10px rgba(218, 138, 41, 0.2),
        0 0 0 20px rgba(218, 138, 41, 0.1);
}

.consent-icon i {
    font-size: 2.5rem;
    color: #fff;
    margin-left: 6px;
}

/* Pulsing ring animation */
.consent-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.youtube-consent h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.youtube-consent p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.consent-privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 24px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.consent-privacy-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.consent-privacy-link i {
    font-size: 0.75rem;
}

.consent-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.consent-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.consent-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow:
        0 6px 20px rgba(218, 138, 41, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.consent-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 30px rgba(218, 138, 41, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.consent-btn.primary:active {
    transform: translateY(-1px) scale(0.98);
}

.consent-btn i {
    font-size: 1rem;
}

.consent-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.consent-remember:hover {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.08);
}

.consent-remember input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
    border-radius: 4px;
}

/* YouTube Player Container */
.youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Responsive für Consent Overlay */
@media (max-width: 600px) {
    .consent-overlay {
        padding: 24px 20px;
    }

    .consent-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .consent-icon i {
        font-size: 2rem;
        margin-left: 4px;
    }

    .youtube-consent h3 {
        font-size: 1.3rem;
    }

    .youtube-consent p {
        font-size: 0.85rem;
    }

    .consent-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .consent-privacy-link {
        margin-bottom: 18px;
    }
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 75px auto;
    width: 100%;
    max-width: 1200px;
    /* optional: begrenzt die Gesamtbreite */
    padding: 0 20px;
    /* links/rechts Abstand */
}

.info-card {
    display: flex;
    flex: 1 1 0;
    gap: 12px;
    padding: 18px;
    align-items: center;
    box-shadow: 0 2px 6px var(--shadow-color);
    background: var(--white);
    border-radius: 12px;
    min-width: 0;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.info-card h3 {
    font-size: 1rem;
    text-align: left;
    color: var(--accent-color);
}

.info-card p {
    font-size: 0.9rem;
    text-align: left;
    color: var(--dark-color);
}

/* Gallery & Testimonials */
#gallery {
    padding: 80px 0;
}

#gallery h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 0;
    padding-bottom: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-color);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.gallery-lightbox img {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .gallery-item {
        padding-bottom: 100%;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Program Section */
#das-erwartet-dich {
    padding: 80px 0;
}

#das-erwartet-dich h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
    color: var(--dark-color);
}

/* .program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
} */

.program-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.program-card {
    flex: 0 1 340px;
    max-width: 380px;
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: transform var(--transition);
}

.program-card:hover {
    transform: translateY(-4px);
}

.program-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.program-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.program-card p {
    font-size: 0.9rem;
    color: var(--dark-color);
}

/* "Das erwartet dich" - Hero + Grid Layout */
.expect-hero {
    text-align: center;
    max-width: 700px;
    margin: 25px auto 50px;
    padding: 30px;
    background: var(--gray-light);
    border-radius: 16px;
}

.expect-hero h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.expect-hero p {
    font-size: 1.05rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.expect-feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.expect-feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: all 0.3s ease;
}

.expect-feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.expect-feature-tag i {
    color: var(--primary-color);
    font-size: 1rem;
}

.expect-stories-title {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.expect-stories-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.expect-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.expect-story-tile {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 3px 12px var(--shadow-color);
    transition: all 0.3s ease;
}

.expect-story-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.expect-story-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(218, 138, 41, 0.3);
}

.expect-story-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.expect-story-content h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.expect-story-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .expect-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .expect-hero-text h3 {
        font-size: 1.4rem;
    }

    .expect-hero-text p {
        font-size: 1rem;
    }

    .expect-stories-grid {
        grid-template-columns: 1fr;
    }

    .expect-story-tile {
        padding: 18px;
    }

    .expect-story-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .expect-story-icon i {
        font-size: 1.2rem;
    }
}

/* Info Section */
#infos-fuer-eltern {
    padding: 80px 0;
}

#infos-fuer-eltern h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-block {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.info-block h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.info-block ul {
    list-style: none;
    padding-left: 0;
}

.info-block li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 18px;
}

.info-block li::before {
    content: "\2022";
    /* bullet */
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.map-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.map-btn i {
    font-size: 1rem;
}

/* Google Button */
.map-btn.google {
    background: #fff;
    border: 1px solid #dadce0;
    color: #202124;
}

.map-btn.google:hover {
    background: #f1f3f4;
}

/* Apple Button */
.map-btn.apple {
    background: #000;
    color: #fff;
}

.map-btn.apple:hover {
    background: #333;
}

/* Website Button */
.map-btn.website {
    background: var(--accent-color);
    color: #fff;
}

.map-btn.website:hover {
    background: #006d7a;
}

/* ============================================
   PARENT INFO SECTION - TIMELINE + SIDEBAR
   ============================================ */

/* Main Layout */
.parent-info-layout-v3 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

/* Timeline Card */
.timeline-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-light);
}

.timeline-card-header i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.timeline-card-header h3 {
    margin: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(218, 138, 41, 0.4);
}

.timeline-content {
    flex: 1;
    background: var(--gray-light);
    padding: 16px 20px;
    border-radius: 12px;
}

.timeline-label {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-date {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 4px 0 2px;
}

.timeline-time {
    font-size: 0.9rem;
    color: var(--dark-color);
}

/* Café Hint in Timeline */
.timeline-cafe-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(218, 138, 41, 0.12), rgba(244, 180, 67, 0.12));
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.timeline-cafe-hint i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.timeline-cafe-hint span {
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.timeline-cafe-hint strong {
    color: var(--primary-color);
}

/* Location Sidebar */
.location-sidebar {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location-sidebar-image {
    position: relative;
    height: 160px;
}

.location-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-sidebar-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 8px;
    border-radius: 4px;
}

.location-sidebar-credit a {
    color: inherit;
    text-decoration: none;
}

.location-sidebar-credit a:hover {
    text-decoration: underline;
}

.location-sidebar-body {
    padding: 20px;
}

.location-sidebar-body h4 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: var(--accent-color);
}

.location-sidebar-body h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-sidebar-body h4 a:hover {
    color: var(--primary-color);
}

.location-sidebar-body p {
    font-size: 0.85rem;
    color: var(--dark-color);
    line-height: 1.55;
    margin: 0 0 14px;
}

.location-sidebar-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.location-sidebar-address i {
    color: var(--primary-color);
}

.location-sidebar-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-sidebar-buttons .map-btn.website {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
}

.location-sidebar-buttons .map-btn.google,
.location-sidebar-buttons .map-btn.apple {
    flex: 1;
    justify-content: center;
    text-align: center;
}

@media (max-width: 900px) {
    .parent-info-layout-v3 {
        grid-template-columns: 1fr;
    }

    .location-sidebar-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .location-sidebar-buttons .map-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Schedule Section - Clean & Simple */
.schedule-section {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-card-header,
.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-color);
}

.section-card-header i,
.location-header i {
    color: var(--primary-color);
}

.schedule-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-light);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.schedule-card:hover {
    transform: translateX(4px);
}

.schedule-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-date {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.schedule-time {
    font-size: 0.95rem;
    color: var(--dark-color);
}

.schedule-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(218, 138, 41, 0.15), rgba(244, 180, 67, 0.15));
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--dark-color);
}

.schedule-detail i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.schedule-detail strong {
    color: var(--primary-color);
}

/* Café Hint */
.cafe-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(218, 138, 41, 0.12), rgba(244, 180, 67, 0.12));
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.cafe-hint i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.cafe-hint span {
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.cafe-hint strong {
    color: var(--primary-color);
}

/* Location Section */
.location-section {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.location-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-card.expanded {
    gap: 0;
}

.location-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.location-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.location-image-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 8px;
    border-radius: 4px;
}

.location-image-credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.location-image-credit a:hover {
    text-decoration: underline;
}

.location-content h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 0 0 10px;
}

.location-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-content h4 a:hover {
    color: var(--primary-color);
}

.location-content h4 a i {
    font-size: 0.8rem;
    margin-left: 6px;
    opacity: 0.6;
}

.location-description {
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0 0 16px;
}

.location-details-row {
    margin-bottom: 12px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-name,
.location-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-name i,
.location-address i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 2px;
    width: 18px;
    text-align: center;
}

.location-name span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.location-address span {
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.5;
}

.location-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

/* Packlist Banner */
.packlist-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(218, 138, 41, 0.3);
}

.packlist-banner-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.packlist-banner-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.packlist-banner-content {
    flex: 1;
}

.packlist-banner-content h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 4px;
}

.packlist-banner-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.packlist-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.packlist-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.packlist-banner-btn i {
    transition: transform 0.2s ease;
}

.packlist-banner-btn:hover i {
    transform: translateX(4px);
}

/* Responsive: Banner stapeln auf kleinen Bildschirmen */
@media (max-width: 991px) {
    .parent-info-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .packlist-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

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

    .location-buttons {
        flex-direction: column;
    }

    .location-buttons .map-btn {
        justify-content: center;
    }
}

/* Footer */
footer {
    background: var(--accent-color);
    color: var(--light-color);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

footer h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-links li {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--light-color);
    transition: color var(--transition);
}

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

.social-icons a {
    font-size: 1.2rem;
    margin-right: 10px;
    color: var(--light-color);
    transition: color var(--transition);
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 20px;
    color: var(--light-color);
}

/* Responsive adjustments */

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-image {
        flex: 1 1 100%;
    }

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

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

    nav ul {
        gap: 16px;
    }

    .program-grid {
        grid-template-columns: repeat(2, auto);
    }
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .program-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

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

    .header-container {
        padding: 10px 5%;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    nav ul {
        display: none;
        /* hide nav links on very small screens, can be improved with a mobile menu */
    }

    .cta-header {
        display: none;
    }

    .program-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
}