:root {
    --kleur-achtergrond: #ffffff;
    --kleur-tekst: #1a1a1a;
    --kleur-primair: #2d6a4f;
    --kleur-primair-contrast: #ffffff;
    --kleur-zacht: #eaf4ef;
    --font-koppen: Georgia, 'Times New Roman', serif;
    --font-tekst: Arial, Helvetica, sans-serif;
    --radius: 4px;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: var(--kleur-achtergrond);
    color: var(--kleur-tekst);
    font-family: var(--font-tekst);
    font-size: 17px;
    line-height: 1.65;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--kleur-primair);
}
a:hover {
    text-decoration: underline;
}
h1, h2, h3, h4 {
    font-family: var(--font-koppen);
    line-height: 1.2;
    color: var(--kleur-tekst);
}
h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    margin-bottom: 0.75rem;
}
h2 {
    font-size: clamp(1.2rem, 3.5vw, 1.75rem);
    margin-bottom: 0.6rem;
}
h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 0.4rem;
}
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}
.sectie {
    padding: 2.5rem 0;
}
.sectie-zacht {
    background: var(--kleur-zacht);
}
.sectie-intro {
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 1.5rem;
    color: #444;
}
/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--kleur-primair);
    color: var(--kleur-primair-contrast);
    padding: 0.5rem 1rem;
    z-index: 999;
    font-size: 1rem;
    border-radius: 0 0 var(--radius) 0;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}
/* HEADER */
.site-header {
    background: #1b4332;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    min-height: 64px;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-naam {
    font-family: var(--font-koppen);
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.04em;
}
.logo-tagline {
    font-family: var(--font-tekst);
    font-size: 0.7rem;
    color: #a8d5bc;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
}
nav[data-pagira-menu] {
    flex: 1;
}
nav[data-pagira-menu] ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem;
    align-items: center;
}
nav[data-pagira-menu] > ul > li {
    position: relative;
}
nav[data-pagira-menu] > ul > li > a {
    display: block;
    padding: 0.55rem 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-family: var(--font-tekst);
    border-radius: var(--radius);
    white-space: nowrap;
    font-weight: 600;
}
nav[data-pagira-menu] > ul > li > a:hover {
    background: var(--kleur-primair);
    color: var(--kleur-primair-contrast);
    text-decoration: none;
}
nav[data-pagira-menu] ul ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border: 1px solid #c8e6d0;
    border-radius: var(--radius);
    min-width: 220px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 200;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
