:root {
    --blue-950: #0f3154;
    --blue-900: #173f68;
    --blue-800: #1f5587;
    --blue-700: #2d6ea2;
    --blue-600: #3c84ba;
    --blue-100: #eaf3fb;
    --blue-050: #f7fbff;
    --text: #213547;
    --muted: #617487;
    --white: #ffffff;
    --line: #d7e4ef;
    --shadow: 0 18px 38px rgba(26, 70, 110, 0.15);
    --shadow-strong: 0 24px 46px rgba(26, 70, 110, 0.22);
    --radius: 18px;
    --page-max: 1600px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.55;
}

a {
    color: var(--blue-800);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(95%, var(--page-max));
    margin: 0 auto;
}

/* Bovenbalk */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(23, 63, 104, 0.08);
    box-shadow: 0 6px 18px rgba(23, 63, 104, 0.045);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    height: 70px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    color: var(--text);
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 999px;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--blue-100);
    color: var(--blue-900);
    text-decoration: none;
}

.main-nav a:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--blue-900);
    color: white;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 24px;
    cursor: pointer;
}

/* Banner */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,0.14), transparent 26%),
        linear-gradient(135deg, #1e5587 0%, #438dc3 55%, #1a436f 100%);
}

.hero-banner-full {
    min-height: clamp(220px, 18vw, 340px);
    width: 100%;
    background-image: url("../images/hero-banner.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: drop-shadow(0 10px 12px rgba(0,0,0,0.08));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 6% 28%, rgba(255,255,255,0.18), transparent 7%),
        radial-gradient(circle at 92% 32%, rgba(255,255,255,0.11), transparent 8%);
    pointer-events: none;
    z-index: 2;
}

/* Golvende witte onderrand */
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 76px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,68 C150,100 320,104 480,82 C640,60 780,26 932,30 C1100,34 1240,80 1440,52 L1440,120 L0,120 Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 3;
}

/* Intro */
.welcome {
    background: #ffffff;
    text-align: center;
    margin-top: -4px;
    padding: 32px 0 16px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--blue-100);
    color: var(--blue-900);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(35, 88, 132, 0.07);
}

h1 {
    margin: 14px auto 12px;
    color: var(--blue-900);
    font-size: clamp(32px, 3.3vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.welcome p {
    color: var(--muted);
    max-width: 880px;
    margin: 0 auto;
    font-size: 18px;
}

.quick-links {
    margin: 30px auto 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    max-width: 1100px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    gap: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: 0 8px 20px rgba(35, 88, 132, 0.08);
    color: var(--blue-900);
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.quick-link:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 85, 135, 0.22);
    box-shadow: 0 12px 26px rgba(35, 88, 132, 0.12);
    text-decoration: none;
}

.quick-link span {
    font-size: 24px;
}

/* Kaarten */
.cards {
    background: #ffffff;
    padding: 34px 0 68px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: clamp(22px, 2vw, 36px);
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(31, 85, 135, 0.22);
    box-shadow: var(--shadow-strong);
    text-decoration: none;
}

.card-image {
    height: clamp(185px, 13vw, 245px);
    position: relative;
    overflow: hidden;
    background: var(--blue-100);
}

.card-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(23,63,104,0), rgba(23,63,104,0.12));
    pointer-events: none;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.24s ease;
}

.card:hover .card-image img {
    transform: scale(1.035);
}

/* Badge volledig op de foto */
.card-badge {
    position: absolute;
    left: 18px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
    color: white;
    border: 4px solid rgba(255,255,255,0.92);
    box-shadow: 0 10px 20px rgba(23,63,104,0.22);
    font-size: 24px;
    z-index: 2;
}

.card-badge::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.badge-paw::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='%23ffffff'%3E%3Cellipse cx='18' cy='18' rx='6' ry='8'/%3E%3Cellipse cx='30' cy='13' rx='6' ry='8'/%3E%3Cellipse cx='44' cy='18' rx='6' ry='8'/%3E%3Cellipse cx='52' cy='30' rx='6' ry='8' transform='rotate(22 52 30)'/%3E%3Cpath d='M32 28c-9 0-16 8-16 16 0 6 4 10 10 10 3 0 5-1 6-2 1 1 3 2 6 2 6 0 10-4 10-10 0-8-7-16-16-16z'/%3E%3C/g%3E%3C/svg%3E");
}

.badge-cat::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23ffffff' d='M14 24l3-12 10 7c2-1 4-1 5-1s3 0 5 1l10-7 3 12c2 3 4 7 4 12 0 12-10 22-22 22S10 48 10 36c0-5 2-9 4-12zm13 15a3 3 0 100 6 3 3 0 000-6zm10 0a3 3 0 100 6 3 3 0 000-6zm-9 9c2 2 8 2 10 0 1-1 0-2-1-2h-8c-1 0-2 1-1 2zm4-8l2-3h-4l2 3z'/%3E%3C/svg%3E");
}

