/* =============================================
   RASSELBANDE E.V. – BUNTES KITA STYLESHEET 🌈
   ============================================= */

/* 1. DESIGN TOKENS */
:root {
    --red:           #FF4757;
    --orange:        #FF6B35;
    --yellow:        #FFD93D;
    --green:         #6BCB77;
    --blue:          #4D96FF;
    --purple:        #C77DFF;
    --pink:          #FF6B9D;

    --primary:       #FF6B35;
    --primary-dark:  #E85520;
    --primary-light: #FFF0EB;

    --accent:        #FFD93D;
    --accent-dark:   #F0BE00;
    --accent-light:  #FFFBE6;

    --text-dark:     #2D2926;
    --text-mid:      #5C4A3A;
    --text-light:    #8C7B6B;
    --bg-light:      #FDFAF6;
    --bg-fun:        #FFF8F0;
    --white:         #FFFFFF;

    --radius-sm:     16px;
    --radius-md:     28px;
    --radius-lg:     50px;

    --shadow-sm:     0 4px 16px rgba(0,0,0,0.07);
    --shadow-md:     0 10px 36px rgba(0,0,0,0.11);
    --shadow-lg:     0 24px 64px rgba(0,0,0,0.14);

    --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Regenbogen-Balken oben fixiert */
body::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg,
        var(--red) 0%,
        var(--orange) 17%,
        var(--yellow) 33%,
        var(--green) 50%,
        var(--blue) 67%,
        var(--purple) 83%,
        var(--pink) 100%
    );
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
}

h1, h2, h3, h4, h5 {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-dark);
    line-height: 1.2;
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; font-weight: 600; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* 3. UTILITY */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-label {
    display: inline-block;
    background: var(--accent-light);
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 2px dashed var(--accent);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 100%;
    margin-bottom: 50px;
    line-height: 1.8;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFF0EB, #FFFBE6);
    color: var(--orange);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 2px solid var(--yellow);
}

/* 4. BUTTONS */
.btn-main {
    display: inline-block;
    padding: 15px 36px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 5px 0 var(--primary-dark), var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Nunito', sans-serif;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    opacity: 0;
    transition: var(--transition);
    border-radius: 50px;
    z-index: -1;
}
.btn-main:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--primary-dark), var(--shadow-sm);
}
.btn-main:hover::after { opacity: 1; }

.btn-sub {
    display: inline-block;
    padding: 13px 34px;
    background: transparent;
    color: var(--orange) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2.5px solid var(--orange);
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
}
.btn-sub:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* 5. NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.navbar.scrolled {
    height: 68px;
    box-shadow: var(--shadow-md);
}

#nav-logo {
    height: 72px;
    width: auto;
    transition: var(--transition);
}
#nav-logo:hover { transform: scale(1.08) rotate(-3deg); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}
.nav-links a {
    padding: 8px 14px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-links li:nth-child(1) a:hover,
.nav-links li:nth-child(1) a.active { color: var(--red);    background: #FFF0F1; }
.nav-links li:nth-child(2) a:hover,
.nav-links li:nth-child(2) a.active { color: var(--orange); background: var(--primary-light); }
.nav-links li:nth-child(3) a:hover,
.nav-links li:nth-child(3) a.active { color: var(--green);  background: #F0FBF2; }
.nav-links li:nth-child(4) a:hover,
.nav-links li:nth-child(4) a.active { color: var(--blue);   background: #EEF5FF; }

.nav-btn {
    background: linear-gradient(135deg, var(--orange), var(--red)) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    box-shadow: 0 3px 0 var(--primary-dark) !important;
}
.nav-btn:hover {
    transform: translateY(2px) !important;
    box-shadow: 0 1px 0 var(--primary-dark) !important;
    background: linear-gradient(135deg, var(--red), var(--pink)) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 10px;
    transition: var(--transition);
}
.hamburger span:nth-child(1) { background: var(--red); }
.hamburger span:nth-child(2) { background: var(--green); }
.hamburger span:nth-child(3) { background: var(--blue); }

/* 6. HERO */
.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 160px 5% 100px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,71,87,0.07) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(77,150,255,0.07) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,217,61,0.05) 0%, transparent 60%),
        linear-gradient(160deg, #FFFBF5 0%, #FFF8F0 50%, #F5F0FF 100%);
    min-height: calc(100vh - 85px);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape { position: absolute; border-radius: 50%; }
.shape-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.12), transparent 70%);
    top: -150px; right: -100px;
    animation: floatShape 8s ease-in-out infinite alternate;
}
.shape-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(77,150,255,0.10), transparent 70%);
    bottom: -80px; left: 3%;
    animation: floatShape 10s ease-in-out infinite alternate-reverse;
}
.shape-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(107,203,119,0.10), transparent 70%);
    top: 25%; left: 28%;
    animation: floatShape 7s ease-in-out infinite alternate;
}

