@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;900&display=swap');

/* ══════════════════════════════════════════
   CSS VARIABELEN
══════════════════════════════════════════ */
:root {
    --oranje: #e86b2c;
    --oranje-dark: #c95a1f;
    --groen: #2d7a3a;
    --wit: #ffffff;
    --lichtgrijs: #f4f4f4;
    --tekst: #1a1a1a;
    --kaart: #ffffff;
    --header-bg: #2d7a3a;
    --footer-bg: #1e5229;
    --border: #ddd;
    --shadow: rgba(0, 0, 0, 0.08);
}

body.dark {
    --lichtgrijs: #1a1a1a;
    --tekst: #f0f0f0;
    --kaart: #2a2a2a;
    --header-bg: #163d1e;
    --footer-bg: #111;
    --border: #444;
    --wit: #3a3a3a;
    --shadow: rgba(0, 0, 0, 0.3);
}

/* ══════════════════════════════════════════
   RESET & BASIS
══════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--lichtgrijs);
    color: var(--tekst);
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    animation: instappen 0.4s ease-out;
}

@keyframes instappen {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
header {
    background: var(--header-bg);
    padding: 12px 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 2px;
    flex-shrink: 0;
}

/* Desktop nav */
nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.knop {
    display: inline-block;
    padding: 6px 13px;
    background: rgba(255,255,255,0.15);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.2s;
    white-space: nowrap;
}

.knop:hover,
.knop.actief {
    background: var(--oranje);
    color: white;
}

/* Dark mode knop */
#darkmode-knop {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    transition: 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}

#darkmode-knop:hover { background: var(--oranje); }

/* ── Hamburger menu (mobiel) ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobiel nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    padding: 16px;
    z-index: 999;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-overlay.open {
    display: flex;
    flex-direction: column;
}


.nav-overlay .knop {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 10px;
    text-align: left;
}


.bespannen-knop {
    display: inline-block;
    background: var(--oranje);
    color: white;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1rem;
    transition: 0.2s;
}

.bespannen-knop:hover {
    background: var(--oranje-dark);
    transform: translateY(-2px);
}

.bespannen-knop.wit,
.cta-knop.wit {
    display: inline-block;
    background: white;
    color: var(--oranje);
    font-weight: 900;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.bespannen-knop.wit:hover,
.cta-knop.wit:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-knop {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--tekst);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s;
}

.cta-knop:hover {
    border-color: var(--oranje);
    color: var(--oranje);
}

/* ══════════════════════════════════════════
   VOORDELEN
══════════════════════════════════════════ */
.voordelen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 16px;
}

.voordeel {
    background: var(--kaart);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    border-top: 4px solid var(--oranje);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px var(--shadow);
}

.voordeel:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow);
}

.voordeel .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.voordeel h3 {
    color: var(--groen);
    margin-bottom: 8px;
    font-size: 1rem;
}

.voordeel p { font-size: 0.9rem; line-height: 1.5; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner,
.bespannen-banner {
    background: var(--oranje);
    color: white;
    text-align: center;
    padding: 44px 24px;
    max-width: 1000px;
    margin: 0 auto 30px;
    border-radius: 16px;
}

.cta-banner h2,
.bespannen-banner h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 10px;
}

.cta-banner p,
.bespannen-banner p { margin-bottom: 22px; font-size: 1rem; }

/* ══════════════════════════════════════════
   PAGINA TITEL
══════════════════════════════════════════ */
.pagina-titel {
    text-align: center;
    max-width: 700px;
    margin: 90px auto 30px;
    padding: 24px 20px 0;
}

.pagina-titel h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    color: var(--groen);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

body.dark .pagina-titel h1 { color: var(--oranje); }

.pagina-titel p {
    font-size: 1rem;
    opacity: 0.75;
}

/* ══════════════════════════════════════════
   PRIJZEN GRID
══════════════════════════════════════════ */
.prijzen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 16px;
}

