@charset "UTF-8";

/* 1. Global Reset & Box Sizing */
* {
    box-sizing: border-box; /* Zorgt dat padding de breedte niet vergroot */
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
}

/* 2. Layout Wrapper */
.main-wrapper {
    display: flex;
    flex-direction: column;   /* Stapelt de afbeeldingen boven de links */
    align-items: center;      /* Horizontale centrering */
    justify-content: center;  /* Verticale centrering */
    min-height: 100vh;
    padding: 40px 20px;       /* 20px zijwaartse 'buffer' zodat niets de rand raakt */
    width: 100%;
}

/* 3. Image Container & Row Logic */
.image-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 30px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;        /* Voorkomt dat de rij te breed wordt op ultra-wide schermen */
}

/* 4. Image Hover & Zoom Effect */
.image-container a {
    display: block;
    overflow: hidden;         /* Houdt de zoom binnen de kaders */
    border-radius: 8px; 
    text-decoration: none;
    transition: transform 0.3s ease;
}

.image-container img {
    max-width: 100%;          /* Cruciaal: afbeelding schaalt mee met de container */
    height: auto;
    display: block;
    transition: transform 0.4s ease-in-out;
}

.image-container a:hover img {
    transform: scale(1.05);   /* Subtiele zoom van 5% */
}

/* 5. Link List Styling */
.link-container {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.link-container a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.link-container a:hover {
    color: #000;
    text-decoration: underline;
}

/* 6. Responsive Design (Mobile &