:root {
    --primary: #4272c3; /* afgeleid van je logo */
    --primary-light: #7399dc;
    --text: #1a1a1a;
    --muted: #666;
    --bg: #ededed;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    color: var(--text);
    background: white;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}

/* NAV */
.header {
    border-bottom: 1px solid #eee;
    background: white;
    position: sticky;
    top: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--text);
}

.logo {
    height: 60px;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text h1 {
    font-size: 2.5rem;
}

.hero-text h2 {
    color: var(--primary);
    margin: 0.5rem 0 1rem;
}

.hero-image img {
    width: 220px;
    border-radius: 50%;
}

/* SECTIONS */
.section {
    padding: 4rem 2rem;
    scroll-margin-top: 80px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* CARD */
.card {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: 10px;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-light);
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
}