@keyframes floatShape {
    0%   { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 12px 0 20px;
    line-height: 1.15;
}

/* Highlight – Regenbogen-Verlaufstext */
.highlight {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: -4px;
    width: calc(100% + 8px);
    height: 10px;
    background: var(--yellow);
    z-index: -1;
    border-radius: 6px;
    opacity: 0.5;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-mid);
    background: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(0,0,0,0.04);
}

/* LOGO SHOWCASE */
.hero-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

.logo-showcase {
    position: relative;
    width: 460px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotierender Regenbogen-Ring */
.logo-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        var(--red)    0deg,
        var(--orange) 51deg,
        var(--yellow) 102deg,
        var(--green)  153deg,
        var(--blue)   204deg,
        var(--purple) 255deg,
        var(--pink)   306deg,
        var(--red)    360deg
    );
    animation: spinRainbow 10s linear infinite;
}

/* Weißer Abstandsring */
.logo-showcase::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: white;
    z-index: 1;
}

@keyframes spinRainbow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Logo-Karte */
.logo-card {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    padding: 28px;
}
.logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: gentleBob 4s ease-in-out infinite alternate;
}

@keyframes gentleBob {
    0%   { transform: translateY(0) scale(1); }
    100% { transform: translateY(-8px) scale(1.03); }
}

/* Bunte Deko-Blasen */
.deco-bubble {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: floatBubble 3s ease-in-out infinite alternate;
}
.deco-1 { top: 10px;    left: 20px;   background: #FFF0EB; animation-delay: 0s; }
.deco-2 { top: 20px;    right: 15px;  background: #FFFBE6; animation-delay: 0.8s; }
.deco-3 { bottom: 20px; left: 10px;   background: #EAFAF1; animation-delay: 1.4s; }
.deco-4 { bottom: 10px; right: 20px;  background: #EEF5FF; animation-delay: 0.4s; }

@keyframes floatBubble {
    0%   { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-10px) rotate(5deg); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 12px 18px;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
    animation: floatBadge 4s ease-in-out infinite alternate;
    border: 2px solid transparent;
    z-index: 4;
}
.badge-years {
    bottom: 10px; left: -40px;
    display: flex; flex-direction: column; align-items: center; line-height: 1.1;
    border-color: var(--yellow);
}
.badge-num  { font-size: 1.8rem; color: var(--orange); }
.badge-text { font-size: 0.75rem; color: var(--text-light); }
.badge-kids {
    top: 10px; right: -30px;
    font-size: 0.9rem; color: var(--blue);
    animation-delay: 1.5s;
    border-color: var(--blue);
}

@keyframes floatBadge {
    0%   { transform: translateY(0) rotate(-1deg); }
    100% { transform: translateY(-12px) rotate(1deg); }
}

/* 7. STATS BAND */
.stats-band {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    z-index: 10;
}

.stat-item {
    display: flex; align-items: center; gap: 14px;
    padding: 30px 40px; flex: 1; justify-content: center;
    transition: var(--transition);
}
.stat-item:hover { transform: translateY(-3px); }
.stat-item:nth-child(1) { background: linear-gradient(135deg, var(--pink),   var(--red)); }
.stat-item:nth-child(2) { background: linear-gradient(135deg, var(--orange), #FF8C42); }
.stat-item:nth-child(3) { background: linear-gradient(135deg, var(--green),  #52B788); }
.stat-item:nth-child(4) { background: linear-gradient(135deg, var(--blue),   #5B8FF9); }

.stat-icon { font-size: 2.4rem; }
.stat-item h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 2px; }
.stat-item p  { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 600; }

/* 8. SECTIONS */
section { padding: 110px 0; }

section.section-alt {
    background:
        radial-gradient(circle at 5% 50%,  rgba(255,107,53,0.04) 0%, transparent 50%),
        radial-gradient(circle at 95% 50%, rgba(77,150,255,0.04)  0%, transparent 50%),
        var(--bg-light);
}

/* 9. ABOUT GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* 9b. VEREINSLEBEN */
.vereins-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: stretch;
    margin-bottom: 48px;
}

.vereins-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.vereins-subhead {
    font-weight: 700;
    color: var(--text-dark) !important;
    font-size: 1rem !important;
}

.vereins-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vereins-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.97rem;
    color: var(--text-light);
    line-height: 1.7;
}
.vereins-bullet {
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Facts panel */
.vereins-facts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}
.vereins-fact {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--fc, var(--orange));
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.fact-icon { font-size: 1.5rem; }
.fact-num {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--fc, var(--orange));
    line-height: 1.1;
}
.fact-label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vereins-blockquote {
    border-left: 5px solid var(--orange);
    margin: 0;
    padding: 24px 36px;
    background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(255,217,61,0.06));
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.8;
}

.about-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    animation-delay: var(--delay, 0s);
    position: relative;
    overflow: hidden;
}
/* Farbiger Top-Streifen */
.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
}
.about-card:nth-child(1)::before { background: var(--blue); }
.about-card:nth-child(2)::before { background: var(--green); }
.about-card:nth-child(3)::before { background: var(--yellow); }
.about-card:nth-child(4)::before { background: var(--pink); }
.about-card:nth-child(5)::before { background: var(--orange); }
.about-card:nth-child(6)::before { background: var(--purple); }

.about-card:hover { transform: translateY(-8px) rotate(0.4deg); box-shadow: var(--shadow-md); }
.about-card:nth-child(1):hover { border-color: rgba(77,150,255,0.2); }
.about-card:nth-child(2):hover { border-color: rgba(107,203,119,0.2); }
.about-card:nth-child(3):hover { border-color: rgba(255,217,61,0.3); }
.about-card:nth-child(4):hover { border-color: rgba(255,107,157,0.2); }
.about-card:nth-child(5):hover { border-color: rgba(255,107,53,0.2); }
.about-card:nth-child(6):hover { border-color: rgba(199,125,255,0.2); }

.card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
    background: #F0F4FF; /* Fallback */
    flex-shrink: 0;
}

.about-card h4 { margin-bottom: 8px; color: var(--text-dark); }
.about-card p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-list li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}
.card-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-light);
    opacity: 0.5;
}

