/* Instrument Sans via Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

/* Minimale reset – vervangt Tailwind preflight */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', 'Noto Color Emoji';
    --main-color: #2d7a3a;
    --accent-color: #b37c3f;
    --ink-color: #1f2a24;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-sans);
    box-sizing: border-box;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.1rem clamp(1rem, 4vw, 3rem);
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(0.35rem, 2vw, 1rem);
    margin: 0;
    padding: 0;
}

nav ul li a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 650;
    letter-spacing: 0.03em;
    transition: background-color 0.2s, color 0.2s, opacity 0.2s;
    position: relative;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    color: white;
}

nav ul li a i {
    margin-right: 0.4rem;
}

nav ul li a:hover {
    opacity: 0.82;
}

nav ul li a.active {
    font-weight: 800;
}

.nav-brand,
.nav-cta {
    color: inherit;
    text-decoration: none;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: max-content;
    font-weight: 800;
    letter-spacing: 0;
}

.nav-brand__mark {
    display: grid;
    place-items: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 12px 24px rgba(79, 52, 26, 0.22);
}

.nav-brand__text {
    font-size: clamp(0.95rem, 2vw, 1.12rem);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    padding: 0.7rem 1.05rem;
    border-radius: 999px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 750;
    box-shadow: 0 12px 28px rgba(45, 122, 58, 0.24);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    background-color: #235f2c;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(45, 122, 58, 0.3);
}

nav.nav-transparent {
    position: absolute;
    background-color: transparent;
    color: #fff;
}

nav.nav-transparent .nav-brand__mark {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
}

nav.nav-transparent ul li a.active,
nav.nav-transparent ul li a:hover {
    background-color: rgba(255, 255, 255, 0.16);
}

nav.nav-transparent .nav-cta {
    background-color: #fff;
    color: var(--ink-color);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

nav.nav-solid {
    position: relative;
    color: var(--ink-color);
    background:
            linear-gradient(90deg, rgba(179, 124, 63, 0.12), rgba(45, 122, 58, 0.1)),
            #fff;
    border-bottom: 1px solid rgba(31, 42, 36, 0.08);
    box-shadow: 0 12px 30px rgba(31, 42, 36, 0.08);
}

nav.nav-solid ul li a {
    color: #46534b;
}

nav.nav-solid ul li a.active,
nav.nav-solid ul li a:hover {
    background-color: rgba(45, 122, 58, 0.12);
    color: #1f5f2b;
}

header {
    position: relative;
    min-height: 90vh;
}

.header-image {
    position: absolute;
    background-size: cover;
    background-position: 85%;
    width: 100%;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.header-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    padding: 0.7rem 1.05rem;
    border-radius: 999px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 750;
    box-shadow: 0 12px 28px rgba(45, 122, 58, 0.24);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    width: 50%;
    bottom: 0;
}

.header-cta:hover {
    background-color: #235f2c;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(45, 122, 58, 0.3);
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
    width: 100%;
    max-width: 1200px;
}

.header-left h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
}

.header-divider {
    width: 2px;
    height: 250px;
    background-color: #fff;
    flex-shrink: 0;
}

.header-right {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 400px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #5a5a5a !important;
}

.container h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2d7a3a;
    padding-left: 1rem;
}

.container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.hero-intro-section {
    padding: 0 0 4rem;
    border-bottom: 1px solid #e8e8e8;
}

.hero-intro-section p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-intro-section p:last-child {
    margin-bottom: 0;
}

.hero-intro-section em {
    font-style: normal;
    font-weight: 600;
    color: #111;
}

.full-width-section {
    background: linear-gradient(135deg, #2d7a3a 0%, #3b7a57 100%);
    padding: 6rem 0;
}

.full-width-section__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.full-width-section__content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.full-width-section__content a {
    padding: 1rem 3rem;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #fff;
}

/* ── Speurtochten carousel ── */
.speurtochten-section {
    background-color: #f5f5f5;
    overflow: hidden;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    display: flex;
    flex: 1;
    border-left: 4px solid #2d7a3a;
    padding-left: 1rem;
    color: #5a5a5a;
}

.splide__list {
    padding: 1rem 0 1.5rem !important;
}

.splide__track {
    overflow: visible !important;
}

.speurtocht-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.14);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.speurtocht-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.speurtocht-card__image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.speurtocht-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.speurtocht-card__badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #2d7a3a;
}

