/* ========================================================================== */ /* THINKERLAB – SPEELS TERRACOTTA/HOUT THEMA */ /* Samengevoegde stylesheet: origineel + uitbreidingen */ /* ========================================================================== */ /* ----------------------------- 1) Kleuren/vars ----------------------------- */
:root { /* Originele kleuren */
    --light-green: #6fb855;
    --green-blue: #006633;
    --turquoise: #008f7d;
    --light-blue: #00787e;
    --dark-purple: #82368c;
    --gold: #F4BA23;
    --light-yellow: #FFD541;
    --orange: #F8AA34;
    --black: #1a1a1a;
    --earth-white: #EAEEF2;
    --light-wood: #E0D3BE;
    --dark-wood: #8d6744;
    --green-logo: #2fac66; /* Uitbreiding – zachte terracotta/hout + kinderaccenten */
    --clay-100: #FFF7EE;
    --clay-200: #F9E9D7;
    --clay-300: #F0D7BF;
    --terracotta: #D9794A;
    --terracotta-deep: #B75E37;
    --wood-100: #EADFCF;
    --wood-300: #C7AB88;
    --wood-600: #8D6744;
    --mint-200: #CDEBD1;
    --aqua-200: #CDEDEF;
    --sun-200: #FFE8A3;
    --ink: #2A2A2A;
}

/* ----------------------------- 2) Basics/Reset ----------------------------- */
* {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
}

/* Font imports */
@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Fredoka';
    src: url('../assets/fonts/Fredoka-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
}

/* Zachte, warme achtergrond i.p.v. vlak wit */
body {
    background: radial-gradient(1200px 600px at -10% -10%, var(--aqua-200) 0%, transparent 40%), radial-gradient(900px 500px at 110% -20%, var(--sun-200) 0%, transparent 35%), radial-gradient(800px 500px at 110% 120%, var(--mint-200) 0%, transparent 40%), #fff; /* fallback */
}

/* Typografie voor koppen (vriendelijker) */
h1, h2, h3 {
    font-family: 'Fredoka', 'Montserrat', system-ui, -apple-system, sans-serif;
    letter-spacing: .2px;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

p {
    line-height: 24px;
}

/* Links */
.linkText {
    text-decoration: none;
    font-weight: 600;
    color: var(--dark-purple);
}

.linkText:hover {
    color: #39929b;
}

img {
    max-width: 100%;
}

/* Helpers */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
}

.space-evenly {
    gap: 30px;
    justify-content: space-evenly;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.hidden {
    display: none !important;
}

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

/* ----------------------------- 3) Header/Hero ------------------------------ */
.headerContainer {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.headerImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
}

/* Warm filter over de foto */
.headerContainer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

/* Tekst in hero */
.centeredText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    font-size: clamp(1.25rem, 4vw, 3rem);
    white-space: nowrap;
}

/* ------------------------------- 4) Navbar -------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), repeating-linear-gradient(90deg, rgba(139, 94, 60, 0.06) 0 12px, rgba(139, 94, 60, 0.02) 12px 24px);
    border-bottom: 4px solid var(--wood-100);
}

.menuList {
    list-style: none;
    display: flex;
    height: 100%;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--green-logo);
    font-weight: 600;
    border-radius: 999px;
    transition: background .2s ease, transform .1s ease;
}

.navbar a:hover {
    background: var(--mint-200);
    transform: translateY(-1px);
}

.navbar > h1 {
    padding-left: 60px;
    color: var(--light-green);
}

/* Mobile menu */
.mobileMenu {
    display: flex;
    flex-direction: column;
    list-style: none;
    position: fixed;
    top: 44px;
    background-color: var(--earth-white);
    width: 100%;
    z-index: 100;
    height: 0;
    overflow: hidden;
    justify-content: center;
    transition: height 0.3s ease;
}

.mobileMenu.open {
    height: 270px;
}

.mobileMenu > ul {
    margin: 0;
}

.mobileMenu > ul > li > a {
    text-decoration: none;
}

.mobileMenuOverlay {
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 60px;
}

/* Logo */
.thinkerLabLogo {
    padding-left: 40px;
    width: 250px;
    height: 100px;
    max-width: 200px;
}

#thinkerLabFooterLogo {
    width: 250px;
    height: 100px;
    max-width: 200px;
}

/* ------------------------------ 5) Secties/UI ------------------------------ */
section {
    position: relative;
    z-index: 0;
    isolation: isolate;
    scroll-margin-top: 85px;
    padding-block: 32px;
}

/* Afwisseling (i.p.v. grijze blokken) */
section:nth-of-type(even) {
    background: var(--clay-100);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px; /* uit jouw desktop rules */
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.container > h2 {
    text-align: center;
}

.slogan {
    padding: 20px 0;
    text-align: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* “Voor wie?” – kaarten */
#voor-wie .card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

#voor-wie p {
    padding: 0 8px 8px 8px;
}

/* over ons */
#over-ons p {
    text-align: left;
}

/* Stappen */
.flex-step {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    margin-left: 25px;
}

