/* =====================================================
   over-ons.css  –  Bochtenbank
   Stijl consistent met contact.css
   ===================================================== */

/* ── HERO ─────────────────────────────────────────── */
.overons-hero {
    position: relative;
    background: linear-gradient(135deg, #1a0533 0%, #2d1b69 50%, #7B2CBF 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px 60px;
    overflow: hidden;
}

.overons-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.overons-hero p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    opacity: 0.88;
    max-width: 520px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 2;
}

.overons-hero h1 .highlight {
    color: #f0abfc;
}

.overons-hero h1 {
    color: #fff !important;
}

/* Terugknop */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(6px);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.28);
}

/* Sterren (zelfde als contact) */
.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: twinkle 3s infinite alternate;
}

.star:nth-child(1)  { top: 15%; left: 8%;   animation-delay: 0s;    width: 4px;  height: 4px; }
.star:nth-child(2)  { top: 35%; left: 88%;  animation-delay: 0.8s;  width: 6px;  height: 6px; }
.star:nth-child(3)  { top: 60%; left: 5%;   animation-delay: 1.4s;  width: 5px;  height: 5px; }
.star:nth-child(4)  { top: 20%; left: 70%;  animation-delay: 0.3s;  width: 3px;  height: 3px; }
.star:nth-child(5)  { top: 75%; left: 80%;  animation-delay: 1.8s;  width: 5px;  height: 5px; }
.star:nth-child(6)  { top: 50%; left: 50%;  animation-delay: 1.1s;  width: 4px;  height: 4px; }

@keyframes twinkle {
    from { opacity: 0.3; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.4); }
}


/* ── SECTIES ──────────────────────────────────────── */
.overons-section {
    padding: 60px 20px;
    background: #f8f5ff;
}

.overons-section--licht {
    background: #fff;
}


/* ── MISSIE (tweekoloms) ──────────────────────────── */
.overons-container {
    max-width: 1100px;
    margin: 0 auto;
}

.overons-missie {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 768px) {
    .overons-missie {
        grid-template-columns: 1fr;
    }
}

/* Kaarten (zelfde patroon als contact-info / contact-form-card) */
.overons-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(123, 44, 191, 0.08);
}

.overons-card h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: #1a0533;
    margin-bottom: 18px;
}

.overons-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.97rem;
    color: #4a4460;
    line-height: 1.75;
    margin-bottom: 14px;
}

.overons-card p:last-child {
    margin-bottom: 0;
}

.overons-card strong {
    color: #1a0533;
    font-weight: 700;
}

/* Statistieken binnenin kaart */
.stats-kaart {
    background: linear-gradient(135deg, #2d1b69, #7B2CBF);
    color: #fff;
}

.stats-kaart h2 {
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: background 0.25s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stat-getal {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: #e0aaff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}


/* ── SECTIE BREDE CONTAINER ───────────────────────── */
.overons-container-breed {
    max-width: 1100px;
    margin: 0 auto;
}

.sectie-titel {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: #1a0533;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}


/* ── WAARDEN ──────────────────────────────────────── */
.waarden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.waarde-kaart {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(123, 44, 191, 0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}

.waarde-kaart:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(123, 44, 191, 0.15);
}

.waarde-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #7B2CBF, #c77dff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.waarde-kaart h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem;
    color: #1a0533;
    margin-bottom: 8px;
}

.waarde-kaart p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #5a5272;
    line-height: 1.65;
}


/* ── TEAM ─────────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.team-kaart {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(123, 44, 191, 0.07);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.team-kaart:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(123, 44, 191, 0.15);
}

.team-avatar {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #7B2CBF, #c77dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto 16px;
}

.team-kaart h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    color: #1a0533;
    margin-bottom: 4px;
}

.team-rol {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7B2CBF;
    margin-bottom: 12px;
}

.team-kaart p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #5a5272;
    line-height: 1.65;
}


/* ── CTA ──────────────────────────────────────────── */
.overons-cta {
    position: relative;
    background: linear-gradient(135deg, #1a0533 0%, #7B2CBF 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.overons-cta h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    color: #fff !important;
}

.overons-cta p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    opacity: 0.88;
    max-width: 480px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 2;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #7B2CBF;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background: #f3e8ff;
    transform: translateY(-3px);
}

/* ── CTA (lichte variant boven grijze footer) ─────── */
.overons-section--cta {
    background: #f0e8ff;
    padding: 60px 20px;
}

.overons-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-titel {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #1f0040;
    margin-bottom: 8px;
}

.cta-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.97rem;
    color: #5a5272;
    margin: 0;
}
