@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
    --crème: #EFE3CE;
    --crème-licht: #F8F2E6;
    --espresso: #3B2620;
    --koffie: #6F4A34;
    --thee-groen: #5E7A4A;
    --koper: #C1793B;
    --wit: #FFFFFF;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--crème);
    color: var(--espresso);
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    line-height: 1.5;
}

h1, h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    margin: 0 0 0.4em 0;
}

a { color: var(--koper); }

.top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    border-bottom: 2px solid var(--espresso);
}

.top .logo {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--espresso);
    text-decoration: none;
}

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

.card {
    background: var(--wit);
    border: 2px solid var(--espresso);
    border-radius: 4px;
    padding: 32px;
}

label { display: block; font-weight: 500; margin-bottom: 6px; }

input, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--koffie);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background: var(--crème-licht);
    margin-bottom: 20px;
}

button, .knop {
    display: inline-block;
    background: var(--espresso);
    color: var(--wit);
    border: none;
    padding: 12px 24px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}
button:hover, .knop:hover { background: var(--koffie); }

.fout { color: #A13D2E; font-weight: 500; }
.melding { color: var(--thee-groen); font-weight: 500; }

.keuzes {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.keuze-kaart {
    flex: 1 1 260px;
    background: var(--wit);
    border: 2px solid var(--espresso);
    border-radius: 4px;
    padding: 28px;
    text-align: center;
    text-decoration: none;
    color: var(--espresso);
}
.keuze-kaart:hover { background: var(--crème-licht); }
.keuze-kaart svg { width: 90px; height: 90px; margin-bottom: 12px; }
.keuze-kaart h2 { margin-bottom: 4px; }

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    background: var(--wit);
}
th, td {
    border: 1px solid var(--koffie);
    padding: 10px 12px;
    text-align: left;
}
th {
    background: var(--espresso);
    color: var(--wit);
    font-family: 'Fraunces', serif;
    font-weight: 600;
}

.terug { display: inline-block; margin-top: 20px; }