/* 10. TIMELINE */
.timeline {
    display: flex; flex-direction: column; gap: 16px;
    position: relative; padding-left: 44px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom,
        var(--blue),
        var(--red),
        var(--yellow),
        var(--purple),
        var(--green),
        var(--orange)
    );
    border-radius: 10px;
    opacity: 0.6;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.timeline-dot {
    position: absolute; left: -36px;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    flex-shrink: 0; z-index: 1;
}

.timeline-time {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--text-mid); min-width: 56px;
}

.timeline-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    flex: 1;
    transition: var(--transition);
}
.timeline-card:hover { transform: translateX(6px); }

/* Individuelle Hover-Farben je Zeile */
.timeline-item:nth-child(1) .timeline-card:hover { border-color: rgba(77,150,255,0.35);  box-shadow: 0 8px 24px rgba(77,150,255,0.12); }
.timeline-item:nth-child(2) .timeline-card:hover { border-color: rgba(255,71,87,0.35);   box-shadow: 0 8px 24px rgba(255,71,87,0.12); }
.timeline-item:nth-child(3) .timeline-card:hover { border-color: rgba(255,217,61,0.45);  box-shadow: 0 8px 24px rgba(255,217,61,0.15); }
.timeline-item:nth-child(4) .timeline-card:hover { border-color: rgba(199,125,255,0.35); box-shadow: 0 8px 24px rgba(199,125,255,0.12); }
.timeline-item:nth-child(5) .timeline-card:hover { border-color: rgba(107,203,119,0.35); box-shadow: 0 8px 24px rgba(107,203,119,0.12); }
.timeline-item:nth-child(6) .timeline-card:hover { border-color: rgba(255,107,53,0.35);  box-shadow: 0 8px 24px rgba(255,107,53,0.12); }

/* Highlight-Zeile (09:15) – KEIN .highlight da Klasse mit Hero-Span kollidiert */
.timeline-item.timeline-highlight .timeline-card {
    border-left: 5px solid var(--yellow);
    background: linear-gradient(to right, #FFFBE6 0%, var(--white) 60%);
}
/* Text explizit zurücksetzen – wichtig wegen .highlight Verlaufstext im Hero */
.timeline-item.timeline-highlight .timeline-card h4 {
    color: var(--text-dark);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--text-dark);
    background-clip: unset;
}
.timeline-item.timeline-highlight .timeline-card p {
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
}

.tl-icon { font-size: 2.2rem; flex-shrink: 0; }
.timeline-card h4 { margin-bottom: 4px; color: var(--text-dark); }
.timeline-card p  { color: var(--text-light); font-size: 0.9rem; }

/* 11. VERMIETUNG */
.rental-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 820px;
}

