:root {
    --dark-accent: #ff9f1c;
    --light-accent: #ffbf69;
    --white: #ffffff;
    --text: #222;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

/* Header */

.site-header {
    background: #ffffff;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    position: relative;
}

/* 🔧 Toegevoegd */
.site-header a {
    display: inline-block;
}

.site-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
}

/* Navigatie */

.main-nav {
    background: #f4f4f2;
    text-align: center;
    padding: 0.75rem 1rem;
}

.main-nav a {
    color: #222;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
}

.main-nav a:hover {
    text-decoration: underline;
}

.main-nav a.active {
    text-decoration: underline;
    font-weight: 600;
}

/* Mobiel */

@media (max-width: 600px) {
    .site-header {
        padding: 2rem 1rem 1.5rem;
    }

    .site-logo {
        max-width: 200px;
    }

    .main-nav a {
        display: inline-block;
        margin: 0.5rem;
    }
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

section p {
    margin: 0;
    line-height: 1.6;
}

section p + p {
    margin-top: 0;
}

section h2 {
    border-left: 6px solid var(--dark-accent);
    padding-left: 1rem;
}

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

.card {
    background: #f7f6f3;
    padding: 1.5rem;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */

footer {
    background: #111;
    color: #eee;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

footer a {
    color: #ffbf69;
    text-decoration-color: #ffbf69;
}

footer a:hover {
    color: #ff9f1c;
    text-decoration-color: #ff9f1c;
}

/* Algemene links */

a {
    color: #222;
    text-decoration: underline;
    text-decoration-color: #ff9f1c;
    text-underline-offset: 3px;
}

a:hover {
    color: #000;
    text-decoration-color: #ffbf69;
}

/* Taalwissel */

.language-switch {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    z-index: 10; /* 🔧 Toegevoegd */
}

.language-switch a,
.language-switch span {
    color: #222;
    text-decoration: none;
    font-weight: 500;
}

.language-switch .active {
    font-weight: 700;
}

.language-switch .separator {
    margin: 0 0.3rem;
}

.language-switch a:hover {
    text-decoration: underline;
    text-decoration-color: #ff9f1c;
}