.badge-heart::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23ffffff' d='M32 56 9 34C2 27 2 16 10 10c6-5 15-4 22 4 7-8 16-9 22-4 8 6 8 17 1 24L32 56z'/%3E%3C/svg%3E");
}

.card-content {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card h2 {
    margin: 0 0 9px;
    color: var(--blue-900);
    font-size: clamp(21px, 1.45vw, 25px);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.card p {
    margin: 0 0 24px;
    color: var(--muted);
    flex: 1;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 42px;
    padding: 9px 17px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    color: white;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    box-shadow: 0 8px 14px rgba(23,63,104,0.16);
}

.button:hover {
    color: white;
    text-decoration: none;
    filter: brightness(1.03);
}

/* Algemene pagina's */
.content-page {
    padding: 54px 0 70px;
}

.page-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 44px);
}

.page-card h1 {
    text-align: left;
    margin-top: 0;
}

.page-card h2 {
    color: var(--blue-900);
    margin-top: 34px;
}

.info-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.info-item {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--blue-050);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 28px;
    margin-top: 28px;
}

.form {
    display: grid;
    gap: 14px;
}

.form label {
    font-weight: 800;
    color: var(--blue-900);
}

.form input,
.form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
}

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

.notice {
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff9e8;
    border: 1px solid #f1d997;
    color: #684e11;
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(255,255,255,0.14), transparent 16%),
        radial-gradient(circle at 92% 75%, rgba(255,255,255,0.10), transparent 18%),
        linear-gradient(135deg, rgba(23,63,104,0.98), rgba(36,107,160,0.96));
    color: white;
    padding: 30px 0;
}

.site-footer::after {
    content: "🐈  🐕";
    position: absolute;
    right: 7%;
    bottom: -18px;
    font-size: 88px;
    line-height: 1;
    opacity: 0.10;
    filter: grayscale(1);
    pointer-events: none;
}

.site-footer a {
    color: white;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr) minmax(320px, 1.15fr);
    align-items: center;
    gap: 24px;
}

.footer-block {
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 88px;
    padding-right: 22px;
    border-right: 1px solid rgba(255,255,255,0.24);
    font-size: 17px;
}

.footer-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.34);
    background: rgba(255,255,255,0.09);
    font-size: 25px;
}

.footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.footer-actions a {
    width: 92px;
    height: 78px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    gap: 6px;
    color: white;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.28);
    font-weight: 800;
    transition: transform 0.18s ease, background 0.18s ease;
}

.footer-actions a span {
    font-size: 25px;
}

.footer-actions a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.15);
    text-decoration: none;
}

/* Groot scherm: bewust vier kaarten naast elkaar */
@media (min-width: 1180px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Notebook en tablet */
@media (max-width: 1100px) {
    .container {
        width: min(94%, var(--page-max));
    }

    .header-inner {
        min-height: 78px;
    }

    .logo img {
        height: 62px;
    }

    .main-nav a {
        padding: 9px 11px;
    }

    .quick-links,
    .cards-grid,
    .footer-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-banner-full {
        min-height: clamp(190px, 22vw, 270px);
        background-size: cover;
        background-position: center center;
    }

    .hero::after {
        height: 58px;
    }

    .footer-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .footer-block:nth-child(2) {
        border-right: 0;
    }
}

/* Smartphone */
@media (max-width: 720px) {
    .container {
        width: calc(100% - 28px);
    }

    .header-inner {
        min-height: 72px;
    }

    .logo img {
        height: 50px;
        max-width: 245px;
        object-fit: contain;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        position: absolute;
        right: 14px;
        top: 74px;
        display: none;
        flex-direction: column;
        width: min(300px, calc(100vw - 28px));
        background: white;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 12px;
    }

    .menu-open .main-nav {
        display: flex;
    }

    .main-nav a {
        width: 100%;
    }

    .hero-banner-full {
        min-height: 170px;
        background-position: center center;
        background-size: auto 100%;
    }

    .hero::after {
        height: 40px;
    }

    .welcome {
        padding: 28px 0 10px;
    }

    .eyebrow {
        font-size: 13px;
        padding: 7px 12px;
    }

    h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .welcome p {
        font-size: 16px;
    }

    .quick-links,
    .cards-grid,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-links {
        max-width: 420px;
    }

    .cards {
        padding-top: 24px;
    }

    .card-image {
        height: 215px;
    }

    .card-badge {
        width: 50px;
        height: 50px;
        bottom: 12px;
        left: 14px;
    }

    .footer-block {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.22);
        padding-right: 0;
        padding-bottom: 18px;
    }

    .footer-actions {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-actions a {
        width: auto;
    }

    .site-footer::after {
        font-size: 58px;
        right: 4%;
    }
}

/* Zeer smalle smartphones */
@media (max-width: 420px) {
    .logo img {
        height: 44px;
        max-width: 220px;
    }

    .hero-banner-full {
        min-height: 150px;
        background-size: auto 100%;
    }

    h1 {
        font-size: 28px;
    }

    .quick-link {
        min-height: 64px;
    }

    .card-image {
        height: 190px;
    }

    .footer-actions {
        grid-template-columns: 1fr;
    }

    .footer-actions a {
        height: 64px;
    }
}


/* Leesbaarheid juridische pagina's */
.legal-page {
    max-width: 1050px;
    margin: 0 auto;
}

.legal-page .lead {
    font-size: 18px;
    color: var(--muted);
    margin-top: 0;
}

.legal-page ul {
    margin-top: 10px;
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-date {
    margin-top: 34px;
    font-style: italic;
    color: var(--muted);
}


/* Cookiebeleid tabel */
.cookie-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 18px 0 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(26, 70, 110, 0.07);
}

.cookie-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #ffffff;
}