.rental-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
/* Farbiger Top-Streifen */
.rental-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
}
.rental-card:nth-child(1)::after      { background: linear-gradient(90deg, var(--blue), var(--green)); }
.rental-card.price-highlight::after   { background: linear-gradient(90deg, var(--orange), var(--red), var(--pink)); }

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

.rental-card.price-highlight {
    background: linear-gradient(160deg, #FFF8F0, var(--white));
    border: 2px solid transparent;
}

.rental-icon { font-size: 2.8rem; margin-bottom: 16px; }
.rental-card h4 { font-size: 1.2rem; margin-bottom: 14px; color: var(--text-dark); }
.rental-card p  { color: var(--text-light); margin-bottom: 10px; }
.rental-card strong { color: var(--text-dark); }

.rental-features {
    list-style: none; margin-top: 16px;
    display: flex; flex-direction: column; gap: 10px;
}
.rental-features li { font-size: 0.95rem; color: var(--text-mid); }

.price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
    border-bottom: 2px dashed rgba(0,0,0,0.06);
    font-size: 1rem;
}
.price-row:last-of-type { border-bottom: none; }
.price {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--orange), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Fredoka', sans-serif;
}

/* 12. JOBS */
.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

.job-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 40px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--green);
}

.job-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.job-icon-wrap {
    font-size: 2.8rem;
    background: #EAFAF1;
    border-radius: var(--radius-sm);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-badge {
    display: inline-block;
    background: #EAFAF1;
    color: #27ae60;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.job-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.job-desc {
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.7;
}

.job-card h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 20px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-list {
    list-style: none;
    padding: 0;
    margin-bottom: 8px;
}

.job-list li {
    padding: 5px 0 5px 22px;
    position: relative;
    color: var(--text-mid);
    font-size: 0.95rem;
}

.job-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.job-apply-btn {
    display: inline-block;
    margin-top: 28px;
}

.jobs-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.jobs-note a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
}

.jobs-note a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .job-card { padding: 24px 20px; }
    .job-card-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* 13. BEWERBUNGSMODAL */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45,41,38,0.55);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s cubic-bezier(0.4,0,0.2,1);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.modal-close:hover { background: #f0ede9; color: var(--text-dark); }

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.modal-header h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0 0 2px;
}

.modal-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 2px solid #e8e2da;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green);
    background: var(--white);
}

.upload-group {
    margin-bottom: 14px;
}

.upload-label {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px dashed #d5cfc7;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: var(--bg-light);
    flex-wrap: wrap;
}

