
:root {
    /* Vorgaben Farben */
    --bg-pink: #f5b5d2;
    --bg-yellow: #fff7b2;
    --bg-blue: #a1daf8;
    --bg-white: #ffffff;

    /* sehr subtile Tints (gleiche Farben, nur transparenter) */
    --tint-pink: rgba(245, 181, 210, 0.45);
    --tint-pink-soft: rgba(245, 181, 210, 0.22);
    --tint-yellow: rgba(255, 247, 178, 0.50);
    --tint-yellow-soft: rgba(255, 247, 178, 0.22);
    --tint-blue: rgba(161, 218, 248, 0.45);
    --tint-blue-soft: rgba(161, 218, 248, 0.20);

    /* Buttons */
    --primary-color: #E6007E; /* Magenta */
    --btn-yellow: #FFED00;
    --btn-blue: #009EE3;
    --secondary-color: var(--btn-blue);

    --text-color: #1d1d1f;
    --text-light: #86868b;
    --bg-color: var(--bg-white);
    --bg-secondary: var(--bg-yellow);
    --border-radius: 12px;
    --container-width: 1200px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    /* wie julis.de: viel Weiß, Akzente in Sections */
    background: var(--bg-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(11,18,33,0.08);
    transition: transform 0.25s ease;
    will-change: transform;
}
.site-header.is-hidden {
    transform: translateY(-110%);
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; color: var(--text-color); }
.logo-text { gap: 10px; }
.logo-img { height: 58px; width: auto; display: block; }
.logo-sub { font-weight: 900; letter-spacing: -0.2px; }
.logo-icon-img { height: 60px; width: auto; }

.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-menu { display: flex; gap: 24px; }
.nav-menu a { font-weight: 500; font-size: 0.95rem; color: var(--text-color); }
.nav-menu a:hover { color: var(--primary-color); }

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.10);
    background: var(--bg-white);
    color: var(--text-color);
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.social-link:hover {
    transform: translateY(-1px);
    background: var(--bg-white);
    border-color: rgba(0,0,0,0.14);
    color: var(--primary-color);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.10);
    background: var(--bg-white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.nav-toggle:hover { background: var(--bg-white); }
.nav-toggle-bars {
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: transform 0.2s, background 0.2s;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: transform 0.2s, top 0.2s, opacity 0.2s;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-panel { display: flex; align-items: center; gap: 30px; }

.site-header.is-menu-open .nav-toggle-bars { background: transparent; }
.site-header.is-menu-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.site-header.is-menu-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.btn { display: inline-block; padding: 10px 20px; border-radius: 8px; font-weight: 600; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background-color: var(--primary-color); color: white; }
.btn-primary:hover { filter: brightness(0.92); }
.btn-ghost {
    background: transparent;
    color: var(--btn-blue);
    border: 2px solid var(--btn-blue);
}
.btn-ghost:hover { filter: brightness(0.92); }
.btn-secondary {
    background: var(--btn-yellow);
    color: var(--text-color);
}
.btn-secondary:hover { filter: brightness(0.96); }
.btn-white { box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

/* Hero */
.hero {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    /* fließender & weniger stark (weißer Grund, weiche Blobs) */
    background:
      radial-gradient(900px 520px at 12% 18%, var(--tint-pink) 0%, rgba(245, 181, 210, 0) 62%),
      radial-gradient(820px 520px at 82% 10%, var(--tint-blue) 0%, rgba(161, 218, 248, 0) 60%),
      radial-gradient(780px 520px at 55% 95%, var(--tint-yellow) 0%, rgba(255, 247, 178, 0) 58%),
      var(--bg-white);
}
.hero .container { position: relative; z-index: 1; }
.hero-logo {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 14px;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.10));
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-title { font-size: 3.5rem; line-height: 1.1; font-weight: 800; margin-bottom: 20px; color: var(--text-color); }
.hero-subtitle { font-size: 1.25rem; color: var(--text-light); margin-bottom: 40px; max-width: 500px; }
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-store { padding: 0; background: transparent; border: none; display: flex; align-items: center; height: 48px; }
.btn-store:hover { background: transparent; opacity: 0.8; transform: scale(1.02); }
.btn-store img { height: 48px; width: auto; display: block; }
.store-badge { height: 48px; width: auto; display: block; }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-sticker {
    width: min(420px, 100%);
    border-radius: 28px;
    padding: 26px 22px;
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.hero-sticker-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.hero-sticker-subtitle {
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.6;
}
.hero-screenshot-wrapper {
    max-width: 320px; /* Reduced width for better proportion */
    width: 100%;
}
.hero-screenshot-placeholder {
    width: 100%;
    aspect-ratio: 9/19.5;
    background: var(--bg-blue);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}
.hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 40px;
}

/* Device frame (used for hero + steps screenshots) */
.device-frame {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 14px;
    border-radius: 52px;
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow:
      0 18px 40px rgba(0,0,0,0.12),
      inset 0 0 0 1px rgba(0,0,0,0.04);
}
.device-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    border-radius: 0 0 18px 18px;
    background: var(--bg-white);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
    pointer-events: none;
}
.device-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.08);
}