.cookie-table th,
.cookie-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.cookie-table th {
    color: var(--blue-900);
    background: var(--blue-100);
    font-weight: 800;
}

.cookie-table tr:last-child td {
    border-bottom: 0;
}

.legal-page h3 {
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--blue-800);
}


/* Cookiebanner en cookievoorkeuren */
.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(15, 49, 84, 0.24);
    padding: 18px;
}

.cookie-banner-content {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
}

.cookie-banner strong {
    color: var(--blue-900);
    font-size: 18px;
}

.cookie-banner p {
    margin: 5px 0 0;
    color: var(--muted);
}

.cookie-banner-actions,
.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.button-light {
    background: #ffffff;
    color: var(--blue-900);
    border: 1px solid var(--line);
    box-shadow: none;
}

.button-light:hover {
    color: var(--blue-900);
    background: var(--blue-100);
}

.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(15,49,84,0.46);
}

.cookie-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1002;
    transform: translate(-50%, -50%);
    width: min(720px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(15, 49, 84, 0.30);
    padding: 22px;
}

.cookie-modal-open {
    overflow: hidden;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.cookie-modal-header h2 {
    margin: 0;
    color: var(--blue-900);
}

.cookie-modal-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-900);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.cookie-option {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.cookie-option strong {
    color: var(--blue-900);
}

.cookie-option p {
    margin: 4px 0 0;
    color: var(--muted);
}

.cookie-option input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: var(--blue-800);
}

.always-active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--blue-100);
    color: var(--blue-900);
    font-weight: 800;
    white-space: nowrap;
}

.cookie-modal-actions {
    margin-top: 18px;
}

.cookie-settings-button {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 999;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    background: var(--blue-900);
    color: #ffffff;
    padding: 9px 14px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15,49,84,0.22);
    cursor: pointer;
}

.cookie-banner:not([hidden]) ~ .cookie-settings-button {
    display: none;
}

/* YouTube-placeholder */
.youtube-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), transparent 26%),
        linear-gradient(135deg, var(--blue-800), var(--blue-950));
    display: grid;
    place-items: center;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.youtube-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.youtube-placeholder-inner {
    text-align: center;
    padding: 24px;
    max-width: 560px;
}

.youtube-placeholder-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.30);
    font-size: 28px;
}

.youtube-placeholder-inner p {
    color: rgba(255,255,255,0.86);
    margin: 8px auto 18px;
}

@media (max-width: 820px) {
    .cookie-banner-content {
        grid-template-columns: 1fr;
    }

    .cookie-banner-actions {
        justify-content: flex-start;
    }

    .cookie-banner-actions .button,
    .cookie-modal-actions .button {
        width: 100%;
    }

    .cookie-modal-actions {
        display: grid;
    }
}

@media (max-width: 520px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px;
    }

    .cookie-option {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .always-active {
        justify-content: flex-start;
        width: fit-content;
    }

    .cookie-settings-button {
        left: 10px;
        bottom: 10px;
        font-size: 13px;
    }
}

pre {
    overflow-x: auto;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--blue-050);
    border: 1px solid var(--line);
}
code {
    font-family: Consolas, Monaco, "Courier New", monospace;
}


/* Toegankelijkheid */
.skip-link {
    position: absolute;
    left: 14px;
    top: 10px;
    z-index: 2000;
    transform: translateY(-160%);
    background: var(--blue-900);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15,49,84,0.24);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid #ffffff;
    outline-offset: 3px;
    text-decoration: none;
}

:focus {
    outline: 3px solid #ffbf47;
    outline-offset: 3px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 3px solid #ffbf47;
    outline-offset: 3px;
}

main:focus {
    outline: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-help {
    margin-top: 0;
    color: var(--muted);
}

.footer-legal-links {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.22);
    font-size: 15px;
}

