﻿/* ===== BASIS EN FONTS ===== */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #f5f7fb;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #2d7ff9;
}

.menu a {
    margin-left: 25px;
    font-weight: 500;
    transition: 0.2s;
}

    .menu a:hover {
        color: #2d7ff9;
    }

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #1e3a5f, #2d7ff9);
    color: white;
}

    .hero h1 {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 18px;
    }

/* ===== TRUST / SOCIAL PROOF ===== */
.trust {
    text-align: center;
    padding: 30px 20px;
}

.trust-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.trust-item {
    background: black;
    padding: 14px 22px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    min-width: 200px;
}

    .trust-item i {
        color: #2d7ff9;
    }

/* ===== QUIZ ===== */
.quiz-wrapper {
    padding: 40px 20px;
}

.quiz-card {
    max-width: 650px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.quiz-header {
    margin-bottom: 30px;
}

.step-indicator {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.progress {
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

#progress-bar {
    height: 8px;
    width: 0%;
    background: #2d7ff9;
    border-radius: 10px;
    transition: 0.4s;
}

.step {
    display: block;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

    .step.active {
        opacity: 1;
        transform: translateX(0);
        position: relative;
    }

.options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.option {
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
}

    .option:hover {
        border-color: #2d7ff9;
        background: #e6f0ff;
        transform: translateY(-3px);
    }

    .option i {
        font-size: 18px;
        color: #2d7ff9;
    }

input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
}

button {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    background: #2d7ff9;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

    button:hover {
        background: #1f63d6;
    }

/* ===== KERNWAARDEN FLEXIBEL ===== */
:root {
    --core-items: 5; /* Aantal kernwaarden per rij */
    --core-gap: 20px; /* Gap tussen items */
}

.core-values {
    display: flex;
    flex-wrap: wrap;
    gap: var(--core-gap);
    justify-content: flex-start; /* voorkomt dat laatste item op nieuwe rij valt */
}

.core-item {
    flex: 0 0 calc((100% - (var(--core-items) - 1) * var(--core-gap)) / var(--core-items));
    background: #fff;
    border-radius: 14px;
    padding: 30px 25px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

    .core-item:hover {
        transform: translateY(-8px);
    }

    .core-item i {
        font-size: 38px;
        color: #2d7ff9;
    }

    .core-item h3 {
        font-weight: 700;
        margin: 0;
        color: #1e3a5f;
        font-size: 18px;
    }

    .core-item p {
        font-size: 14px;
        line-height: 1.5;
        color: #444;
        max-width: 240px;
        margin: 0 auto;
        font-weight: 400;
    }

/* ===== FAQ ===== */
.faq {
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

    .faq h2 {
        font-size: 30px;
        color: #1e3a5f;
        margin-bottom: 30px;
        font-weight: 700;
        text-align: left;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.faq-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 280px;
    background: #e8f2fb;
    padding: 20px 18px;
    border-radius: 12px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    color: #1e3a5f;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    min-width: 280px;
}

    .faq-item strong {
        display: block;
        margin-top: 14px;
        margin-bottom: 8px;
        font-weight: 700;
        font-size: 15px;
        color: #164073;
    }

/* ===== FOOTER ===== */
.footer {
    background: #111;
    color: white;
    margin-top: 60px;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

    .footer-col a {
        color: #bbb;
        text-decoration: none;
        margin: 5px 0;
    }

        .footer-col a:hover {
            color: white;
        }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
    .menu {
        display: none;
    }

    .hero h1 {
        font-size: 28px;
    }

    .options {
        grid-template-columns: 1fr;
    }

    .core-values {
        flex-direction: column;
        align-items: center;
    }

    .core-item {
        flex: 1 1 90%;
    }

    .faq-container {
        flex-direction: column;
        max-width: 90%;
    }

    .faq-item {
        min-width: auto;
    }

    .faq h2 {
        text-align: center;
    }
}