.speurtocht-card__body h3 {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.speurtocht-card__body p {
    font-size: 0.9rem;
    color: #dedfe0;
    line-height: 1.6;
    flex: 1;
}

.speurtocht-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: #dedfe0;
}

.speurtocht-card__btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: #2d7a3a;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.2s;
}

.speurtocht-card__btn:hover {
    background-color: #379e49;
    border-color: #235f2c;
}

.dood-van-de-graaf {
    background-color: #B37C3F;
}

.feest-op-het-kasteel {
    background-color: #3B7A57;
}

footer {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(circle at top left, rgba(179, 124, 63, 0.24), transparent 34rem),
            linear-gradient(135deg, #17241c 0%, #1f3d2a 52%, #16251d 100%);
    color: #d8e0da;
    padding: 4.5rem clamp(1rem, 4vw, 3rem) 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(16rem, 1.25fr) repeat(3, minmax(8rem, 0.65fr));
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.footer-brand__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: 0;
}

.footer-brand__mark {
    display: grid;
    place-items: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 18px 36px rgba(12, 18, 14, 0.32);
}

.footer-brand p {
    max-width: 25rem;
    margin: 0;
    color: #b8c7bd;
    font-size: 0.98rem;
    line-height: 1.75;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    background-color: #fff;
    color: var(--ink-color);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.footer-cta:hover {
    background-color: #f6efe5;
    transform: translateY(-1px);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.28);
}

.footer-section h3 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    height: 2px;
    border-radius: 999px;
    background-color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #b8c7bd;
    text-decoration: none;
    font-size: 0.94rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 0.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    color: #93a397;
}

.footer-bottom p {
    margin: 0;
}

/* Contact form sectie */