.footer-legal-links a {
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* Witte footer-iconen */
.footer-icon::before,
.footer-link-icon::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.footer-icon-paw::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='%23ffffff'%3E%3Cellipse cx='18' cy='18' rx='6' ry='8'/%3E%3Cellipse cx='30' cy='13' rx='6' ry='8'/%3E%3Cellipse cx='44' cy='18' rx='6' ry='8'/%3E%3Cellipse cx='52' cy='30' rx='6' ry='8' transform='rotate(22 52 30)'/%3E%3Cpath d='M32 28c-9 0-16 8-16 16 0 6 4 10 10 10 3 0 5-1 6-2 1 1 3 2 6 2 6 0 10-4 10-10 0-8-7-16-16-16z'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-icon-info::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='32' cy='18' r='5'/%3E%3Cpath d='M27 28h10v22H27z'/%3E%3Cpath d='M24 50h16v4H24z'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-link-icon {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
}

.footer-link-mail::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23ffffff' d='M10 16h44a4 4 0 0 1 4 4v24a4 4 0 0 1-4 4H10a4 4 0 0 1-4-4V20a4 4 0 0 1 4-4zm22 16 20-12H12l20 12zm0 5L10 24v20h44V24L32 37z'/%3E%3C/svg%3E");
}

.footer-link-lock::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23ffffff' d='M20 28v-8c0-7 5-12 12-12s12 5 12 12v8h4a4 4 0 0 1 4 4v20a4 4 0 0 1-4 4H16a4 4 0 0 1-4-4V32a4 4 0 0 1 4-4h4zm6 0h12v-8c0-4-2-6-6-6s-6 2-6 6v8zm6 10a4 4 0 0 1 4 4c0 2-1 3-2 4v6h-4v-6c-1-1-2-2-2-4a4 4 0 0 1 4-4z'/%3E%3C/svg%3E");
}

.footer-link-cookie::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23ffffff' d='M38 8c0 5 4 9 9 9 3 0 5-1 7-3 1 2 2 5 2 8 0 19-15 34-34 34S-2 41-2 22 13-12 32-12c3 0 6 1 8 2-1 2-2 5-2 8zm-10 7a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm-10 12a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm14 10a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm12-8a4 4 0 1 0 0 8 4 4 0 0 0 0-8z' transform='translate(6 12)'/%3E%3C/svg%3E");
}


/* BHP-startpagina */
.bhp-welcome {
    padding-bottom: 8px;
}

.bhp-feature-section {
    padding: 28px 0 76px;
    background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.bhp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.bhp-feature-card {
    display: flex;
    gap: 18px;
    min-height: 156px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.94);
    border: 1px solid #dbeafe;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(15, 95, 150, 0.09);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.bhp-feature-card:hover {
    transform: translateY(-4px);
    border-color: #9ed8ff;
    box-shadow: 0 18px 38px rgba(15, 95, 150, 0.15);
    text-decoration: none;
}

.bhp-feature-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    padding: 12px;
    background: #eaf6ff;
}

.bhp-feature-card h2 {
    margin: 2px 0 8px;
    font-size: 20px;
    line-height: 1.22;
    color: var(--blue-900);
}

.bhp-feature-card p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--muted);
}

.bhp-feature-arrow {
    display: inline-block;
    margin-top: 12px;
    color: var(--blue-800);
    font-weight: 800;
    font-size: 14px;
}

/* BHP-footer: enkel logo/naam zoals gevraagd */
.site-footer-simple {
    padding: 28px 0;
}

.site-footer-simple::after {
    content: none;
}

.footer-simple-inner {
    position: relative;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bhp-logo {
    height: 82px;
    width: auto;
    max-width: min(440px, 92vw);
}

.footer-simple-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.footer-simple-actions a {
    width: 88px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.34);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(15,49,84,0.10);
}

.footer-simple-actions a:hover,
.footer-simple-actions a:focus-visible {
    background: rgba(255,255,255,0.18);
    text-decoration: none;
}

@media (max-width: 920px) {
    .bhp-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .bhp-feature-section {
        padding: 22px 0 48px;
    }
    .bhp-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .bhp-feature-card {
        min-height: auto;
        padding: 18px;
    }
    .footer-bhp-logo {
        height: 68px;
    }
    .footer-simple-inner {
        min-height: 190px;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
    }
    .footer-simple-actions {
        position: static;
        transform: none;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-simple-actions a {
        width: 82px;
        height: 68px;
        font-size: 14px;
    }
}


/* Fokprogramma: duidelijk onderscheid tussen kleine l en hoofdletter I */
.fp-page,
.fp-page button,
.fp-page input,
.fp-page select,
.fp-page textarea,
.fp-print-document {
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

@media print {
    .fp-print-document,
    .fp-print-document * {
        font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif !important;
    }
}
