/* ============================================= */
/* GLOBALE STYLING & RESET */
/* ============================================= */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Modernere font */
    background-color: #e6f0f4; /* Zeer lichte, zachte blauwgrijze achtergrond */
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* CSS Variabelen voor gemakkelijke kleurwijziging */
:root {
    --primary-color: #1c548d; /* Donkerblauw - Primaire kleur */
    --accent-color: #ff9800; /* Oranje/Amber - Accentkleur voor highlight */
    --background-light: #ffffff;
    --secondary-bg: #f0f8ff; /* Zeer lichtblauw voor kaarten */
}

/* Hoofdcontainer */
.container {
    max-width: 1000px; 
    margin: 0 auto; /* Centreert de inhoud */
    padding: 20px;
}

/* === HERO/HEADER SECTIE (De grafische toevoeging) === */
header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--background-light) 100%);
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05); /* Subtle lift */
}

header h1 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    /* Dit kleine visuele accent bootst een 'graphic' na */
    display: inline-block; 
    position: relative;
    padding-bottom: 5px;
}
header h1::after {
    content: '';
    display: block;
    width: 50%; /* De grafische lijn */
    height: 4px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Intro Sectie Styling */
.introduction {
    padding: 20px 0;
    text-align: center;
    margin-bottom: 50px;
}

.introduction p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Sectie Titel (Links) */
h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    border-bottom: 1px dashed #ccc;
}

/* De linklijst (Layout) */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Grotere ruimte tussen de kaarten */
    margin-top: 20px;
    align-items: center;
}

/* Individuele Link Card Styling */
.link-item {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Grotere, zachte schaduw */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 500px; /* Beperkt de linkkaarten */
    text-align: center;
    border: none;
    display: flex; /* Maakt het mogelijk om icon en tekst naast elkaar te zetten */
    align-items: center; /* Centreert de elementen verticaal */
    gap: 20px; /* Ruimte tussen icoon en tekst */
}

/* Icon Styling */
.link-icon {
    flex-shrink: 0; /* Voorkomt dat het icoon kleiner wordt */
    width: 40px;
    height: 40px;
    background-color: var(--secondary-bg);
    border-radius: 50%; /* Maakt het een perfecte cirkel */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.link-icon img {
    max-width: 80%;
    max-height: 80%;
    display: block;
}

/* Link Tekst Styling (Nu binnen de flex box) */
.link-info-text {
    flex-grow: 1; /* Laat de tekst alle overgebleven ruimte innemen */
}

.link-info-text a {
    display: block; /* Zorgt ervoor dat de link de ruimte inneemt */
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
}

/* Hover effect: Zorgt voor een 'pop' */
.link-item:hover {
    transform: translateY(-5px); /* Licht omhoog bewegen */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--secondary-bg);
}

/* Link Tekst Styling */
.link-item a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    padding: 10px 0;
    transition: color 0.3s;
}

.link-item a:hover {
    color: var(--accent-color); /* Accentkleur bij hover */
    text-decoration: none;
}

/* Media Query voor Responsiviteit (Desktop vs. Mobiel) */
@media (max-width: 768px) {
    /* Op mobiel wordt de grotere container netjes gecompresseerd */
    .link-item {
        max-width: 100%; 
        text-align: left; /* Links links uitlijnen op klein scherm */
    }
    header h1 {
        font-size: 2.5em;
    }
    .introduction p {
        font-size: 1.1em;
    }
}