/* ====== Basis ====== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Quicksand", system-ui, sans-serif;
    background: linear-gradient(180deg, #e8f6ff, #f4fbff);
    color: #3a4a5a;
    line-height: 1.7;
}

/* ====== Navigatie ====== */
nav {
    background: #8ecaff; /* zacht babyblauw */
    padding: 1rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 4px solid #6bb8ff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    border-radius: 0 0 20px 20px;
}

nav a {
    color: #084b83;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: .3rem .6rem;
    border-radius: 8px;
    transition: background .2s ease, transform .15s ease;
}

nav a:hover {
    background: #cfe9ff;
    transform: translateY(-2px);
}

/* ====== Main content ====== */
main {
    max-width: 850px;
    margin: 2.5rem auto;
    background: #ffffffcc;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    animation: fadeIn .4s ease;
    border: 3px solid #d9f1ff;
}

main h1 {
    margin-top: 0;
    font-size: 2.2rem;
    color: #4da3ff;
    text-shadow: 1px 1px 0 #d9f1ff;
}



main h2 {
    font-size: 2rem;
    color: #4da3ff;
    margin-bottom: 1.5rem;
}

main p {
    font-size: 1.1rem;
}

/* Kleine speelse animatie */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ====== Footer ====== */
footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    background: #bfe4ff;
    color: #2d4a63;
    font-size: .95rem;
    border-radius: 20px 20px 0 0;
    border-top: 4px solid #9cd4ff;
}

footer a {
    color: #2d4a63;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: #1b2f40;
}

/* ====== Foto’s mooi afronden ====== */
img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 1rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 2fr));
    gap: 1.2rem;
}

/* ====== Galerij ====== */
.gallery {
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 3fr));
    gap: 1.2rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