.form-alert {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-alert--success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-alert--error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.contact-form-section {
    padding: 5rem 0 6.5rem;
    background:
            linear-gradient(180deg, #f6f3ee 0%, #ffffff 100%);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.contact-panel__intro,
.contact-panel__form {
    border-radius: 8px;
}

.contact-panel__intro {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background:
            linear-gradient(135deg, rgba(23, 36, 28, 0.94), rgba(31, 61, 42, 0.92)),
            url('../files/uploads/temp.png') center / cover;
    color: #fff;
    box-shadow: 0 24px 48px rgba(31, 42, 36, 0.18);
}

.contact-panel__intro::after {
    content: '';
    position: absolute;
    inset: auto 1.5rem 1.5rem auto;
    width: 5.5rem;
    height: 5.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.contact-panel__eyebrow {
    display: inline-flex;
    margin-bottom: 1.2rem;
    color: #f3d9b9;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-panel__intro h2 {
    margin: 0 0 1rem;
    max-width: 24rem;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.08;
}

.contact-panel__intro p {
    max-width: 28rem;
    margin: 0;
    color: #dbe6dd;
    font-size: 1rem;
    line-height: 1.75;
}

.contact-panel__details {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.contact-panel__details span {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #eef5ef;
    font-size: 0.92rem;
    line-height: 1.45;
}

.contact-panel__details span::before {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.4rem;
    border-radius: 50%;
    background-color: var(--accent-color);
    flex: 0 0 auto;
}

.contact-panel__form {
    padding: clamp(1.25rem, 4vw, 2.25rem);
    background-color: #fff;
    border: 1px solid rgba(31, 42, 36, 0.08);
    box-shadow: 0 24px 54px rgba(31, 42, 36, 0.12);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group:nth-child(3),
.form-group:nth-child(4) {
    grid-column: 1 / -1;
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: start;
}

.contact-form label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ink-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 0.95rem 1rem;
    border: 1.5px solid #d9ded8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fbfaf7;
    color: #222;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8a958d;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #2d7a3a;
    box-shadow: 0 0 0 3px rgba(45, 122, 58, 0.12);
    background-color: #fff;
    outline: none;
    transform: translateY(-1px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form__btn {
    padding: 0.95rem 1.6rem;
    background-color: #2d7a3a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 850;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-shadow: 0 14px 30px rgba(45, 122, 58, 0.24);
}

.contact-form__btn:hover {
    background-color: #235f2c;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(45, 122, 58, 0.3);
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: inherit;
    font-size: 1.35rem;
    line-height: 1;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.nav-hamburger:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

nav.nav-transparent .nav-hamburger:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 760px) {
    /* ── Nav ── */
    .nav-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    nav {
        flex-wrap: wrap;
        padding-block: 0.9rem;
    }

    nav.nav-transparent {
        position: relative;
        background: linear-gradient(135deg, #17241c, #1f3d2a);
    }

    nav ul,
    .nav-cta {
        display: none;
        width: 100%;
    }

    nav.nav-open ul {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.25rem 0 0.75rem;
    }

    nav.nav-open ul li a {
        padding: 0.75rem 0.85rem;
        border-radius: 8px;
        width: 100%;
    }

    nav.nav-transparent ul li a {
        color: #fff;
    }

    nav.nav-transparent ul li a.active,
    nav.nav-transparent ul li a:hover {
        background-color: rgba(255, 255, 255, 0.12);
    }

    nav.nav-open .nav-cta {
        display: inline-flex;
        justify-content: center;
        margin-bottom: 0.75rem;
    }

    nav.nav-transparent.nav-open .nav-cta {
        background-color: var(--accent-color);
        color: #fff;
    }

    .nav-brand__text {
        max-width: 11rem;
        line-height: 1.15;
    }

    /* ── Header ── */
    header {
        display: flex;
        flex-direction: column;
        min-height: 80vh;
    }

    .header-image {
        flex: 1;
        height: auto;
        min-height: 80vh;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0 1.5rem;
        width: calc(100% - 3rem);
    }

    .header-divider {
        display: none;
    }

    .header-left h1 {
        white-space: normal;
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .header-right {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* ── Speurtocht cards ── */
    .speurtochten-section {
        padding: 1.5rem 0;
        overflow: hidden;
    }

    .speurtocht-card__body {
        padding: 1rem;
    }

    .speurtocht-card__image {
        height: 160px;
    }

    .speurtocht-card__meta {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    /* ── Footer ── */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        padding-bottom: 0.5rem;
    }

    .footer-bottom {
        justify-content: flex-start;
        line-height: 1.6;
    }

    /* ── Contact ── */
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form button,
    .form-group:nth-child(4),
    .form-group:nth-child(5) {
        grid-column: auto;
    }
}

.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f6f3ee 0%, #ffffff 100%);
}
.error-box {
    text-align: center;
    max-width: 520px;
}
.error-code {
    font-size: clamp(5rem, 20vw, 9rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 3px var(--main-color);
    line-height: 1;
    margin: 0 0 0.5rem;
}
.error-box h1 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--ink-color);
    margin: 0 0 1rem;
}
.error-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2rem;
}
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.error-btn--primary {
    background-color: var(--main-color);
    color: #fff;
    box-shadow: 0 12px 28px rgba(45, 122, 58, 0.24);
}
.error-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(45, 122, 58, 0.32);
}
.error-btn--secondary {
    background-color: transparent;
    color: var(--ink-color);
    border: 2px solid rgba(31, 42, 36, 0.2);
}
.error-btn--secondary:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.sitemap-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #f6f3ee 0%, #ffffff 100%);
}
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.sitemap-group h2 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin: 0 0 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(179, 124, 63, 0.2);
}
.sitemap-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.sitemap-group ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #46534b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
}
.sitemap-group ul li a i {
    color: var(--main-color);
    font-size: 0.75rem;
    width: 1rem;
    text-align: center;
}
.sitemap-group ul li a:hover {
    color: var(--main-color);
    padding-left: 0.25rem;
}

.speurtocht-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    align-items: flex-start;
}
.speurtocht-detail__image {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 500px;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.speurtocht-detail__body {
    flex: 2 1 400px;
    min-width: 280px;
    color: #5a5a5a !important;
}
.speurtocht-detail__meta {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}
.speurtocht-card__btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
@media (max-width: 900px) {
    .speurtocht-detail {
        flex-direction: column;
        align-items: stretch;
    }
    .speurtocht-detail__image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}Q