/* je.llis.be — basisstijl.
   Bewust zonder externe lettertypen of bibliotheken: alles laadt van deze
   server, dus geen afhankelijkheid van derden en geen tracking. */

:root {
    --achtergrond:   #fbfaf8;
    --vlak:          #ffffff;
    --tekst:         #1c1b19;
    --tekst-zacht:   #5f5b54;
    --rand:          #e6e2db;
    --accent:        #a8552b;
    --accent-zacht:  #f4ebe4;
    --schaduw:       0 1px 2px rgba(28, 27, 25, .04), 0 8px 24px rgba(28, 27, 25, .05);
}

@media (prefers-color-scheme: dark) {
    :root {
        --achtergrond:  #14130f;
        --vlak:         #1d1c18;
        --tekst:        #f0ece5;
        --tekst-zacht:  #a8a196;
        --rand:         #2e2c26;
        --accent:       #e08a5c;
        --accent-zacht: #2a211b;
        --schaduw:      0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .25);
    }
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--achtergrond);
    color: var(--tekst);
    font: 16px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.omhulsel {
    max-width: 46rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- kop ---- */

header {
    padding: 5rem 0 3.5rem;
    border-bottom: 1px solid var(--rand);
}

.naam {
    margin: 0;
    font-size: clamp(2.4rem, 7vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.05;
}

.naam::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 3px;
    margin-top: 1.25rem;
    background: var(--accent);
    border-radius: 2px;
}

.onderschrift {
    margin: 1.25rem 0 0;
    font-size: 1.15rem;
    color: var(--tekst-zacht);
    max-width: 34rem;
}

/* ---- secties ---- */

section { padding: 3rem 0; }

h2 {
    margin: 0 0 1.25rem;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--tekst-zacht);
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- kaarten ---- */

.kaarten {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
}

.kaart {
    background: var(--vlak);
    border: 1px solid var(--rand);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--schaduw);
}

.kaart h3 {
    margin: 0 0 .5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.kaart p {
    margin: 0;
    font-size: .94rem;
    color: var(--tekst-zacht);
}

.kaart .merk {
    display: inline-block;
    margin-bottom: .9rem;
    padding: .18rem .6rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-zacht);
    border-radius: 99px;
}

/* ---- voet ---- */

footer {
    margin-top: 2rem;
    padding: 2.5rem 0 4rem;
    border-top: 1px solid var(--rand);
    font-size: .9rem;
    color: var(--tekst-zacht);
}

footer a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

footer a:hover { border-bottom-color: currentColor; }

.voet-rij {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    justify-content: space-between;
    align-items: baseline;
}

@media (max-width: 34rem) {
    header { padding: 3.5rem 0 2.5rem; }
    section { padding: 2.25rem 0; }
}