/* Features */
.features-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(850px 520px at 15% 10%, var(--tint-yellow-soft) 0%, rgba(255, 247, 178, 0) 62%),
      radial-gradient(900px 540px at 95% 85%, var(--tint-blue-soft) 0%, rgba(161, 218, 248, 0) 60%),
      var(--bg-white);
}
.features-section .container { position: relative; z-index: 1; }
.features-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-heading { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.section-description { font-size: 1.1rem; color: var(--text-light); }
.features-grid-new { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-box { background: white; padding: 30px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: transform 0.2s; }
.feature-box:hover { transform: translateY(-5px); }
.feature-icon-new { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.icon-green { background-color: #e6f7e6; color: #28a745; }
.icon-blue { background-color: #e6f2ff; color: #007bff; }
.icon-purple { background-color: #f2e6ff; color: #6f42c1; }
.icon-red { background-color: #ffe6e6; color: #dc3545; }
.icon-yellow { background-color: #fff9e6; color: #ffc107; }
.icon-green-light { background-color: #e6fffa; color: #20c997; }
.icon-magenta { background-color: var(--bg-pink); color: var(--primary-color); }
.icon-cyan { background-color: var(--bg-blue); color: var(--secondary-color); }
.feature-title { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
.feature-description { color: var(--text-light); font-size: 0.95rem; }
.feature-link {
    display: inline-flex;
    margin-top: 14px;
    font-weight: 700;
    color: var(--primary-color);
}
.feature-link:hover { filter: brightness(0.92); }

/* Steps */
.steps-section { padding: 80px 0; background-color: var(--bg-white); }
.section-heading-center { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.section-subheading-center { text-align: center; font-size: 1.1rem; color: var(--text-light); max-width: 760px; margin: 0 auto 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.step-item { text-align: center; }
.step-phone { max-width: 320px; margin: 0 auto 18px; }
.step-screenshot { width: 100%; height: auto; display: block; }
.step-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--bg-white);
    color: var(--primary-color);
    margin-bottom: 10px;
}
.step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.step-description { color: var(--text-light); font-size: 0.95rem; max-width: 360px; margin: 0 auto; }

/* Blog */
.blog-page { padding: 80px 0 120px; background-color: var(--bg-color); }
.blog-page-list { padding: 0 0 120px; background: var(--bg-color); }
.blog-hero {
    padding: 80px 0 56px;
    background: var(--bg-blue);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.blog-content { padding: 40px 0 0; }
.blog-header { max-width: 980px; margin: 0 auto; }
.blog-header-top { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; }
.blog-header-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--bg-white);
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
.blog-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; color: var(--text-color); line-height: 1.15; }
.blog-intro { color: #444; font-size: 1.05rem; line-height: 1.75; }
.blog-intro p { margin-bottom: 0.9em; }

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-pink);
    color: var(--primary-color);
}

.blog-featured {
    max-width: 980px;
    margin: 0 auto 26px;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.10); }
.blog-featured .blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-featured-title { font-size: 1.65rem; font-weight: 900; margin-bottom: 10px; line-height: 1.2; }
.blog-featured-title a { color: var(--text-color); }
.blog-featured-title a:hover { color: var(--primary-color); }
.blog-featured-summary { color: #444; font-size: 1.02rem; line-height: 1.7; margin-bottom: 14px; max-width: 78ch; }
.blog-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--primary-color);
}

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 22px; }

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,0.10); }
.blog-card-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 10px; }
.blog-card-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; line-height: 1.25; }
.blog-card-title a { color: var(--text-color); }
.blog-card-title a:hover { color: var(--primary-color); }
.blog-card-summary { color: #444; font-size: 0.98rem; line-height: 1.6; margin-bottom: 14px; }
.blog-card-link { color: var(--primary-color); font-weight: 800; margin-top: auto; }
.blog-article { max-width: 900px; margin: 0 auto; }
.blog-article-header { margin-bottom: 22px; }
.blog-article-title { font-size: 2.6rem; font-weight: 900; line-height: 1.15; color: var(--text-color); margin-bottom: 10px; }
.blog-article-meta { color: var(--text-light); font-size: 0.95rem; }
.blog-article-content { font-size: 1.08rem; line-height: 1.8; color: #444; }
.blog-article-content h2 { font-size: 1.6rem; font-weight: 800; margin: 42px 0 14px; color: var(--text-color); }
.blog-article-content h3 { font-size: 1.25rem; font-weight: 750; margin: 30px 0 10px; color: var(--text-color); }
.blog-article-content p { margin-bottom: 1.1em; }
.blog-article-content ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1.1em; }
.blog-article-content li { margin-bottom: 0.45em; }
.blog-article-footer { margin-top: 34px; }
.blog-article-footer a { color: var(--primary-color); font-weight: 700; }

/* Blog CTA */
.blog-cta {
    margin: 34px 0;
    border-radius: 18px;
    padding: 22px;
    background: var(--bg-blue);
    border: 1px solid rgba(0,0,0,0.06);
}
.blog-cta-inner { max-width: 820px; margin: 0 auto; }
.blog-cta-title { font-size: 1.25rem; font-weight: 900; margin-bottom: 8px; color: var(--text-color); }
.blog-cta-text { color: #444; margin-bottom: 14px; }
.blog-cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* Privacy Section */
.privacy-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(900px 520px at 10% 0%, var(--tint-blue-soft) 0%, rgba(161, 218, 248, 0) 62%),
      radial-gradient(920px 520px at 90% 110%, var(--tint-pink-soft) 0%, rgba(245, 181, 210, 0) 60%),
      var(--bg-white);
}
.privacy-section .container { position: relative; z-index: 1; }
.privacy-shield-icon { font-size: 3rem; margin-bottom: 20px; display: block; color: #00C7BE; }
.privacy-heading { font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; }
.privacy-subheading { color: var(--text-light); max-width: 700px; margin: 0 auto 60px; font-size: 1.1rem; }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.privacy-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.privacy-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(0,0,0,0.10); }
.privacy-card-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; }
.icon-cyan { background: var(--bg-blue); color: var(--btn-blue); }
.privacy-card-title { font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
.privacy-card-text { color: var(--text-light); font-size: 0.95rem; }
.event-card { text-align: left; }
.event-card .privacy-card-icon { margin-left: 0; margin-right: 0; }
.event-link { display: inline-flex; margin-top: 10px; font-weight: 800; color: var(--primary-color); }
.event-link:hover { filter: brightness(0.92); }
.privacy-footer-text { max-width: 700px; margin: 0 auto; font-size: 1.1rem; color: var(--text-color); font-weight: 500; }

/* Final CTA */
.final-cta { max-width: var(--container-width); margin: 60px auto; border-radius: 24px; background-color: var(--bg-white); color: var(--text-color); padding: 80px 0; text-align: center; border: 1px solid rgba(0,0,0,0.08); }
.final-cta-content { padding: 0 40px; }
.final-cta-title { font-size: 2.5rem; margin-bottom: 20px; font-weight: 900; color: var(--text-color); }
.final-cta-subtitle { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.95; color: #444; }
.final-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.final-cta .btn-white { box-shadow: 0 10px 30px rgba(0,0,0,0.10); }
.btn-store-white { padding: 0; background: transparent; border: none; display: flex; align-items: center; height: 48px; }
.btn-store-white:hover { background: transparent; opacity: 0.8; transform: scale(1.02); }
.btn-store-white img { height: 48px; width: auto; display: block; border-radius: 8px; }

/* Instagram Widget */
.ig-widget {
    padding: 70px 0 80px;
    background:
      radial-gradient(820px 520px at 18% 10%, var(--tint-yellow-soft) 0%, rgba(255, 247, 178, 0) 62%),
      radial-gradient(860px 520px at 92% 80%, var(--tint-pink-soft) 0%, rgba(245, 181, 210, 0) 60%),
      var(--bg-white);
    border-top: 1px solid rgba(11,18,33,0.08);
}
.ig-widget .container { position: relative; z-index: 1; }
.ig-widget-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.ig-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 6px;
    color: var(--text-color);
}
.ig-subtitle {
    margin: 0;
    color: #444;
    opacity: 0.95;
    max-width: 60ch;
}
.ig-embed {
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--bg-white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}
.ig-embed iframe {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
    background: #fff;
}
.ig-fallback {
    padding: 12px 16px 16px;
    color: var(--text-light);
    font-size: 0.95rem;
}
.ig-fallback a { color: var(--primary-color); font-weight: 800; }

/* Kontakt CTA (WhatsApp) */
.contact-cta { margin: 18px 0 26px; }
.contact-cta-card{
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    background:
      radial-gradient(420px 260px at 10% 20%, rgba(255, 247, 178, 0.60) 0%, rgba(255, 247, 178, 0) 62%),
      radial-gradient(420px 260px at 92% 80%, rgba(161, 218, 248, 0.55) 0%, rgba(161, 218, 248, 0) 62%),
      var(--bg-white);
    box-shadow: 0 18px 46px rgba(0,0,0,0.10);
}
.contact-cta-media{
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--bg-white);
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.contact-cta-photo{
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}
.contact-cta-body{ position: relative; z-index: 1; }
.contact-cta-title{ margin: 0 0 8px; font-size: 1.35rem; font-weight: 950; }
.contact-cta-text{ margin: 0 0 12px; color: #444; line-height: 1.7; }
.contact-cta-actions{ display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.contact-cta-note{ margin: 12px 0 0; color: var(--text-light); font-size: 0.95rem; }
.sticker--contact-cta{
    top: -40px;
    right: -70px;
    transform: rotate(10deg);
    opacity: 0.22;
}


/* Gruppenbilder (Startseite + Wer wir sind) */
.group-gallery {
    padding: 54px 0 72px;
    background:
      radial-gradient(900px 520px at 12% 20%, var(--tint-blue-soft) 0%, rgba(161, 218, 248, 0) 62%),
      radial-gradient(900px 520px at 92% 90%, var(--tint-yellow-soft) 0%, rgba(255, 247, 178, 0) 60%),
      var(--bg-white);
    border-top: 1px solid rgba(11,18,33,0.08);
    border-bottom: 1px solid rgba(11,18,33,0.08);
}
.group-gallery .container { position: relative; z-index: 1; }

/* Sticker (dekorativ) */
.sticker {
    position: absolute;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
    user-select: none;
    max-width: min(520px, 70vw);
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.10));
}
.sticker--hero-1 { top: -70px; right: -60px; transform: rotate(10deg); opacity: 0.16; }
.sticker--hero-2 { bottom: -90px; left: -70px; transform: rotate(-12deg); opacity: 0.16; }
.sticker--features-1 { top: 30px; right: -80px; transform: rotate(8deg); opacity: 0.16; }
.sticker--events-1 { bottom: -80px; right: -70px; transform: rotate(-8deg); opacity: 0.16; }
.sticker--gallery-1 { top: -70px; left: -70px; transform: rotate(-10deg); opacity: 0.16; }

.sticker--page-single-1 { top: 40px; right: -80px; transform: rotate(8deg); opacity: 0.16; }
.sticker--page-single-2 { bottom: 50px; left: -90px; transform: rotate(-9deg); opacity: 0.16; }
.sticker--page-single-3 { top: 160px; left: -100px; transform: rotate(12deg); opacity: 0.16; }

.sticker--page-list-1 { top: 90px; left: -90px; transform: rotate(-8deg); opacity: 0.16; }
.sticker--page-list-2 { bottom: 70px; right: -110px; transform: rotate(10deg); opacity: 0.16; }

.sticker--page-positionen-1 { bottom: 40px; right: -90px; transform: rotate(-10deg); opacity: 0.16; }
.sticker--page-positionen-2 { top: 80px; left: -110px; transform: rotate(9deg); opacity: 0.16; }

.sticker--page-termine-1 { top: 60px; right: -90px; transform: rotate(9deg); opacity: 0.16; }
.sticker--page-termine-2 { bottom: 60px; left: -110px; transform: rotate(-11deg); opacity: 0.16; }
.sticker--page-termine-3 { top: 320px; left: -120px; transform: rotate(8deg); opacity: 0.16; }

/* Eindrücke (Wer wir sind) – Slider */
.impressions-slider{ position: relative; margin-top: 18px; }
.impressions-slider-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}
.impressions-slider-title{ margin: 0; }
.impressions-slider-controls{ display: flex; gap: 10px; }
.impressions-track{
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 18px 6px 22px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    z-index: 1;
}
.impressions-track::-webkit-scrollbar { height: 0; width: 0; display: none; }

.impression-slide{
    margin: 0;
    flex: 0 0 auto;
    width: min(720px, 90vw);
    scroll-snap-align: start;
}
.impression-slide-image{
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1; /* 1000x500 */
    object-fit: cover;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(0,0,0,0.10);
}
.impression-slide-caption{ margin-top: 8px; }
.impression-title { margin: 0 0 6px; font-size: 1.25rem; font-weight: 900; }
.impression-caption { margin: 0; color: #444; line-height: 1.65; }

.sticker--impressions-slider{
    top: 10px;
    left: -110px;
    transform: rotate(-10deg);
    opacity: 0.20;
}

/* Wie funktioniert's – Sections */
.wf-section { margin-top: 34px; }
.wf-section:first-of-type { margin-top: 18px; }
.wf-lead { color: #444; margin: 10px 0 14px; line-height: 1.75; }
.group-gallery-head { margin-bottom: 18px; }
.group-gallery-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 8px;
}
.group-gallery-subtitle {
    margin: 0;
    color: #444;
    max-width: 70ch;
}
.group-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.group-figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}
.group-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.group-caption {
    padding: 12px 14px 14px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.35;
}
.group-gallery-inline { margin-top: 18px; }

/* Footer */
.site-footer { padding: 60px 0 40px; background: var(--bg-color); border-top: 1px solid rgba(11,18,33,0.08); font-size: 0.9rem; color: var(--text-light); }
.footer-content { display: flex; flex-direction: column; gap: 40px; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--text-color); }
.footer-logo .logo-img { height: 44px; }
.footer-logo-icon { height: 35px; width: auto; }
.footer-links { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; min-width: 180px; }
.footer-links-title { font-weight: 800; color: var(--text-color); margin-bottom: 4px; }
.footer-links a { color: var(--text-color); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-color); }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 20px; }

