/* hoislimpie.nl · schoolschrift-stijl */

:root {
    --papier: #FBF7EC;
    --inkt: #2B2B33;
    --groen: #2E7D5B;
    --groen-donker: #256A4C;
    --rood: #E4593C;
    --rood-donker: #B8432C;
    --geel: #FFD34D;
    --lijnblauw: #B8D2E6;
    --wit: #FFFEFA;
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--inkt);
    background: var(--papier);
}

h1,
h2,
h3 {
    font-family: 'Fredoka', sans-serif;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.ruit {
    background-image:
        linear-gradient(var(--lijnblauw) 1px, transparent 1px),
        linear-gradient(90deg, var(--lijnblauw) 1px, transparent 1px);
    background-size: 26px 26px;
    background-color: var(--wit);
}

/* ============ Header ============ */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 22px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--inkt);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.5px;
}

.logo .groen {
    color: var(--groen);
}

.logo .rood {
    color: var(--rood);
}

.site-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--inkt);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.site-nav a.actief {
    color: var(--rood);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 3px;
}

.knop-rood {
    display: inline-block;
    background: var(--rood);
    color: var(--papier) !important;
    text-decoration: none !important;
    border: none;
    border-radius: 12px;
    padding: 12px 22px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 3px 0 var(--rood-donker);
}

.knop-groen {
    background: var(--groen);
    box-shadow: 0 3px 0 var(--groen-donker);
}

/* ============ Sticker ============ */

.sticker {
    display: inline-block;
    transform: rotate(-6deg);
    background: var(--rood);
    color: var(--papier);
    font-family: 'Caveat', cursive;
    font-size: 22px;
    line-height: 1;
    padding: 8px 14px 10px;
    border-radius: 50% 46% 52% 48% / 55% 48% 52% 45%;
    box-shadow: 0 2px 0 rgb(43 43 51 / 18%);
}

.sticker.groen {
    background: var(--groen);
    transform: rotate(5deg);
}

/* ============ Hero ============ */

.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 36px 0 72px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 18px;
}

.markeer {
    position: relative;
    white-space: nowrap;
}

.markeer span {
    position: relative;
    z-index: 1;
}

.markeer::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 6px;
    height: 16px;
    background: var(--geel);
    border-radius: 4px;
}

.hero-tekst {
    font-size: 19px;
    line-height: 1.65;
    margin-top: 20px;
    max-width: 480px;
}

.hero-knoppen {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.punten {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
}

/* Schrift-preview */

.schrift {
    display: block;
    border: 3px solid var(--inkt);
    border-radius: 18px;
    box-shadow: 8px 8px 0 rgb(43 43 51 / 15%);
    overflow: hidden;
    text-decoration: none;
    color: var(--inkt);
    position: relative;
}

.schrift-kop {
    background: var(--groen);
    color: var(--papier);
    padding: 12px 16px 12px 60px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.schrift-body {
    padding: 24px 24px 28px 60px;
    display: grid;
    gap: 14px;
    position: relative;
}

.schrift-body::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 44px;
    width: 2px;
    background: var(--rood);
    opacity: 0.55;
}

.ballon {
    padding: 10px 14px;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
    background: var(--papier);
    border: 2px solid var(--inkt);
    border-radius: 14px 14px 14px 4px;
    max-width: 82%;
}

.ballon.vraag {
    background: var(--geel);
    font-weight: 700;
    border-radius: 14px 14px 4px 14px;
    justify-self: end;
}

.schrift-cta {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: var(--groen);
    text-align: center;
    margin-top: 6px;
}

/* ============ Secties ============ */

.sectie {
    padding: 72px 0;
}

.sectie-groen {
    background: var(--groen);
    color: var(--papier);
}

.sectie h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    text-align: center;
}

.sectie-intro {
    text-align: center;
    margin: 12px auto 0;
    font-size: 17px;
    max-width: 560px;
    font-weight: 600;
}

.drie {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.kaart {
    border: 3px solid var(--inkt);
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 6px 6px 0 rgb(43 43 51 / 12%);
}

.kaart h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--groen);
}

.kaart p {
    margin-top: 10px;
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 600;
}

