/* 1. Algemene Reset & Lettertype (Matcht met Home) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* 2. Achtergrond & Layout (Aangepast naar jouw dieprode kleur) */
body {
    min-height: 100vh;
    background-color: #a9d8ea;
    color: #000000;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 3. Titels */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f93f1;
    margin-bottom: 0.5rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4307c4; /* Zacht grijs voor de subtitel 'Sao Miguel' */
    margin-bottom: 2.5rem;
    text-align: center;
}

/* 4. De Container (Lijst zonder bolletjes) */
div {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px; 
    list-style: none;
}

/* 5. De Activiteiten (Aangepast naar jouw blauwe kaarten) */
li {
    width: 100%;
    background-color: #3a64bd;
    border: 1px solid #588eda;
    border-radius: 12px;
    transition: all 0.25s ease;
    overflow: hidden; /* Zorgt dat de link de hele kaart vult */
}

/* Hover effect: Matcht met de homepagina */
li:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
    background-color: #02285e;
    color: #a9d8ea;
}

/* 6. Styling voor de (Affiliate) Links (Zwarte tekst in ruststand) */
li a {
    display: block;
    padding: 20px 24px;
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    height: 100%;
    transition: color 0.25s ease;
}

/* De tekst wordt wit bij hover */
li:hover a {
    color: #ffffff;
}

/* Fallback voor als een li per ongeluk platte tekst bevat */
li:not(:has(a)) {
    padding: 20px 24px;
    color: #000000;
}

/* Extra styling voor de filterknoppen passend bij jouw kleurenschema */
        .filter-container {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid #588eda;
            background-color: #3a64bd;
            color: #ffffff;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        /* Hover effect op de filterknoppen */
        .filter-btn:hover {
            background-color: #02285e;
            border-color: #3b82f6;
            transform: translateY(-2px);
        }

        /* De knop die op dit moment actief is */
        .filter-btn.actief {
            background-color: #1f93f1;
            border-color: #1f93f1;
            color: #ffffff;
            box-shadow: 0 4px 10px rgba(31, 147, 241, 0.3);
        }

        /* Zorgt voor een nette uitlijning en spatiëring van de eilandgroepen */
        .eiland-sectie {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 40px;
        }