/* Termine */
/* Termine – Zeitstrahl */
.timeline {
    position: relative;
    margin-top: 26px;
    padding-left: 22px;
}
.timeline-line {
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 6px;
    border-radius: 999px;
    background: var(--bg-blue);
}
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 18px;
}
.timeline-year-row{
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    align-items: center;
    margin: 24px 0 10px;
}
.timeline-year-spacer { width: 22px; height: 1px; }
.timeline-year{
    margin: 0;
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: 0.02em;
    color: var(--text-color);
    opacity: 0.9;
}
.timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--bg-blue);
    border: 3px solid var(--bg-white);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    margin-top: 10px;
}
.timeline-card {
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    padding: 16px 16px;
}
.timeline-card--placeholder { background: var(--bg-yellow); }
.timeline-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--primary-color);
    background: var(--bg-pink);
    border: 1px solid rgba(229,0,125,0.18);
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.timeline-title {
    font-size: 1.25rem;
    font-weight: 950;
    line-height: 1.2;
    margin: 0 0 10px;
}
.timeline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.timeline-meta span {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #444;
    font-weight: 700;
}
.timeline-links { display: flex; gap: 12px; flex-wrap: wrap; }
.timeline-link { font-weight: 900; color: var(--primary-color); }
.timeline-link:hover { text-decoration: underline; }
.timeline-desc { margin: 8px 0 0; color: #444; line-height: 1.65; }

.timeline-cta {
    margin-top: 22px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--bg-white);
    padding: 16px 16px;
}
.timeline-cta-text { margin: 0 0 12px; color: #444; line-height: 1.75; }

.termine-more{
    margin: 8px 0 24px;
    padding-left: 22px;
}
.termine-more-text{
    margin: 0 0 10px;
    color: #444;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content { text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; gap: 34px; }
    .privacy-grid { grid-template-columns: 1fr; }
    .footer-main { flex-direction: column; gap: 20px; }
    .footer-links { flex-direction: column; align-items: center; gap: 15px; }
    .footer-bottom-row { flex-direction: column; gap: 20px; }
    /* Mobile header: show hamburger, menu opens on click */
    .navbar .container { gap: 12px; }
    .nav-toggle { display: inline-flex; }
    .nav-panel {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        margin: 0 20px;
        padding: 14px;
        background: var(--bg-white);
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.14);
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        z-index: 150;
    }
    .site-header.is-menu-open .nav-panel { display: flex; }

    .nav-menu { display: flex; flex-direction: column; gap: 10px; }
    .nav-menu a { font-size: 1rem; padding: 10px 10px; border-radius: 10px; }
    .nav-menu a:hover { background: var(--bg-white); color: var(--text-color); }

    .social-links { justify-content: flex-start; }

    .nav-download { width: 100%; text-align: center; padding: 12px 16px; }
    .final-cta { margin: 20px; border-radius: 16px; padding: 40px 0; }
    .ig-embed iframe { height: 560px; }
    .group-gallery-grid { grid-template-columns: 1fr; }
    .group-image { height: 240px; }
    .impression-figure { max-width: 100%; }
    .blog-header-top { flex-direction: column; align-items: flex-start; }
    .blog-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 18px; }
    .timeline-item { grid-template-columns: 18px 1fr; gap: 12px; }
    .timeline-dot { width: 18px; height: 18px; }
    .personen-carousel-head { align-items: flex-start; }
    .personen-carousel-controls { justify-content: space-between; }

    .contact-cta-card { grid-template-columns: 1fr; }
    .contact-cta-media { max-width: 320px; }
}

