/* ============ VARIABELEN ============ */
:root {
    --kleur-donker: #1a1a1a;
    --kleur-oranje: #fa4e42;
    --kleur-grijs: #6b6b6b;
    --kleur-lichtgrijs: #f5f5f5;
    --kleur-wit: #ffffff;
}

/* ============ RESET ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--kleur-donker);
    line-height: 1.6;
    background: var(--kleur-wit);
}

/* ============ HEADER ============ */
header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #222;
    position: sticky;
    top: 0;
    background: #111;
    z-index: 100;
}

.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #aaa;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover, nav a.actief {
    color: var(--kleur-oranje);
}

/* ============ KNOPPEN ============ */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--kleur-oranje);
    color: white;
}

.btn-primary:hover {
    background: #e04438;
}

.btn-secondary {
    background: transparent;
    color: var(--kleur-donker);
    border: 2px solid var(--kleur-donker);
}

.btn-secondary:hover {
    background: var(--kleur-donker);
    color: white;
}

/* ============ FOOTER ============ */
footer {
    background: #111;
    color: #666;
    padding: 30px 40px;
    text-align: center;
    font-size: 14px;
}

/* ============ HERO SECTIE ============ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    align-items: center;
    padding: 60px 40px;
    gap: 60px;
}

.hero-tekst h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-tekst h1 span {
    color: var(--kleur-oranje);
}

.hero-tekst p {
    font-size: 20px;
    color: var(--kleur-grijs);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-foto {
    aspect-ratio: 6 / 3;
    border-radius: 12px;
    overflow: hidden;
}

.hero-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ HOE HET WERKT ============ */
.proces {
    background: var(--kleur-lichtgrijs);
    padding: 80px 40px;
    scroll-margin-top: 100px;
}

.sectie-titel {
    text-align: center;
    margin-bottom: 60px;
}

.sectie-titel h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.sectie-titel p {
    color: var(--kleur-grijs);
    font-size: 18px;
}

.proces-stappen {
    max-width: 1100px;
    margin: 0 auto;
}

.stap {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}

.stap:last-child {
    border-bottom: none;
}

.stap:nth-child(even) {
    flex-direction: row-reverse;
}

.stap-foto {
    flex: 1;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
}

.stap-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stap-foto-neil {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    border: 2px dashed #bbb;
    color: var(--kleur-grijs);
    font-size: 16px;
}

.stap-inhoud {
    flex: 1;
}

.stap-nummer {
    width: 50px;
    height: 50px;
    background: var(--kleur-oranje);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stap-inhoud h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.stap-inhoud p {
    color: var(--kleur-grijs);
    font-size: 16px;
    line-height: 1.7;
}

/* ============ VOOR WIE ============ */
.voor-wie {
    background: var(--kleur-donker);
    padding: 80px 40px;
    text-align: center;
}

.voor-wie h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: white;
}

.sectoren {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.sector {
    background: #2a2a2a;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 500;
    color: white;
}

/* ============ CONTACT ============ */
.contact {
    background: var(--kleur-lichtgrijs);
    padding: 80px 40px;
    text-align: center;
    scroll-margin-top: 100px;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--kleur-donker);
}

.contact p {
    color: var(--kleur-grijs);
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item span {
    display: block;
    color: var(--kleur-grijs);
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a, .contact-item strong {
    color: var(--kleur-donker);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--kleur-oranje);
}

/* ============ OVER MIJ PAGINA ============ */
.over-mij {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.over-mij h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.intro-rij {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.intro {
    font-size: 22px;
    color: var(--kleur-grijs);
    border-left: 4px solid var(--kleur-oranje);
    padding-left: 20px;
    flex: 1;
}

.foto-neil {
    aspect-ratio: 1 / 1;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.foto-neil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verhaal p {
    font-size: 18px;
    color: var(--kleur-grijs);
    margin-bottom: 24px;
    line-height: 1.8;
}

.verhaal strong {
    color: var(--kleur-donker);
}

/* ============ EINDWERK ============ */
.eindwerk {
    background: var(--kleur-lichtgrijs);
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.eindwerk-foto {
    aspect-ratio: 4 / 3;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.eindwerk-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eindwerk-tekst h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.eindwerk-tekst p {
    color: var(--kleur-grijs);
    font-size: 16px;
    line-height: 1.7;
}

/* ============ CTA ============ */
.cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--kleur-donker);
    border-radius: 12px;
    text-align: center;
}

.cta h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 12px;
}

.cta p {
    color: #aaa;
    margin-bottom: 24px;
}

.cta a {
    display: inline-block;
    padding: 14px 28px;
    background: var(--kleur-oranje);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}

.cta a:hover {
    background: #e04438;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-tekst p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-contact {
        justify-content: center;
    }

    .stap {
        flex-direction: column !important;
    }

    .eindwerk {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-tekst h1 {
        font-size: 32px;
    }

    .over-mij h1 {
        font-size: 32px;
    }

    .stap-foto {
        width: 100%;
    }

    .contact-info {
        gap: 30px;
    }

    header {
        flex-direction: column;
        gap: 20px;
    }

    nav a {
        margin: 0 15px;
    }
}