.prijs-kaart {
    background: var(--kaart);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    border: 2px solid var(--border);
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
    box-shadow: 0 2px 8px var(--shadow);
}

.prijs-kaart:hover {
    transform: translateY(-4px);
    border-color: var(--oranje);
}

.prijs-kaart.uitgelicht {
    border-color: var(--oranje);
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--oranje);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.prijs-kaart h3 {
    color: var(--groen);
    font-size: 1.15rem;
    margin: 10px 0 8px;
}

.snaar-info {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 14px;
}

body.dark .snaar-info { color: #aaa; }

.prijs {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--oranje);
}

.snaar-foto-wrap {
    width: 100%;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--wit);
}

.snaar-foto {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.prijs-kaart:hover .snaar-foto { transform: scale(1.05); }

/* ══════════════════════════════════════════
   EXTRA DIENSTEN
══════════════════════════════════════════ */
.extra-diensten {
    max-width: 780px;
    margin: 0 auto 30px;
    padding: 0 16px;
}

.extra-diensten h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--groen);
    margin-bottom: 20px;
    text-align: center;
}

body.dark .extra-diensten h2 { color: var(--oranje); }

.extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.extra-item {
    background: var(--kaart);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.2s;
}

.extra-item:hover { transform: translateY(-3px); }

.extra-item h4 {
    color: var(--groen);
    margin-bottom: 6px;
    font-size: 1rem;
}

.extra-item p { font-size: 0.88rem; line-height: 1.5; }

.extra-item strong {
    color: var(--oranje);
    font-size: 1.5rem;
    font-family: 'Bebas Neue', cursive;
    display: block;
    margin-top: 10px;
}

.extra-foto-wrap {
    width: 100%;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--lichtgrijs);
}

.extra-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.extra-item:hover .extra-foto { transform: scale(1.05); }

/* ══════════════════════════════════════════
   CALCULATOR
══════════════════════════════════════════ */
.calculator {
    max-width: 560px;
    margin: 0 auto 50px;
    background: var(--kaart);
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
}

.calculator h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--groen);
    margin-bottom: 6px;
}

body.dark .calculator h2 { color: var(--oranje); }
.calculator > p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }
body.dark .calculator > p { color: #aaa; }

.calcding {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.calcding label {
    font-weight: 700;
    color: var(--tekst);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.calcding select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    background: var(--kaart);
    color: var(--tekst);
    cursor: pointer;
}

.totaal {
    background: var(--groen);
    color: white;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 6px;
}

.totaal span {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--oranje);
}

/* ══════════════════════════════════════════
   QUIZ
══════════════════════════════════════════ */
.quiz-voortgang {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.quiz-stap-dot {
    width: 36px;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    transition: background 0.3s;
}

.quiz-stap-dot.actief { background: var(--oranje); }
.quiz-stap-dot.klaar  { background: var(--groen); }

.quiz-container {
    max-width: 600px;
    margin: 0 auto 60px;
    background: var(--kaart);
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 6px 28px var(--shadow);
    text-align: center;
}

.quiz-stap { animation: instappen 0.35s ease both; }

.quiz-stap h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--groen);
    margin-bottom: 22px;
    line-height: 1.3;
}

body.dark .quiz-stap h3 { color: var(--oranje); }