.kaart .icoon {
    font-size: 34px;
}

.stap {
    background: rgb(251 247 236 / 8%);
    border: 2px solid rgb(251 247 236 / 25%);
    border-radius: 16px;
    padding: 26px 24px;
}

.stap-nummer {
    font-family: 'Caveat', cursive;
    font-size: 30px;
    color: var(--geel);
    line-height: 1;
}

.stap h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.stap p {
    margin-top: 10px;
    font-size: 15.5px;
    line-height: 1.6;
    opacity: 0.92;
}

.centreer {
    text-align: center;
    margin-top: 40px;
}

/* ============ Eerlijk-blok ============ */

.eerlijk {
    max-width: 680px;
    margin: 64px auto 0;
    text-align: center;
    background: var(--wit);
    border: 3px solid var(--inkt);
    border-radius: 16px;
    padding: 28px 30px;
}

.eerlijk h3 {
    font-family: 'Caveat', cursive;
    font-size: 30px;
    color: var(--rood);
    font-weight: 600;
}

.eerlijk p {
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.7;
    margin-top: 8px;
}

/* ============ Prijzen ============ */

.prijs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 44px;
}

.prijs {
    border: 3px solid var(--inkt);
    border-radius: 18px;
    padding: 30px 28px;
    background: var(--papier);
    position: relative;
}

.prijs.populair {
    background: var(--geel);
}

.prijs.populair .sticker {
    position: absolute;
    top: -18px;
    right: 20px;
    transform: rotate(6deg);
}

.prijs h3 {
    font-size: 22px;
}

.prijs-bedrag {
    font-family: 'Fredoka', sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin-top: 12px;
}

.prijs-bedrag small {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.prijs ul {
    list-style: none;
    padding: 0;
    margin-top: 18px;
    display: grid;
    gap: 10px;
    font-size: 15.5px;
    font-weight: 600;
}

.prijs .knop-rood {
    margin-top: 22px;
    width: 100%;
    text-align: center;
}

.scholen {
    margin-top: 48px;
    border: 3px dashed var(--groen);
    border-radius: 16px;
    padding: 26px 28px;
    text-align: center;
    background: var(--wit);
}

.scholen h3 {
    font-size: 22px;
    color: var(--groen);
}

.scholen p {
    font-size: 15.5px;
    font-weight: 600;
    margin: 10px auto 0;
    line-height: 1.65;
    max-width: 560px;
}

/* ============ FAQ ============ */

.faq-lijst {
    display: grid;
    gap: 14px;
    margin-top: 40px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 3px solid var(--inkt);
    border-radius: 14px;
    background: var(--wit);
    overflow: hidden;
}

.faq-vraag {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--inkt);
    gap: 14px;
}

.faq-plus {
    font-family: 'Caveat', cursive;
    font-size: 26px;
    color: var(--rood);
    flex-shrink: 0;
}

.faq-antwoord {
    display: none;
    padding: 0 20px 18px;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.7;
}

.faq-item.open .faq-antwoord {
    display: block;
}

/* ============ Ouderpaneel-preview ============ */

.twee {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 72px;
    align-items: center;
}

.paneel {
    border: 3px solid var(--inkt);
    border-radius: 18px;
    box-shadow: 8px 8px 0 rgb(43 43 51 / 15%);
    overflow: hidden;
}

.paneel-kop {
    background: var(--inkt);
    color: var(--papier);
    padding: 12px 18px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.paneel-body {
    padding: 20px;
    display: grid;
    gap: 12px;
}

.paneel-rij {
    background: var(--papier);
    border: 2px solid var(--inkt);
    border-radius: 12px;
    padding: 12px 16px;
}

.paneel-rij .label {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--groen);
}

.paneel-rij .tekst {
    font-size: 14.5px;
    font-weight: 600;
    margin-top: 4px;
}

/* ============ Footer ============ */

.site-footer {
    padding: 44px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--groen);
    outline-offset: 2px;
}

/* ============ Responsief ============ */

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

@media (max-width: 700px) {
    .drie,
    .prijs-grid {
        grid-template-columns: 1fr;
    }
}