.icon-circle, .icon-circle-alt {
    min-width: 48px;
    height: 48px;
    border-radius: 100%;
    text-align: center;
    align-content: center;
    border: 3px solid #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    background: var(--dark-purple);
    margin-left: -25px;
}

.icon-circle-alt {
    background: var(--dark-purple);
}

.fa-solid {
    color: white;
}

.vertical-line {
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--wood-100), var(--wood-300));
    height: 89%;
    margin-top: 2px;
    z-index: -1;
    border-radius: 2px;
}

/* ------------------------------ 6) Knoppen -------------------------------- */
button {
    padding: 10px 20px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
}

.button-primary {
    background: linear-gradient(180deg, var(--green-blue), #007a49);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}

.button-primary:hover {
    transform: translateY(-1px);
    filter: saturate(1.08);
}

.button-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.button-alt {
    background-color: transparent;
    color: var(--green-blue);
    border: 2px dashed var(--green-blue);
    border-radius: 14px;
    transition: background .2s ease, color .2s ease;
}

.button-alt:hover {
    background-color: var(--green-blue);
    color: white;
}

/* ------------------------------- 7) Footer -------------------------------- */
footer {
    background: var(--wood-100);
    color: var(--ink);
    padding: 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-column a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s;
}

.mail-button {
    display: inline-block;
    background: #82368c;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: Arial, sans-serif;
    transition: background 0.3s ease, transform 0.2s ease;
}

.mail-button:hover {
    background: #904d9c;
    transform: translateY(-2px);
}

.mail-button:active {
    transform: translateY(0);
}

.footer-column a:hover {
    color: var(--clay-300);
}

.footer-logo {
    max-width: 100px;
}

.footer-column > h1 {
    width: fit-content;
    margin-right: 50px;
}

.links-footer {
    width: 100%;
    display: flex;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* ---------------------------- 8) Desktop tweaks ---------------------------- */
@media screen and (min-width: 769px) {
    .menuIcon {
        display: none;
    }

    .mobileMenu {
        display: none;
    }

    .menuListItem {
        height: 100%;
    }

    .container {
        padding: 40px 20px;
    }

    .footer-column {
        flex: 1;
    }

    .same-width-div {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

/* ---------------------------- 9) Mobile/responsive ------------------------- */
@media screen and (max-width: 768px) {
    .menuList {
        display: none;
    }

    .menuIcon {
        display: block;
        color: var(--black);
        cursor: pointer;
    }

    .navbar {
        display: flex;
        padding-right: 20px;
        justify-content: space-between;
    }

    .flex-mobile {
        flex-direction: column;
    }

    .container {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .container:first-of-type {
        border-radius: 0;
        background-color: white;
    }

    .button-wrapper {
        align-self: center;
    }

    .footer-row {
        display: block;
    }

    .headerContainer {
        height: 55vh;
    }

    .headerImage {
        height: 100%;
    }

    .centeredText {
        padding: 8px;
    }

    .footer-column {
        width: 100%;
        justify-content: space-between;
    }

    /* Minder bewegende vormen op mobiel voor rust */
    .shape {
        display: none;
    }

    .wave--white {
        margin-top: -38px;
    }

    .links-footer {
        text-align: center;
    }
}

/* ----------------------- 10) Wave divider (optioneel) ---------------------- */
.wave-sep {
    line-height: 0;
    margin-top: -16px;
    margin-bottom: -16px;
    position: relative;
    z-index: 0;
}

.wave-sep svg {
    display: block;
    width: 100%;
    height: 64px;
    transform: translateZ(0); /* voorkomt hairlines op sommige devices */
}

@media (max-width: 768px) {
    section {
        padding-block: 24px;
    }

    .wave-sep svg {
        height: 40px;
    }

    .wave-sep {
        margin-top: -10px;
        margin-bottom: -10px;
    }
}

.wave-sep svg path {
    fill: currentColor;
}

/* Kleurkeuzes – kies degene die het beste matcht met jouw section-bg */
.wave--clay-100 {
    color: var(--clay-100);
}

/* zachte terracotta achtergrond */
.wave--clay-200 {
    color: var(--clay-200);
}

/* iets warmer */
.wave--white {
    color: #ffffff;
    margin-top: -45px;
}

.waarom-title{
    text-align: center;
}

@media (max-width: 375px) {
    .centeredText {
        white-space: normal;
    }
}
@media (max-width: 768px) {
    .wave--white {
        margin-top: -39px;
    }
}

/* ----------------------- 11) Document Links Styling ---------------------- */
.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.document-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--dark-purple);
    color: var(--ink);
}

.document-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--dark-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(130, 54, 140, 0.3);
}

.document-icon i {
    font-size: 24px;
    color: white;
}

.document-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.document-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Mobile responsive for document links */
@media (max-width: 768px) {
    .document-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .document-link {
        padding: 16px;
        gap: 16px;
    }
    
    .document-icon {
        width: 50px;
        height: 50px;
    }
    
    .document-icon i {
        font-size: 20px;
    }
    
    .document-content h3 {
        font-size: 16px;
    }
    
    .document-content p {
        font-size: 13px;
    }
}