.upload-label:hover { border-color: var(--green); background: #f0faf2; }

.upload-label input[type="file"] { display: none; }

.upload-icon { font-size: 1.5rem; flex-shrink: 0; }

.upload-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.upload-hint {
    color: var(--text-light);
    font-size: 0.8rem;
    flex-grow: 1;
}

.upload-filename {
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    width: 100%;
    padding-left: 38px;
}

.form-privacy {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 20px 0 24px;
    line-height: 1.5;
}

.form-privacy a { color: var(--orange); text-decoration: none; }
.form-privacy a:hover { text-decoration: underline; }

.apply-submit-btn { width: 100%; text-align: center; justify-content: center; }

.attach-reminder {
    display: flex;
    gap: 14px;
    background: #FFF8E7;
    border: 2px solid var(--yellow);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin: 20px 0;
}
.attach-reminder-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.attach-reminder strong { display: block; color: var(--text-dark); margin-bottom: 8px; font-size: 0.95rem; }
.attach-reminder ul {
    list-style: none;
    padding: 0; margin: 0 0 10px;
    display: flex; flex-direction: column; gap: 5px;
}
.attach-reminder ul li { font-size: 0.88rem; color: var(--text-dark); }
.attach-reminder ul li em { color: var(--text-light); }
.attach-reminder p { font-size: 0.85rem; color: var(--text-dark); margin: 0; line-height: 1.5; }

.attach-success-note {
    background: #FFF8E7;
    border: 2px solid var(--yellow);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    margin-bottom: 24px !important;
    line-height: 1.5;
}

.apply-success {
    text-align: center;
    padding: 32px 0 8px;
}

.success-icon { font-size: 3.5rem; display: block; margin-bottom: 16px; }

.apply-success h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.apply-success p {
    color: var(--text-light);
    margin-bottom: 28px;
}

@media (max-width: 600px) {
    .modal-box { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
}

/* 14. KONTAKT */
.section-kontakt {
    background:
        radial-gradient(circle at 0%   100%, rgba(107,203,119,0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%,   rgba(77,150,255,0.08)  0%, transparent 50%),
        var(--bg-fun);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: stretch;
}

/* Kontaktkarte – saubere Version ohne border-image */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    box-shadow:
        0 0 0 3px var(--orange),
        var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    position: relative;
}

.contact-items { display: flex; flex-direction: column; gap: 22px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
    display: block;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
/* Gut lesbare Textfarbe */
.contact-item p,
.contact-item a {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-item a:hover { color: var(--orange); }

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

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 380px;
    border: 3px solid var(--white);
    outline: 2px solid rgba(255,107,53,0.15);
}
.map-container iframe { height: 100%; min-height: 380px; }

/* 13. FOOTER */
.main-footer {
    background: linear-gradient(160deg, #2D2926 0%, #1A1614 100%);
    color: rgba(255,255,255,0.75);
    position: relative;
    overflow: hidden;
}

/* Regenbogenstreifen oben */
.main-footer::before {
    content: '';
    display: block;
    height: 6px;
    background: linear-gradient(90deg,
        var(--red)    0%,
        var(--orange) 17%,
        var(--yellow) 33%,
        var(--green)  50%,
        var(--blue)   67%,
        var(--purple) 83%,
        var(--pink)   100%
    );
}

/* Dekorativer Kreis */
.main-footer::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.06), transparent 70%);
    bottom: -150px; right: -100px;
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 60px 7% 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-brand .footer-logo {
    height: 80px; margin-bottom: 16px;
    opacity: 0.95;
    transition: var(--transition);
}
.footer-brand .footer-logo:hover {
    opacity: 1;
    transform: scale(1.05) rotate(-2deg);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col h5 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem; margin-bottom: 6px;
}
.footer-links-col:nth-child(2) h5 { color: var(--yellow); }
.footer-links-col:nth-child(3) h5 { color: var(--green); }
.footer-links-col:nth-child(4) h5 { color: var(--blue); }

.footer-links-col a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links-col:nth-child(2) a:hover { color: var(--yellow); }
.footer-links-col:nth-child(3) a:hover { color: var(--green); }
.footer-links-col:nth-child(4) a:hover { color: var(--blue); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 7%; text-align: center;
    font-size: 0.85rem; color: rgba(255,255,255,0.3);
}

/* 14. ANIMATIONEN */
.fade-in, .fade-in-up, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in      { transform: translateY(0); }
.fade-in-up   { transform: translateY(32px); }
.fade-in-left { transform: translateX(-32px); }
.fade-in-right{ transform: translateX(32px); }

.fade-in.is-visible,
.fade-in-up.is-visible,
.fade-in-left.is-visible,
.fade-in-right.is-visible {
    opacity: 1;
    transform: translate(0);
}

/* 15. RESPONSIVE */
@media (max-width: 1024px) {
    .hero { padding: 60px 5% 80px; gap: 40px; }
    .logo-showcase { width: 340px; height: 340px; }
    .logo-card { width: 250px; height: 250px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar { 
        padding: 0 5%;
        height: 64px;
        transition: none;
        background: var(--white);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .navbar.scrolled { height: 64px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
    #nav-logo { height: 48px; }

    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0; right: 0; bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        z-index: 999;
        padding: 24px 20px;
        overflow-y: auto;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        font-size: 1.1rem; padding: 12px 28px;
        width: 100%; text-align: center;
        border-radius: var(--radius-sm);
    }

    .hamburger { display: flex; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .hero {
        flex-direction: column; text-align: center;
        padding: 100px 5% 60px; min-height: auto;
    }
    .hero-content { max-width: 100%; }
    .hero-btns, .hero-trust { justify-content: center; }

    .logo-showcase { width: 260px; height: 260px; }
    .logo-card { width: 190px; height: 190px; }
    .deco-bubble { width: 40px; height: 40px; font-size: 1.1rem; }
    .floating-badge { display: none; }

    .stats-band { flex-wrap: wrap; }
    .stat-item { flex: 1 1 50%; }

    section { padding: 70px 0; }
    .section-intro { margin-bottom: 36px; }

    .about-grid { grid-template-columns: 1fr; }
    .vereins-layout { grid-template-columns: 1fr; }
    .vereins-facts { flex-direction: row; flex-wrap: wrap; }
    .vereins-fact { flex: 1 1 calc(50% - 8px); }
    .timeline { padding-left: 32px; }
    .rental-grid { grid-template-columns: 1fr; }
    .jobs-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-card {
        box-shadow: 0 0 0 3px var(--yellow), var(--shadow-md);
    }
    .map-container { min-height: 280px; }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 5% 36px; }
}

@media (max-width: 480px) {
    h2 { font-size: 1.8rem; }
    .hero-content h1 { font-size: 2rem; }
    .stat-item { flex: 1 1 100%; }
    .footer-inner { grid-template-columns: 1fr; }
}