/* Language Switcher */
.language-switcher { position: relative; display: inline-block; }
.lang-button { background: none; border: 1px solid #ddd; padding: 5px 10px; border-radius: 6px; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; gap: 5px; }
.lang-dropdown { display: none; position: absolute; bottom: 100%; right: 0; background: white; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); min-width: 150px; overflow: hidden; z-index: 200; }
.language-switcher:hover .lang-dropdown { display: block; }
.lang-option { display: block; padding: 10px 15px; text-align: left; font-size: 0.9rem; color: var(--text-color); }
.lang-option:hover { background: var(--bg-yellow); }

/* Modal Styles */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; display: none; justify-content: center; align-items: center; }
.modal.is-visible { display: flex; }
.modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); }
.modal-content { background: white; padding: 30px; border-radius: 16px; width: 90%; max-width: 500px; position: relative; z-index: 1001; box-shadow: 0 20px 40px rgba(0,0,0,0.2); text-align: left; }
.modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-color); }
.modal h3 { margin-bottom: 10px; color: var(--text-color); }
.modal-text { margin-bottom: 20px; color: var(--text-light); }
.form-row { margin-bottom: 15px; }
.form-row label { display: block; margin-bottom: 5px; font-weight: 500; color: var(--text-color); }
.form-row input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; }
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    font-family: inherit;
    resize: vertical;
    min-height: 160px;
}
.support-form textarea::placeholder { color: #9aa0a6; }
.form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
.btn-secondary { background: var(--btn-yellow); color: var(--text-color); }
.btn-secondary:hover { filter: brightness(0.96); }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 10px; }
.form-message { margin-top: 10px; font-weight: 500; }