.quiz-opties {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-btn {
    background: var(--lichtgrijs);
    border: 2px solid var(--border);
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    cursor: pointer;
    color: var(--tekst);
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quiz-btn:hover {
    background: var(--oranje);
    color: white;
    border-color: var(--oranje);
    transform: translateX(6px);
}

.quiz-btn:active { transform: translateX(3px) scale(0.98); }

.verborgen { display: none !important; }

.resultaat-kaart {
    background: var(--groen);
    color: white;
    padding: 26px 22px;
    border-radius: 16px;
    margin: 18px 0 22px;
    font-size: 1rem;
    line-height: 1.65;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.resultaat-kaart::before {
    content: '🎾';
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 5rem;
    opacity: 0.1;
    pointer-events: none;
}

.resultaat-kaart strong.snaar-naam {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--oranje);
    display: block;
    margin-bottom: 10px;
}

.resultaat-prijs {
    display: inline-block;
    background: rgba(0,0,0,0.18);
    border-radius: 8px;
    padding: 5px 14px;
    margin: 8px 0 14px;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--oranje);
}

.resultaat-bestel {
    display: inline-block;
    background: var(--oranje);
    color: white;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 10px;
    transition: background 0.18s, transform 0.15s;
}

.resultaat-bestel:hover {
    background: var(--oranje-dark);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
.team-grid {
    display: flex;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-kaart {
    background: var(--kaart);
    border-radius: 14px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow);
    width: 170px;
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 4px solid var(--groen);
}

.team-kaart:hover {
    transform: translateY(-6px);
    border-top-color: var(--oranje);
    box-shadow: 0 8px 24px var(--shadow);
}

.team-kaart h3 {
    color: var(--groen);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.team-kaart p { font-size: 0.85rem; color: #666; line-height: 1.5; }
body.dark .team-kaart p { color: #aaa; }

.teamsmasher {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 3px solid var(--oranje);
    background: var(--lichtgrijs);
}

.teamfotosmasher {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s;
}

.team-kaart:hover .teamfotosmasher { transform: scale(1.08); }

/* ══════════════════════════════════════════
   FOTO SLIDER
══════════════════════════════════════════ */
.draai-sectie {
    max-width: 860px;
    margin: 0 auto 30px;
    padding: 0 16px;
}

.draai {
    display: flex;
    align-items: center;
    gap: 10px;
}

.draai-venster {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.draai-track {
    display: flex;
    transition: transform 0.4s ease;
}

.draai-track img {
    min-width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}

.pijl {
    background: var(--kaart);
    border: 2px solid var(--border);
    color: var(--tekst);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pijl:hover {
    background: var(--oranje);
    border-color: var(--oranje);
    color: white;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-kaart {
    max-width: 620px;
    margin: 90px auto 50px;
    background: var(--kaart);
    padding: 36px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--shadow);
    text-align: center;
}

.contact-kaart h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.6rem;
    color: var(--groen);
    margin-bottom: 8px;
}

body.dark .contact-kaart h1 { color: var(--oranje); }

.intro {
    color: #666;
    margin-bottom: 26px;
    font-size: 1rem;
}

body.dark .intro { color: #aaa; }

.gegevens h2 {
    color: var(--groen);
    font-size: 1.1rem;
    margin: 18px 0 5px;
}

body.dark .gegevens h2 { color: var(--oranje); }
.gegevens p { margin-bottom: 6px; }

.gegevens a {
    color: var(--oranje);
    font-weight: 700;
}

.gegevens a:hover { text-decoration: underline; }

.contact-form {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.contact-form h2 {
    color: var(--groen);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

body.dark .contact-form h2 { color: var(--oranje); }

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    background: var(--lichtgrijs);
    color: var(--tekst);
    transition: border-color 0.2s;
    appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--oranje);
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.form-label {
    font-weight: 700;
    color: var(--tekst);
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--oranje);
    cursor: pointer;
    flex-shrink: 0;
}

.reactietijd {
    text-align: center;
    font-size: 0.88rem;
    color: #888;
    margin-top: 4px;
}

.form-ok {
    color: var(--groen);
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
}

/* ══════════════════════════════════════════
   WHATSAPP KNOP
══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: #25d366;
    color: white;
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.55);
    color: white;
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: white;
    flex-shrink: 0;
}

.whatsapp-label { white-space: nowrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 20px 16px;
    font-size: 0.88rem;
    line-height: 1.8;
}

footer a {
    color: var(--oranje);
    font-weight: 700;
}

footer a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .prijzen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .voordelen {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBIEL (max 700px)
══════════════════════════════════════════ */
@media (max-width: 700px) {

    /* Header: verberg desktop nav, toon hamburger */
    nav { display: none; }
    .hamburger { display: flex; }

    /* Header hoogte iets kleiner */
    header { padding: 10px 14px; }
    .logo { font-size: 1.6rem; }

    /* Hero */
    .tiptop {
        flex-direction: column;
        margin: 72px 12px 20px;
        padding: 28px 20px;
        text-align: center;
        border-radius: 16px;
    }

    .tiptop-tekst p { max-width: 100%; }
    .tiptop-logo-groot { font-size: 4rem; }

    /* Voordelen */
    .voordelen {
        grid-template-columns: 1fr 1fr;
        padding: 0 12px;
        gap: 12px;
        margin-bottom: 20px;
    }

    .voordeel { padding: 18px 12px; }

    /* CTA banner */
    .cta-banner,
    .bespannen-banner {
        margin: 0 12px 20px;
        padding: 32px 20px;
        border-radius: 14px;
    }

    /* Pagina titel */
    .pagina-titel {
        margin: 75px auto 20px;
        padding: 20px 14px 0;
    }

    /* Prijzen: 1 kolom op klein scherm */
    .prijzen-grid {
        grid-template-columns: 1fr;
        padding: 0 12px;
        gap: 14px;
    }

    /* Extra diensten: 1 kolom */
    .extra-grid {
        grid-template-columns: 1fr;
    }

    .extra-diensten { padding: 0 12px; }

    /* Calculator */
    .calculator {
        margin: 0 12px 40px;
        padding: 22px 16px;
    }

    /* Quiz */
    .quiz-container {
        margin: 0 12px 50px;
        padding: 24px 18px;
    }

    .quiz-btn { padding: 12px 14px; font-size: 0.9rem; }

    /* Team slider */
    .draai-sectie { padding: 0 12px; }
    .draai-track img { height: 200px; }
    .pijl { width: 36px; height: 36px; font-size: 1.3rem; }

    /* Team grid */
    .team-grid {
        padding: 0 12px;
        gap: 12px;
    }

    .team-kaart { width: calc(50% - 6px); }

    /* Contact */
    .contact-kaart {
        margin: 75px 12px 40px;
        padding: 26px 16px;
    }

    /* Checkboxes: 1 kolom op klein scherm */
    .form-checkboxes {
        grid-template-columns: 1fr;
    }

    /* WhatsApp: alleen icon op mobiel */
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-label { display: none; }
}

@media (max-width: 400px) {
    .voordelen { grid-template-columns: 1fr; }
    .team-kaart { width: 100%; max-width: 280px; }
}


.tiptop {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 30px;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
}

.tiptop-foto {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.tiptop-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.tiptop-content {
    position: relative;
    z-index: 2;
    padding: 40px 36px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tiptop-logo-img {
    width: 90px;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.tiptop-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.4rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 12px;
}

.tiptop-content h1 span { color: var(--oranje); }

.tiptop-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 420px;
    opacity: 0.92;
}

@media (max-width: 700px) {
    .tiptop {
        margin: 72px 12px 20px;
        height: 360px;
        border-radius: 16px;
    }

    .tiptop-content {
        padding: 28px 20px;
    }
}

.nav-logo {
    height: 32px;
    width: auto;
    vertical-align: middle;
    margin-right: 6px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}
/* Adres uitklap */
.adres-uitklap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    overflow: hidden;
}

.adres-uitklap.open {
    grid-template-rows: 1fr;
}

.adres-uitklap-inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
}

.adres-info {
    font-size: 0.85rem;
    color: #888;
    margin-top: 4px;
}

.contact-verstuur {
    background: var(--oranje);
    color: white;
    border: none;
    padding: 13px 28px;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
    margin-top: 6px;
}

.contact-verstuur:hover {
    background: var(--oranje-dark);
    transform: translateY(-2px);
}
.checkbox-label input[type="checkbox"] {
    appearance: auto;
    -webkit-appearance: checkbox;
    width: 18px;
    height: 18px;
    accent-color: var(--oranje);
    cursor: pointer;
    flex-shrink: 0;
}
.footer-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 12px;
    opacity: 0.9;
}