nav[data-pagira-menu] ul ul li a {
    display: block;
    padding: 0.55rem 1rem;
    color: var(--kleur-tekst);
    font-size: 14px;
    font-family: var(--font-tekst);
    text-decoration: none;
    border-bottom: 1px solid #eaf4ef;
    white-space: nowrap;
}
nav[data-pagira-menu] ul ul li:last-child a {
    border-bottom: none;
}
nav[data-pagira-menu] ul ul li a:hover {
    background: var(--kleur-zacht);
    color: var(--kleur-primair);
    text-decoration: none;
}
/* MENU TOGGLE ICON (chevron/arrow) */
nav[data-pagira-menu] > ul > li > a::after {
    color: #ffffff;
}
.btn-bel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kleur-primair);
    color: var(--kleur-primair-contrast);
    font-family: var(--font-tekst);
    font-size: 15px;
    font-weight: 700;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s;
    min-height: 44px;
    gap: 0.5rem;
}
.btn-bel:hover {
    background: #1b4332;
    text-decoration: none;
}
.btn-bel-icon {
    display: none;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.btn-bel-tekst {
    display: inline;
}
@media (max-width: 768px) {
    .btn-bel {
        border-radius: 50%;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
    }
    .btn-bel-icon {
        display: block;
    }
    .btn-bel-tekst {
        display: none;
    }
}
/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius);
    font-family: var(--font-tekst);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.15s, color 0.15s;
    border: 2px solid transparent;
}
.btn-primair {
    background: var(--kleur-primair);
    color: var(--kleur-primair-contrast);
    border-color: var(--kleur-primair);
}
.btn-primair:hover {
    background: #1b4332;
    border-color: #1b4332;
    color: var(--kleur-primair-contrast);
    text-decoration: none;
}
.btn-outline {
    background: transparent;
    color: var(--kleur-primair);
    border-color: var(--kleur-primair);
}
.btn-outline:hover {
    background: var(--kleur-primair);
    color: var(--kleur-primair-contrast);
    text-decoration: none;
}
/* HERO */
.hero {
    position: relative;
    min-height: 420px;
    background: #2d6a4f;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0.65);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.hero-kaart {
    background: rgba(255,255,255,0.96);
    border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    max-width: 520px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.hero-kaart h1 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: #1b4332;
    margin-bottom: 0.75rem;
}
.hero-kaart p {
    margin-bottom: 1rem;
    color: var(--kleur-tekst);
}
.hero-subtekst {
    font-weight: 700;
    color: var(--kleur-primair);
}
.openingsstatus {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: #555;
    font-style: italic;
}
/* DIENSTEN GRID HOME */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.dienst-kaart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--kleur-zacht);
    border-radius: var(--radius);
    padding: 1.2rem 0.75rem;
    text-align: center;
    text-decoration: none;
    color: var(--kleur-tekst);
    font-family: var(--font-tekst);
    font-size: 0.92rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: border-color 0.15s, background 0.15s;
}
.dienst-kaart:hover {
    border-color: var(--kleur-primair);
    background: #d4eddf;
    text-decoration: none;
    color: var(--kleur-primair);
}
.dienst-icon {
    font-size: 2rem;
}
.sectie-link {
    margin-top: 0.5rem;
}
.link-pijl {
    color: var(--kleur-primair);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}