/* Legal Pages (Impressum / Datenschutz) */
.legal-page {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(900px 520px at 15% 0%, var(--tint-yellow-soft) 0%, rgba(255, 247, 178, 0) 62%),
      radial-gradient(820px 520px at 95% 55%, var(--tint-blue-soft) 0%, rgba(161, 218, 248, 0) 60%),
      var(--bg-white);
}
.legal-page .container { position: relative; z-index: 1; }

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content--wide {
    max-width: var(--container-width);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-color);
    line-height: 1.2;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 35px 0 15px;
    color: var(--text-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5em;
    color: #444;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.legal-content li {
    margin-bottom: 0.5em;
    line-height: 1.6;
    color: #444;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}
.legal-content a.btn { color: inherit; text-decoration: none; opacity: 1; }
.legal-content a.btn.btn-primary { color: #ffffff; }
.legal-content a.btn.btn-secondary { color: var(--text-color); }
.legal-content a.btn.btn-ghost { color: var(--btn-blue); }

.legal-content a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Section lists */
.section-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 16px; }
.section-card {
    display: block;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.section-card:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,0.10); }
.section-card-title { margin: 0 0 8px; font-size: 1.05rem; }
.section-card-desc { margin: 0; color: var(--text-light); font-size: 0.95rem; }

