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

/* 2. Rustige, strakke achtergrond (Donker, maar comfortabel voor de ogen) */
body {
    min-height: 100vh;
    background-color: #bbe8c3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #01430d;
}

/* 3. De Hoofdtitel - Minimalistisch wit met lichte spatiëring */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
    color: #037e1a;
}

/* 4. Container voor de reiskoppelingen */
div {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Zorgt voor nette ruimte als je straks meer reizen toevoegt */
    width: 100%;
    max-width: 360px;
}

/* 5. De "Reiskaart" - Clean, strak en matig van kleur */
h3 {
    width: 100%;
    background-color: #51ea6d; /* Subtiel lichter dan de achtergrond */
    border: 1px solid #588eda; /* Zachte, strakke rand */
    border-radius: 12px;
    padding: 18px 24px;
    text-align: center;
    transition: all 0.25s ease;
}

/* Hover effect: Subtiele verschuiving en een rustig kleuraccent */
h3:hover {
    transform: translateY(-3px);
    border-color: #bbe8c3; /* Elegant blauw accent bij actie */
    background-color: #02480f;
}

/* 6. De Link */
h3 > a {
    color: #000000; /* Rustig grijs in ruststand */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    width: 100%;
    transition: color 0.25s ease;
}

/* De tekst licht op als je de kaart aanwijst */
h3:hover > a {
    color: #ffffff;
}