.link-pijl:hover {
    text-decoration: underline;
}
/* WINKEL SECTIE */
.sectie-winkel-inner {
    max-width: 700px;
}
.winkel-tekst h2 {
    margin-bottom: 0.5rem;
}
.winkel-tekst p {
    margin-bottom: 1rem;
}
/* PRAKTISCH GRID */
.praktisch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) {
    .praktisch-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.openingstijden-tabel {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.97rem;
}
.openingstijden-tabel td {
    padding: 0.35rem 0.75rem 0.35rem 0;
    border-bottom: 1px solid #d4eddf;
}
.openingstijden-tabel td:first-child {
    font-weight: 600;
    min-width: 140px;
}
.praktisch-contact address {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.8;
}
.praktisch-contact p {
    margin: 0.5rem 0;
}
/* KRUIMELPAD */
.kruimelpad {
    padding: 0.75rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.88rem;
    color: #666;
}
.kruimelpad a {
    color: var(--kleur-primair);
    text-decoration: none;
}
.kruimelpad a:hover {
    text-decoration: underline;
}
.kruimelpad span[aria-hidden] {
    margin: 0 0.3rem;
    color: #999;
}
/* PAGINA HERO */
.pagina-hero {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
.pagina-hero-tekst {
    flex: 1 1 300px;
}
.pagina-hero h1 {
    margin-bottom: 0.5rem;
}
/* KAARTEN GRID (overzicht) */
.kaarten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}
.dienst-kaart-groot {
    background: var(--kleur-achtergrond);
    border-radius: var(--radius);
    border: 1px solid #c8e6d0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.kaart-tekst {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.kaart-tekst h2 {
    font-size: 1.1rem;
    margin: 0;
}
.kaart-tekst h2 a {
    color: var(--kleur-primair);
    text-decoration: none;
    font-family: var(--font-koppen);
}
.kaart-tekst h2 a:hover {
    text-decoration: underline;
}
.kaart-tekst p {
    font-size: 0.93rem;
    color: #444;
    flex: 1;
}
/* CTA BLOK */
.cta-blok {
    text-align: center;
    padding: 1rem 0;
}
.cta-blok h2 {
    margin-bottom: 0.5rem;
}
.cta-blok p {
    margin-bottom: 1.25rem;
    color: #444;
}
.cta-blok .btn {
    margin: 0.25rem;
}
/* LIJST BLOKKEN */
.lijst-blokken {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.lijst-blok {
    background: var(--kleur-achtergrond);
    border-left: 4px solid var(--kleur-primair);
    padding: 1rem 1.1rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.lijst-blok h3 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.lijst-blok p {
    font-size: 0.93rem;
    color: #444;
}
/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr 1.4fr;
    }
}
.contact-info h2 {
    margin-top: 1.5rem;
}
.contact-info h2:first-child {
    margin-top: 0;
}
.contact-info address {
    font-style: normal;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}
.contact-bel {
    margin: 0.5rem 0;
    display: inline-flex;
}
/* FORMULIER */
.contact-formulier h2 {
    margin-bottom: 1rem;
}
.form-veld {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}
.form-veld label {
    font-weight: 700;
    font-size: 0.93rem;
}
.form-veld input, .form-veld textarea, .form-veld select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid #b0cfc0;
    border-radius: var(--radius);
    font-family: var(--font-tekst);
    font-size: 1rem;
    background: var(--kleur-achtergrond);
    color: var(--kleur-tekst);
    transition: border-color 0.15s;
}
.form-veld input:focus, .form-veld textarea:focus {
    border-color: var(--kleur-primair);
    outline: 2px solid rgba(45,106,79,0.2);
}
.form-veld textarea {
    resize: vertical;
    min-height: 110px;
}
/* CONTENT SMAL */
.content-smal {
    max-width: 740px;
}
.content-smal h2 {
    margin-top: 1.75rem;
    font-size: 1.2rem;
}
.content-smal p, .content-smal ul, .content-smal address {
    margin-top: 0.5rem;
    font-size: 0.97rem;
    color: #444;
    line-height: 1.7;
}
.content-smal ul {
    padding-left: 1.4rem;
}
.content-smal ul li {
    margin-bottom: 0.3rem;
}
.content-smal address {
    font-style: normal;
}
/* FOOTER */
footer[data-pagira-footer] {
    background: #1b4332;
    color: #d4eddf;
    padding: 2.5rem 0 0;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 900px) {
    .footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    }
}
.footer-merk .footer-logo-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}
.footer-naam {
    font-family: var(--font-koppen);
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin-bottom: 0.1rem;
}
.footer-tagline {
    font-size: 0.68rem;
    color: #a8d5bc;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.footer-omschrijving {
    font-size: 0.93rem;
    color: #a8d5bc;
    line-height: 1.6;
}
.footer-blok h3 {
    font-family: var(--font-tekst);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a8d5bc;
    margin-bottom: 0.75rem;
}
.footer-blok address {
    font-style: normal;
    font-size: 0.93rem;
    color: #d4eddf;
    line-height: 1.9;
}
.footer-blok address a {
    color: #d4eddf;
    text-decoration: none;
}
.footer-blok address a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-blok ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.footer-blok ul li a {
    color: #d4eddf;
    font-size: 0.93rem;
    text-decoration: none;
}
.footer-blok ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.footer-bottom {
    border-top: 1px solid #2d6a4f;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    color: #7ab99a;
}
.footer-bottom a {
    color: #7ab99a;
}
.footer-bottom a:hover {
    color: #ffffff;
}
/* RESPONSIVE HEADER */
@media (max-width: 800px) {
    .header-inner {
        justify-content: space-between;
    }
    nav[data-pagira-menu] {
        order: 3;
        width: 100%;
    }
    .btn-bel {
        order: 2;
    }
}
/* WINKEL FOTOS GRID */
.winkel-fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.winkel-foto-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #c8e6d0;
    background: var(--kleur-zacht);
}
.winkel-foto-item img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
nav[data-pagira-menu] .pagira-submenu-toggle {
    color: #ffffff;
}
/* BEL-KNOP ICOON */
.btn-bel-icon {
    display: none;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.btn-bel-tekst {
    display: inline;
}
@media (max-width: 768px) {
    .btn-bel {
        border-radius: 50%;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
    }
    .btn-bel-icon {
        display: block;
    }
    .btn-bel-tekst {
        display: none;
    }
}