/* CTA Card (Mitmachen → Mitglied werden) */
.section-card--cta{
    background:
      radial-gradient(360px 220px at 8% 25%, rgba(255, 247, 178, 0.55) 0%, rgba(255, 247, 178, 0) 62%),
      radial-gradient(360px 220px at 92% 80%, rgba(161, 218, 248, 0.50) 0%, rgba(161, 218, 248, 0) 62%),
      var(--bg-white);
    border-color: rgba(0,0,0,0.10);
    box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}
.section-card--cta:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,0.14); }
.section-card--cta .sticker{
    max-width: 240px;
    opacity: 0.22;
    z-index: 0;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.12));
}
.sticker--card-cta{
    top: -36px;
    right: -54px;
    transform: rotate(10deg);
}
.section-card--cta .section-card-title,
.section-card--cta .section-card-desc{
    position: relative;
    z-index: 1;
    max-width: 50ch;
}

/* Personen */
.personen-intro { margin-bottom: 18px; }
.personen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 18px; }
.personen-carousel { margin-top: 18px; position: relative; }
.personen-carousel-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}
.personen-carousel-head .personen-heading { margin: 0; }
.personen-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.10);
    background: var(--bg-white);
    cursor: pointer;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text-color);
}
.carousel-btn:hover { color: var(--primary-color); border-color: rgba(0,0,0,0.16); }
.personen-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    /* Mehr vertikaler Raum, damit Card-Schatten nicht „abgeschnitten“ wirkt */
    padding: 18px 6px 22px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox: hide scrollbar */
}
.personen-track::-webkit-scrollbar { height: 0; width: 0; display: none; }
.personen-track::-webkit-scrollbar-thumb { background: transparent; }
.personen-track .person-card {
    flex: 0 0 auto;
    width: min(240px, 78vw);
    scroll-snap-align: start;
}
.personen-carousel--compact .person-card{
    /* Etwas weicherer Shadow im Carousel (wirkt weniger kantig) */
    box-shadow: 0 12px 22px rgba(0,0,0,0.07);
}
.personen-carousel--compact .person-photo-wrap {
    aspect-ratio: 2 / 3; /* 400x600 */
    height: auto;
}
.personen-carousel--compact .person-photo { object-position: center; }
.personen-carousel--compact .person-bio { display: none; }
.person-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.person-photo-wrap {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 14px;
}
.person-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.person-card-top { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.person-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--bg-pink);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--text-color);
}
.person-name { font-weight: 900; color: var(--text-color); }
.person-role { color: var(--text-light); font-weight: 600; font-size: 0.95rem; }
.person-bio { margin: 10px 0 14px; color: var(--text-color); opacity: 0.9; }
.person-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.person-action {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.10);
    background: var(--bg-white);
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.person-action:hover {
    transform: translateY(-1px);
    border-color: rgba(0,0,0,0.16);
    color: var(--primary-color);
}
.person-action:focus-visible {
    outline: 3px solid rgba(0,158,227,0.35);
    outline-offset: 2px;
}

/* Positionen */
.positionen-intro { margin-bottom: 18px; }
.positionen-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 18px; }
.position-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.position-card-title { font-weight: 900; color: var(--text-color); margin-bottom: 10px; }
.position-card-desc { margin: 0 0 12px; color: var(--text-color); opacity: 0.9; }
.position-card-link { font-weight: 900; color: var(--primary-color); }
.position-card-link:hover { text-decoration: underline; filter: brightness(0.92); }

.legal-content strong {
    font-weight: 600;
    color: var(--text-color);
}
