/* --- AANGEPAST --- */
/* Basisgrootte op 120% gezet, alle 'rem' waardes schalen mee */
html {
    font-size: 120%;
}

/* Algemene stijlen */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container voor centreren van de content */
.container {
    max-width: 800px; /* Was 800px */
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header en Navigatie */
header {
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav a {
    margin: 0 1rem;
    font-size: 1rem;
}

/* Hoofdinhoud */
main .main-image {
    margin-bottom: 2rem;
}

main .caption {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 0.5rem;
}

main .intro {
    text-align: left;
    margin-bottom: 3rem;
}

/* Kolommen voor projecten en blog */
.lists-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.list-column {
    flex: 1;
}

.list-column h2 {
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1.2px; /* Was 1px */
    border-bottom: 1px solid #eee; /* Laten we op 1px voor een strakke lijn */
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.list-item {
    margin-bottom: 1rem;
}

.list-item h3 {
    font-size: 1.1rem;
    margin: 0;
}

.list-item .meta {
    font-size: 0.8rem;
    color: #888;
    margin: 0.2rem 0 0 0;
}

.more-link {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.6px; /* Was 0.5px */
}

/* Footer met iconen */
footer {
    text-align: center;
    margin-top: 0rem;
    padding-top: 0rem;
    border-top: 1px solid #eee;
}

footer a {
    font-size: 1.5rem;
    color: #555;
    margin: 0 0.75rem;
}

footer a:hover {
    color: #000;
    text-decoration: none;
}

/* Mobiele weergave */



@media (max-width: 720px) {
    .lists-container {
        flex-direction: column;
        gap: 0;
    }
    
    .list-column {
        margin-bottom: 1rem;
    }

    header {
        flex-direction: column;
        gap: 1rem;
    }

    /* === VOEG DEZE CODE TOE === */
    header nav {
        /* Zorgt ervoor dat de knoppen netjes centreren en kunnen 'wrappen' als het echt niet past */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav a {
        margin: 0 0.5rem;  /* Verklein de horizontale ruimte tussen de knoppen */
        font-size: 0.9rem; /* Maak de tekst iets kleiner */
    }
    /* === EINDE TOEGEVOEGDE CODE === */
}

.slideshow-container {
    position: relative;
    margin-bottom: 1rem;
}

.slide {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 19px; /* Was 16px */
    color: white;
    font-weight: bold;
    font-size: 24px; /* Was 20px */
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    user-select: none;
    z-index: 2;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
}

.slide .caption {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 0.5rem;
}

.post-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.post-header h1 {
    margin-bottom: 0.25rem;
}

.post-meta {
    font-size: 0.9rem;
    color: #888;
}

.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}
