:root {
    /* Design tokens - 1-op-1 overgenomen van het JZ Automotive theme */
    --primary: #5cb85c;
    --primary-dark: #449d44;
    --primary-light: #6ec76e;
    --secondary: #8cc63f;
    --bg-body: #2b2b2b;
    --bg-section-dark: #262626;
    --bg-section-medium: #303030;
    --bg-section-light: #383838;
    --bg-card: #3a3a3a;
    --bg-navbar: #1e1e1e;
    --bg-topbar: #1a1a1a;
    --bg-footer: #1e1e1e;
    --text-white: #ffffff;
    --text-light: #c5c5c5;
    --text-muted: #999999;
    --border-subtle: rgba(255,255,255,0.07);
    --star-color: #f5c518;
    --closed-red: #e74c3c;
}

/* Fallback-fonts met aangepaste metrics: tot Montserrat/Open Sans geladen zijn
   rendert Arial op (bijna) dezelfde regelhoogte, zodat de font-swap geen
   layoutverschuiving (CLS) veroorzaakt */
@font-face {
    font-family: 'Montserrat Fallback';
    src: local('Arial');
    size-adjust: 112.84%; ascent-override: 85.79%;
    descent-override: 22.25%; line-gap-override: 0%;
}
@font-face {
    font-family: 'Open Sans Fallback';
    src: local('Arial');
    size-adjust: 104.72%; ascent-override: 101.88%;
    descent-override: 27.94%; line-gap-override: 0%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; }

body {
    font-family: 'Open Sans', 'Open Sans Fallback', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-white);
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Montserrat Fallback', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; transition: all 0.3s ease; }
/* Knop-links nooit onderstrepen, ook niet als Bootstrap's a-regel de cascade wint */
a[class*="btn"], a[class*="btn"]:hover, a[class*="btn"]:focus { text-decoration: none; }
main a:not([class]) { color: var(--primary); }
main a:not([class]):hover { color: var(--secondary); }

/* Skip-link: onzichtbaar tot hij toetsenbordfocus krijgt */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 2000;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 8px 8px;
}
.skip-link:focus {
    top: 0;
    color: var(--text-white);
}
img { max-width: 100%; height: auto; }

/* ============ FADE-IN ANIMATIONS ============ */
.fade-in {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
    opacity: 0; transform: translateX(-60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
    opacity: 0; transform: translateX(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.40s; }
.stagger-children .fade-in:nth-child(7) { transition-delay: 0.48s; }
.stagger-children .fade-in:nth-child(8) { transition-delay: 0.56s; }
.stagger-children .fade-in:nth-child(9) { transition-delay: 0.64s; }

/* ============ TOP BAR ============ */
.top-bar {
    background-color: var(--bg-topbar);
    padding: 7px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border-subtle);
}
.top-bar a { color: var(--text-light); }
.top-bar a:hover { color: var(--primary); }
.top-bar .stars { color: var(--star-color); }

/* ============ NAVBAR ============ */
.navbar {
    background-color: var(--bg-navbar) !important;
    padding: 10px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-subtle);
}
.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    background-color: rgba(30,30,30,0.97) !important;
    backdrop-filter: blur(10px);
}
.navbar-brand {
    font-family: 'Montserrat', 'Montserrat Fallback', sans-serif;
    font-weight: 900; font-size: 1.5rem;
    color: var(--text-white) !important;
}
.navbar-brand span { color: var(--primary); }
.navbar-logo { height: 48px; width: auto; display: block; }
.footer-logo { height: 52px; width: auto; display: block; }
.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 600; font-size: 0.85rem;
    padding: 8px 14px !important;
    text-transform: uppercase; letter-spacing: 0.5px;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 0;
    left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--primary);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after { width: 70%; }
.navbar-nav .nav-link:hover { color: var(--primary) !important; }
.navbar-nav .nav-link.active { color: var(--primary) !important; }
.navbar-nav .nav-link.active::after { width: 70%; }
.navbar-nav .current-menu-item > a,
.navbar-nav .current-menu-ancestor > a,
.navbar-nav .current_page_item > a,
.navbar-nav .current_page_ancestor > a { color: var(--primary) !important; }
.navbar-nav .current-menu-item > a::after,
.navbar-nav .current_page_item > a::after { width: 70%; }
.navbar-nav .menu-item-has-children > a::after { display: none !important; }

.navbar .nav-link.btn-nav-cta {
    background-color: var(--primary) !important; color: var(--text-white) !important;
    border: none; padding: 10px 22px !important; border-radius: 5px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; font-size: 0.82rem;
    display: inline-block;
}
.navbar .nav-link.btn-nav-cta:hover,
.navbar .nav-link.btn-nav-cta.active {
    background-color: var(--primary-dark) !important;
    color: var(--text-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(92,184,92,0.35);
}
.navbar .nav-link.btn-nav-cta::after { display: none !important; }
.navbar-toggler { border-color: rgba(197,197,197,0.45) !important; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(92,184,92,0.25); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28197,197,197,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============ DROPDOWN ============ */
.navbar-nav .menu-item-has-children { position: relative; }
.navbar-nav .menu-item-has-children > a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}
.navbar-nav .sub-menu {
    list-style: none;
    padding: 10px 0 6px;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 215px;
    background: var(--bg-navbar);
    border-top: 2px solid var(--primary);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.22s ease 0.15s, transform 0.22s ease 0.15s, visibility 0.22s 0.15s;
}
.navbar-nav .menu-item-has-children.dropdown-hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.navbar-nav .sub-menu li { display: block; }
.navbar-nav .sub-menu a {
    display: block;
    padding: 9px 20px !important;
    color: var(--text-white) !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.navbar-nav .sub-menu a::after { display: none !important; }
.navbar-nav .sub-menu a:hover { color: var(--primary) !important; background: rgba(92,184,92,0.08); }
.dropdown-chevron {
    font-size: 0.65em;
    opacity: 0.8;
    flex-shrink: 0;
    transition: transform 0.22s ease;
}
.menu-item-has-children:hover .dropdown-chevron,
.menu-item-has-children.dropdown-open .dropdown-chevron { transform: rotate(180deg); }
.dropdown-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    padding: 4px 12px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: color 0.2s;
    line-height: 1;
}
.dropdown-mobile-toggle:hover,
.menu-item-has-children.dropdown-open .dropdown-mobile-toggle { color: var(--primary); }
.dropdown-mobile-toggle i { transition: transform 0.22s ease; }
.menu-item-has-children.dropdown-open .dropdown-mobile-toggle i { transform: rotate(180deg); }

/* ============ HERO ============ */
.hero {
    background: var(--bg-navbar);
    min-height: 82vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.hero-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    z-index: 0;
    opacity: 0; transition: opacity 1.2s ease;
}
.hero-bg-img.active { opacity: 1; }
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(30,30,30,0.88) 0%, rgba(30,30,30,0.55) 100%);
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 100px; z-index: 1;
    background: linear-gradient(to top, var(--bg-body), transparent);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
    font-size: 2.6rem; font-weight: 800; color: var(--text-white);
    text-transform: uppercase; line-height: 1.2; margin-bottom: 1rem;
}
.hero h1 .highlight { color: var(--primary); }
.hero p {
    font-size: 1.05rem; color: var(--text-light);
    max-width: 580px; line-height: 1.7;
}
.hero-usp-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.hero-usp-list li {
    color: var(--text-light); font-size: 0.95rem;
    padding: 4px 0; display: flex; align-items: center; gap: 10px;
}
.hero-usp-list li i { color: var(--primary); }

.btn-primary-custom {
    background-color: var(--primary); color: var(--text-white);
    border: none; padding: 13px 28px; border-radius: 5px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; font-size: 0.85rem; transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary-custom:hover {
    background-color: var(--primary-dark); color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92,184,92,0.35);
}
.btn-outline-custom {
    background: transparent; color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 11px 26px; border-radius: 5px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; font-size: 0.85rem; transition: all 0.3s ease;
    display: inline-block;
}
.btn-outline-custom:hover {
    background-color: var(--text-white); color: var(--bg-navbar);
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent; color: #222 !important;
    border: 2px solid #222; padding: 11px 26px; border-radius: 5px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; font-size: 0.85rem;
    transition: all 0.3s ease; display: inline-block;
}
.btn-outline-dark:hover { background-color: #222; color: #fff !important; transform: translateY(-2px); }

/* ============ SECTIONS ============ */
section { padding: 70px 0; }
.section-title {
    font-size: 2rem; font-weight: 800; color: var(--text-white);
    text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-subtitle {
    color: var(--text-light); font-size: 0.95rem;
    max-width: 700px; line-height: 1.7;
}
.green-line {
    width: 55px; height: 4px;
    background-color: var(--primary); border-radius: 2px; margin-bottom: 1.2rem;
}

/* ============ CAMPER CARDS ============ */
.campers-section { background-color: #ffffff; }
.campers-section .section-title { color: #222222; }
.campers-section .section-subtitle { color: #555555; }
.camper-card {
    background-color: #ffffff;
    border-radius: 10px; overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e5e5e5;
    height: 100%;
    display: flex; flex-direction: column;
}
.camper-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.1);
    border-color: rgba(92,184,92,0.25);
}
.camper-card-img {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform 0.5s ease;
}
.camper-card:hover .camper-card-img { transform: scale(1.05); }
.camper-card-img-wrapper { overflow: hidden; position: relative; }
.camper-card-img-wrapper--logo-bg { background: var(--bg-navbar); }
.camper-card-img--logo { object-fit: contain !important; padding: 24px; }
.camper-card-badge {
    position: absolute; top: 10px; left: 10px;
    background-color: var(--primary); color: white;
    padding: 3px 10px; border-radius: 4px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
}
.camper-card-body { padding: 18px; display: flex; flex-direction: column; flex-grow: 1; }
.camper-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: #222; }
.camper-card-slogan { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.camper-card-specs {
    font-size: 0.78rem; color: #888; margin-bottom: 14px;
}
.camper-card-specs span { margin-right: 10px; white-space: nowrap; }
.camper-card-specs i { color: var(--primary); margin-right: 3px; }
.camper-card-desc { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 14px; }
.camper-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; border-top: 1px solid #eee;
    margin-top: auto;
}
.camper-card-price { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.camper-card-price small {
    font-size: 0.68rem; color: #888; display: block; font-weight: 400;
}
.btn-card {
    background-color: transparent; border: 2px solid var(--primary);
    color: var(--primary); padding: 7px 16px; border-radius: 5px;
    font-weight: 700; font-size: 0.78rem; text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-card:hover { background-color: var(--primary); color: var(--text-white); }

/* Camper grid (overzichtspagina) - kaartstijl is overal licht, zie .camper-card */
.campers-grid { background-color: #ffffff; padding: 15px 0 70px; }

/* ============ WHY CHOOSE US / USP ============ */
.why-section { background-color: var(--bg-section-medium); }
.usp-item { display: flex; align-items: flex-start; margin-bottom: 16px; }
.usp-icon {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    background-color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin-right: 12px; margin-top: 2px; font-size: 0.7rem;
}
.usp-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; color: var(--text-white); }
.usp-item p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0; }
.about-image {
    border-radius: 14px; overflow: hidden; position: relative;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 18px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.about-image-overlay h4 { color: var(--text-white); font-size: 1.2rem; margin-bottom: 2px; }
.about-image-overlay p { color: var(--primary); font-size: 0.82rem; margin-bottom: 0; }

/* ============ REVIEWS ============ */
.reviews-section { background-color: #ffffff; }
.reviews-section .section-title { color: #222222; }
.reviews-section .section-subtitle { color: #555555; }
.review-card {
    background-color: var(--bg-card); border-radius: 10px;
    padding: 24px; border: 1px solid var(--border-subtle);
    height: 100%; transition: all 0.3s ease;
}
.review-card:hover {
    border-color: rgba(92,184,92,0.25);
    transform: translateY(-4px);
}
.review-stars { color: var(--star-color); margin-bottom: 12px; font-size: 0.9rem; }
.review-text {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.7; font-style: italic; margin-bottom: 14px;
}
.review-author { font-weight: 700; font-size: 0.85rem; color: var(--text-white); }
.review-author::before { content: '- '; color: var(--primary); }
.review-rating-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: #f7f7f7; border: 1px solid #e8e8e8;
    border-radius: 12px; padding: 18px 28px;
}
.review-rating-badge .stars { color: var(--star-color); font-size: 1.1rem; }
.review-rating-badge .label { color: #444; font-size: 0.9rem; font-weight: 600; }

/* ============ FOOTER SLIDER ============ */
.footer-slider { overflow: hidden; background: var(--bg-body); line-height: 0; }
.footer-slider-track {
    display: flex; width: max-content;
    animation: footer-slide 60s linear infinite;
    will-change: transform;
}
.footer-slider:hover .footer-slider-track { animation-play-state: paused; }
/* JS neemt de beweging over (slepen mogelijk); CSS-animatie blijft de no-JS-fallback */
.footer-slider.is-drag .footer-slider-track { animation: none; }
.footer-slider.is-drag {
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}
.footer-slider.is-slepen { cursor: grabbing; }
.footer-slider-item {
    display: block; height: 400px; width: auto;
    flex-shrink: 0; overflow: hidden;
    position: relative;
}
.footer-slider-item img {
    height: 100%; width: auto; display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.footer-slider-item:hover img { transform: scale(1.06); opacity: 0.85; }
.footer-slider-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 22px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15) 55%, transparent);
    color: #fff;
    font-family: 'Montserrat', 'Montserrat Fallback', sans-serif;
    font-weight: 700; font-size: 0.95rem;
    text-transform: uppercase; letter-spacing: 1px;
    line-height: 1.3; text-align: center;
    opacity: 0; transition: opacity 0.4s ease;
    pointer-events: none;
}
.footer-slider-overlay .fa-arrow-right { color: var(--primary); margin-left: 6px; }
.footer-slider-item:hover .footer-slider-overlay,
.footer-slider-item:focus-visible .footer-slider-overlay { opacity: 1; }
/* Van rechts naar links: track schuift van 0 naar -50% (tweede helft is identiek) */
@keyframes footer-slide {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .footer-slider-track { animation: none; }
}
@media (max-width: 767px) {
    .footer-slider-item { height: 240px; }
}

/* ============ CTA BAR ============ */
.cta-bar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 28px 0;
}
.cta-bar h3 { font-size: 1.3rem; margin-bottom: 0; color: var(--text-white); }
.cta-bar a:not([class*="btn"]) { color: var(--text-white); font-weight: 700; text-decoration: underline; }

/* ============ FOOTER ============ */
footer {
    background-color: var(--bg-footer);
    padding: 50px 0 18px;
    border-top: 1px solid var(--border-subtle);
}
footer h5 {
    font-size: 0.95rem; text-transform: uppercase;
    margin-bottom: 18px; color: var(--primary);
}
.footer-onderdeel { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.footer-onderdeel a { color: var(--text-light); font-weight: 600; }
.footer-onderdeel a:hover { color: var(--primary); }
footer p, footer a, footer li {
    font-size: 0.85rem; color: var(--text-light); line-height: 1.8;
}
/* hogere specificiteit dan Bootstraps a- en .nav-link-regels, zodat de
   footer-stijl ook wint als de CSS-volgorde wisselt (bijv. door Autoptimize) */
footer a, footer a.nav-link { text-decoration: none; }
footer a:hover, footer a.nav-link:hover { color: var(--primary); }
footer .current-menu-item > a,
footer .current_page_item > a { color: var(--primary); font-weight: 700; }
footer ul { list-style: none; padding: 0; }
footer ul li a { display: inline-block; padding: 2px 0; }
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 18px; margin-top: 35px;
    font-size: 0.78rem; color: var(--text-muted);
}
.social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background-color: var(--bg-card); color: var(--text-light);
    margin-right: 6px; transition: all 0.3s ease;
}
.social-icons a:hover {
    background-color: var(--primary); color: var(--text-white);
    transform: translateY(-3px);
}
.hours-table td { padding: 3px 0; font-size: 0.85rem; color: var(--text-light); }
.hours-table td:first-child { font-weight: 600; color: var(--text-white); padding-right: 14px; }
.hours-table .closed { color: var(--closed-red); }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 48px; height: 48px; border-radius: 50%;
    background-color: var(--primary); color: var(--text-white);
    border: none; font-size: 1.1rem; cursor: pointer; z-index: 9999;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 18px rgba(92,184,92,0.35);
    display: flex; align-items: center; justify-content: center;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(92,184,92,0.45);
}

/* ============ LAZY LOAD ============ */
img[data-src] { opacity: 0; transition: opacity 0.5s ease; }
img[data-src].loaded { opacity: 1; }

/* ============ PRELOADER ============ */
.preloader {
    position: fixed; inset: 0;
    background-color: var(--bg-body); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    /* visibility niet mee-animeren (niet composited); pas ná de fade omklappen */
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-spinner {
    width: 46px; height: 46px;
    border: 4px solid rgba(255,255,255,0.08);
    border-top-color: var(--primary);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ PAGE HEADER ============ */
.page-header {
    background: linear-gradient(135deg, rgba(30,30,30,0.92) 0%, rgba(30,30,30,0.7) 100%), var(--bg-section-dark);
    background-size: cover; background-position: center;
    padding: 100px 0 90px;
    position: relative;
}
.page-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px; background: linear-gradient(to top, #ffffff, transparent);
}
.page-header--dark-after::after { background: linear-gradient(to top, var(--bg-body), transparent); }
.page-header h1 {
    font-size: 2.4rem; font-weight: 900; color: var(--text-white);
    text-transform: uppercase; margin-bottom: 14px;
    position: relative; z-index: 2;
}
.page-header h1 .highlight { color: var(--primary); }
.page-header-intro {
    position: relative; z-index: 2;
    color: var(--text-light); font-size: 1.05rem;
    max-width: 680px; line-height: 1.75; margin-top: 0; margin-bottom: 0;
}
.breadcrumb-wrapper { position: relative; z-index: 2; }
.breadcrumb-wrapper .breadcrumb { background: none; padding: 0; margin: 0; display: flex; align-items: center; flex-wrap: wrap; }
.breadcrumb-wrapper .breadcrumb-item { display: flex; align-items: center; }
.breadcrumb-wrapper .breadcrumb-item a { color: var(--primary); font-size: 0.88rem; line-height: 1; }
.breadcrumb-wrapper .breadcrumb-item a:hover { color: var(--primary-light); }
.breadcrumb-wrapper .breadcrumb-item a.breadcrumb-home i { font-size: 0.82rem; }
.breadcrumb-wrapper .breadcrumb-item.active { color: var(--text-light); font-size: 0.88rem; font-weight: 600; line-height: 1; }
.breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
    content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    font-size: 0.6rem; line-height: 1;
    color: rgba(255,255,255,0.55); padding: 0 10px;
}
.btn-back { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--text-white); padding: 9px 20px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; transition: all 0.3s; margin-left: auto; white-space: nowrap; }
.btn-back:hover { background: rgba(255,255,255,0.2); color: var(--text-white); border-color: rgba(255,255,255,0.4); }
.lead-desc { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; max-width: 800px; }

/* ============ CONTENT SECTIONS ============ */
.white-section { background: #ffffff; padding: 60px 0; }
.white-section h2 { color: #222; font-size: 1.6rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.7rem; }
.white-section h3 { color: #222; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.white-section p { color: #444; font-size: 0.93rem; line-height: 1.8; }
.light-section { background: #f5f5f5; padding: 60px 0; }
.light-section h2 { color: #222; font-size: 1.6rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.7rem; }
.light-section h3 { color: #222; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.light-section p { color: #444; font-size: 0.93rem; line-height: 1.8; }
.dark-section { background: var(--bg-section-dark); padding: 60px 0; }

.intro-text { font-size: 1.05rem; color: #444; max-width: 800px; line-height: 1.85; }

.content-section { background-color: #ffffff; padding: 70px 0; }
.content-section h2 {
    font-size: 1.8rem; font-weight: 800;
    text-transform: uppercase; color: #222; margin-bottom: 0.8rem;
}
.content-section p { color: #444; font-size: 0.95rem; line-height: 1.85; }
.content-section .lead-text { font-size: 1.08rem; color: #333; font-weight: 500; line-height: 1.8; }
.content-section ul { color: #444; font-size: 0.95rem; line-height: 1.85; }

.content-image {
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.content-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.content-image:hover img { transform: scale(1.03); }

/* ============ INFO CARDS ============ */
.info-card {
    background-color: var(--bg-card); border-radius: 10px;
    padding: 30px; border: 1px solid var(--border-subtle);
    height: 100%; transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(92,184,92,0.25);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.info-card-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--text-white);
    margin-bottom: 18px; transition: all 0.3s ease;
}
.info-card:hover .info-card-icon { transform: scale(1.1); box-shadow: 0 6px 20px rgba(92,184,92,0.35); }
.info-card h4 { font-size: 1.05rem; text-transform: uppercase; margin-bottom: 10px; color: var(--text-white); }
.info-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 0; }

/* ============ CONTACT CARDS ============ */
.contact-card {
    background: #fff; border: 1px solid #e5e5e5;
    border-radius: 12px; padding: 30px 24px;
    text-align: center; height: 100%; transition: all 0.4s ease;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    border-color: rgba(92,184,92,0.35);
}
.contact-card-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; margin: 0 auto 18px; transition: all 0.3s ease;
}
.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(92,184,92,0.35);
}
.contact-card h4 { font-size: 1rem; text-transform: uppercase; color: #222; margin-bottom: 8px; }
.contact-card p { font-size: 0.88rem; color: #666; margin-bottom: 4px; }
.contact-card a { color: var(--primary); font-weight: 700; font-size: 0.95rem; }
.contact-card a:hover { color: var(--primary-dark); }
.contact-card .small-hint { font-size: 0.78rem; color: #999; font-style: italic; margin-top: 6px; }
.contact-intro { margin-bottom: 24px; }
.contact-intro p { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 10px; }
.contact-intro a { color: var(--primary); font-weight: 700; }
.contact-intro a:hover { color: var(--primary-dark); }
.contact-intro-hint { font-size: 0.85rem !important; color: #999 !important; font-style: italic; }
.contact-intro-hint i { color: var(--primary); }

/* ============ HOURS BLOCK ============ */
.hours-block {
    background: #fff; border: 1px solid #e5e5e5;
    border-radius: 12px; padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.hours-block table { width: 100%; }
.hours-block table td {
    padding: 12px 0; font-size: 0.92rem;
    border-bottom: 1px solid #f0f0f0;
}
.hours-block table tr:last-child td { border-bottom: none; }
.hours-block table td:first-child {
    color: #222; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
}
.hours-block table td:first-child i { color: var(--primary); width: 18px; text-align: center; }
.hours-block table td:last-child { color: #444; text-align: right; font-weight: 600; }
.hours-block .closed { color: var(--closed-red); }

/* ============ MAP ============ */
.map-wrapper {
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}
.map-wrapper iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ============ FORMS ============ */
.form-wrapper {
    background: #fff; border: 1px solid #e5e5e5;
    border-radius: 12px; padding: 36px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.form-wrapper label {
    font-family: 'Montserrat', 'Montserrat Fallback', sans-serif; font-weight: 700;
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.3px;
    color: #333; margin-bottom: 6px; display: block;
}
.form-wrapper .form-control,
.form-wrapper .form-select {
    background: #fff; border: 1px solid #d5d5d5;
    border-radius: 6px; padding: 12px 16px;
    font-size: 0.9rem; color: #333; transition: all 0.3s ease;
}
.form-wrapper .form-control:focus,
.form-wrapper .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(92,184,92,0.15);
}
.form-wrapper textarea.form-control { resize: vertical; min-height: 120px; }
.optional-hint { font-size: 0.75rem; color: #aaa; font-weight: 400; text-transform: none; letter-spacing: 0; }
.btn-submit {
    background: var(--primary); color: #fff; border: none;
    padding: 14px 36px; border-radius: 6px;
    font-weight: 700; font-size: 0.88rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: all 0.3s ease; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-submit:hover {
    background: var(--primary-dark); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92,184,92,0.35);
}
.form-check-label { font-size: 0.82rem; color: #666; font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }

/* ============ CAMPER DETAIL ============ */
.camper-detail-section { background: #fff; padding: 50px 0 60px; }

.camper-title {
    font-family: 'Montserrat', 'Montserrat Fallback', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    color: #1a1a1a; margin-bottom: 4px;
}
.camper-subtitle { font-size: 0.9rem; color: #888; margin-bottom: 18px; }

/* Slider */
.slider-wrapper { border-radius: 12px; overflow: hidden; position: relative; background: #f0f0f0; }
.slider-main { width: 100%; height: 420px; object-fit: cover; display: block; transition: opacity 0.3s ease; cursor: zoom-in; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: background 0.3s; display: flex; align-items: center; justify-content: center; z-index: 3; }
.slider-nav:hover { background: var(--primary); }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-counter { position: absolute; bottom: 14px; right: 14px; background: rgba(0,0,0,0.6); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; z-index: 3; }
.slider-zoom { position: absolute; bottom: 14px; left: 14px; background: rgba(0,0,0,0.55); color: #fff; border: none; width: 38px; height: 38px; border-radius: 50%; font-size: 0.9rem; cursor: pointer; transition: background 0.3s; display: flex; align-items: center; justify-content: center; z-index: 3; }
.slider-zoom:hover { background: var(--primary); }
.slider-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.slider-thumb { width: 80px; height: 56px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; transition: all 0.3s; flex-shrink: 0; opacity: 0.6; }
.slider-thumb:hover, .slider-thumb.active { border-color: var(--primary); opacity: 1; }

/* ============ LIGHTBOX ============ */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 9999; align-items: center; justify-content: center; }
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-height: 85vh; max-width: 88vw; object-fit: contain; border-radius: 6px; transition: opacity 0.15s ease; }
.lightbox-close { position: absolute; top: 18px; right: 24px; background: rgba(255,255,255,0.12); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10; }
.lightbox-close:hover { background: var(--primary); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); color: #fff; border: none; width: 52px; height: 52px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; pointer-events: none; }

/* ============ DETAIL: INFO PANEL ============ */
.info-panel { background: #fff; border: 1px solid #e5e5e5; border-radius: 12px; padding: 28px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
.info-panel-price { font-size: 2rem; font-weight: 900; color: var(--primary); font-family: 'Montserrat', 'Montserrat Fallback', sans-serif; margin-bottom: 4px; }
.info-panel-price small { font-size: 0.78rem; color: #999; font-weight: 400; display: block; }
.spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.88rem; }
.spec-row:last-child { border-bottom: none; }
.spec-label { color: #888; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.spec-label i { color: var(--primary); width: 16px; text-align: center; }
.spec-value { color: #222; font-weight: 700; text-align: right; }
.btn-cta-primary { display: block; width: 100%; background: var(--primary); color: #fff; border: none; padding: 13px; border-radius: 6px; font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; transition: all 0.3s; cursor: pointer; margin-bottom: 8px; }
.btn-cta-primary:hover { background: var(--primary-dark); color: #fff; box-shadow: 0 6px 20px rgba(92,184,92,0.35); transform: translateY(-1px); }
.btn-cta-secondary { display: block; width: 100%; background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 11px; border-radius: 6px; font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; transition: all 0.3s; cursor: pointer; margin-bottom: 8px; }
.btn-cta-secondary:hover { background: var(--primary); color: #fff; }
.btn-cta-dark { display: block; width: 100%; background: #222; color: #fff; border: none; padding: 12px; border-radius: 6px; font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; transition: all 0.3s; cursor: pointer; }
.btn-cta-dark:hover { background: #333; transform: translateY(-1px); color: #fff; }

/* ============ DETAIL: TABS ============ */
.detail-tabs { border: none; border-bottom: 2px solid #e0e0e0; gap: 0; flex-wrap: wrap; margin-bottom: 0; }
.detail-tabs .nav-link { color: #888; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; border: none; padding: 14px 22px; border-bottom: 3px solid transparent; background: none; transition: all 0.25s; }
.detail-tabs .nav-link:hover { color: #333; border-bottom-color: #ccc; background: rgba(0,0,0,0.02); }
.detail-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(92,184,92,0.05); }
.tab-content { background: #fff; border: 1px solid #e8e8e8; border-top: none; border-radius: 0 0 10px 10px; }
.tab-pane { padding: 32px 28px; }

/* ============ DETAIL: SPECS TABLE ============ */
.spec-group-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #aaa; font-weight: 700; margin: 0 0 10px; padding-bottom: 6px; border-bottom: 2px solid var(--primary); display: inline-block; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 0; }
.spec-table td { padding: 9px 12px; font-size: 0.86rem; border-bottom: 1px solid #f2f2f2; vertical-align: middle; }
.spec-table td:first-child { color: #999; font-weight: 500; width: 46%; }
.spec-table td:last-child  { color: #1a1a1a; font-weight: 600; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: #fafafa; }

/* ============ DETAIL: UITRUSTING GRID ============ */
.acc-section-title { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); font-weight: 800; margin: 28px 0 10px; padding-bottom: 6px; border-bottom: 1px solid #ebebeb; }
.acc-section-title:first-child { margin-top: 0; }
.acc-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #ebebeb; border-radius: 8px; overflow: hidden; }
.acc-item { display: flex; align-items: flex-start; gap: 9px; padding: 10px 14px; font-size: 0.85rem; color: #333; border-bottom: 1px solid #f0f0f0; border-right: 1px solid #f0f0f0; line-height: 1.4; }
.acc-item:nth-child(3n) { border-right: none; }
.acc-item i { color: var(--primary); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }
.acc-item small { color: #888; display: block; }
@media (max-width: 767px) {
    .acc-grid { grid-template-columns: repeat(2, 1fr); }
    .acc-item:nth-child(3n) { border-right: 1px solid #f0f0f0; }
    .acc-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
    .acc-grid { grid-template-columns: 1fr; }
    .acc-item { border-right: none !important; }
}

/* ============ DETAIL: BESCHRIJVING ============ */
.beschrijving-highlights { background: linear-gradient(135deg, #f8fff8, #f0f8f0); border-left: 4px solid var(--primary); border-radius: 0 8px 8px 0; padding: 20px 24px; margin-bottom: 24px; font-size: 0.92rem; color: #333; line-height: 1.85; font-weight: 600; }
.beschrijving-tekst { font-size: 0.92rem; color: #555; line-height: 1.85; }

/* ============ TARIEVEN ============ */
.package-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 12px; padding: 28px; height: 100%; transition: all 0.3s; position: relative; overflow: hidden; }
.package-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.package-card.featured { border-color: var(--primary); border-width: 2px; }
.package-card.featured::before { content: 'Huidig'; position: absolute; top: 14px; right: -34px; background: var(--primary); color: #fff; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; padding: 4px 38px; transform: rotate(45deg); }
.package-card h3 { font-size: 1rem; color: #222; text-transform: uppercase; margin-bottom: 4px; }
.package-period { font-size: 0.8rem; color: #888; margin-bottom: 12px; }
.package-price { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 16px; font-family: 'Montserrat', 'Montserrat Fallback', sans-serif; }
.package-price small { font-size: 0.72rem; color: #999; font-weight: 400; display: block; }
.package-card ul { list-style: none; padding: 0; }
.package-card ul li { font-size: 0.85rem; color: #444; padding: 6px 0; border-bottom: 1px solid #f5f5f5; display: flex; align-items: flex-start; gap: 10px; }
.package-card ul li:last-child { border-bottom: none; }
.package-card ul li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

/* ============ WHY RENT CARDS ============ */
.why-buy-card { background: #fff; border-radius: 12px; padding: 28px; border: 1px solid #e5e5e5; height: 100%; transition: all 0.3s; }
.why-buy-card:hover { border-color: rgba(92,184,92,0.3); box-shadow: 0 8px 25px rgba(0,0,0,0.06); transform: translateY(-3px); }
.why-buy-card .icon-circle { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; margin-bottom: 16px; }
.why-buy-card h3 { font-size: 1rem; color: #222; text-transform: uppercase; margin-bottom: 8px; }
.why-buy-card p, .why-buy-card li { font-size: 0.88rem; color: #555; line-height: 1.7; }
.why-buy-card ul { list-style: none; padding: 0; margin-top: 10px; }
.why-buy-card ul li { padding: 4px 0; }
.why-buy-card ul li i { color: var(--primary); margin-right: 8px; }

/* ============ KOM LANGS / BEZOEK ============ */
.visit-section { background: var(--bg-section-dark); padding: 55px 0; }
.visit-section h2 { font-size: 1.6rem; text-transform: uppercase; margin-bottom: 0.7rem; color: var(--text-white); }
.visit-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.visit-info-item .icon-box { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; flex-shrink: 0; }
.visit-info-item p { margin-bottom: 0; font-size: 0.9rem; color: var(--text-light); }
.visit-info-item strong { color: var(--text-white); }
.visit-info-item a { color: var(--text-light); }
.visit-info-item a:hover { color: var(--primary); }

/* ============ MODALS ============ */
.modal-header { background: var(--primary); color: #fff; border-radius: 12px 12px 0 0; border: none; }
.modal-header .btn-close { filter: brightness(0) invert(1); }
.modal-header .modal-title { font-family: 'Montserrat', 'Montserrat Fallback', sans-serif; font-weight: 700; color: #fff; }
.modal-body label { font-family: 'Montserrat', 'Montserrat Fallback', sans-serif; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.3px; color: #333; margin-bottom: 5px; display: block; }
.modal-body .form-control, .modal-body .form-select { border: 1px solid #d5d5d5; border-radius: 6px; padding: 10px 14px; font-size: 0.88rem; }
.modal-body .form-control:focus, .modal-body .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(92,184,92,0.15); }

/* ============ PRIVACY PAGE ============ */
.privacy-content h2 { font-size: 1.25rem; font-weight: 700; color: #222 !important; margin-top: 48px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); display: inline-block; }
.privacy-content h3 { font-size: 1rem; font-weight: 700; color: #333 !important; margin-top: 20px; margin-bottom: 8px; }
.privacy-content p { color: #333 !important; line-height: 1.85; margin-bottom: 14px; }
.privacy-content ul { color: #333 !important; line-height: 1.85; margin-bottom: 14px; padding-left: 20px; }
.privacy-content ul li { margin-bottom: 6px; color: #333 !important; }
.privacy-content strong { color: #111 !important; }
.privacy-content a { color: var(--primary) !important; }
.privacy-content a:hover { color: var(--secondary) !important; }

/* ============ FAQ ============ */
.faq-section { background: #ffffff; padding: 60px 0 70px; }
.faq-section .section-title { color: #222222; }
.faq-section .section-subtitle { color: #555555; }
.faq-accordion .accordion-item {
    border: 1px solid #e5e5e5; border-radius: 10px !important;
    margin-bottom: 12px; overflow: hidden; background: #fff;
}
.faq-accordion .accordion-button {
    font-family: 'Montserrat', 'Montserrat Fallback', sans-serif; font-weight: 700;
    font-size: 0.95rem; color: #222; background: #fff;
    padding: 18px 22px; box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary); background: rgba(92,184,92,0.05);
}
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 3px rgba(92,184,92,0.15); }
.faq-accordion .accordion-body { color: #444; font-size: 0.92rem; line-height: 1.8; padding: 20px 22px; }
.faq-accordion .accordion-body a { color: var(--primary); }

/* ============ BESCHIKBAARHEIDSKALENDERS (content-styling) ============ */
.reserveren-content h2 { color: #222; font-size: 1.4rem; font-weight: 800; text-transform: uppercase; margin: 40px 0 14px; }
.reserveren-content h2:first-child,
.reserveren-content > *:first-child h2:first-child { margin-top: 0; }
.reserveren-content h3 { color: #222; font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px; }
.reserveren-content p { color: #444; font-size: 0.93rem; line-height: 1.8; }
.reserveren-content table {
    width: 100%; border-collapse: collapse; margin-bottom: 24px;
    font-size: 0.85rem; background: #fff;
    border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden;
}
.reserveren-content table th,
.reserveren-content table td {
    padding: 8px 10px; border: 1px solid #f0f0f0; color: #444; text-align: center;
}
.reserveren-content table th {
    background: #f7f7f7; color: #222; font-weight: 700;
    font-family: 'Montserrat', 'Montserrat Fallback', sans-serif; font-size: 0.78rem; text-transform: uppercase;
}
.kalender-legenda { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 20px; }
.kalender-legenda span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #444; }
.kalender-legenda i { width: 16px; height: 16px; border-radius: 4px; display: inline-block; }
.status-beschikbaar, .kalender-legenda .dot-beschikbaar { background: rgba(92,184,92,0.25) !important; color: #2d6a2d !important; }
.status-geboekt, .kalender-legenda .dot-geboekt { background: rgba(231,76,60,0.2) !important; color: #a83226 !important; }
.status-wisseling, .kalender-legenda .dot-wisseling { background: rgba(245,197,24,0.25) !important; color: #8a6d03 !important; }

/* ============ RESPONSIVE ============ */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Smalle desktop: menu + brede CTA-knop passend houden */
    .navbar-nav .nav-link { padding: 8px 9px !important; font-size: 0.78rem; }
    .navbar .nav-link.btn-nav-cta { padding: 9px 14px !important; font-size: 0.75rem; }
}
@media (max-width: 991px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .navbar-collapse {
        background-color: var(--bg-navbar); padding: 16px;
        border-radius: 10px; margin-top: 8px;
    }
    .navbar .nav-link.btn-nav-cta { margin-top: 10px; text-align: center; display: block; }
    .navbar-nav .menu-item-has-children { display: flex; flex-wrap: wrap; align-items: center; }
    .navbar-nav .menu-item-has-children > a { flex: 1; }
    .dropdown-chevron { display: none; }
    .dropdown-mobile-toggle { display: flex; align-items: center; }
    .navbar-nav .sub-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        pointer-events: none;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        margin: 0 0 0 12px;
        padding: 0;
        min-width: auto;
        width: calc(100% - 12px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .navbar-nav .menu-item-has-children.dropdown-open > .sub-menu {
        pointer-events: auto;
        max-height: 600px;
        border-left: 2px solid var(--primary);
        background: rgba(255,255,255,0.04);
        margin: 2px 0 6px 12px;
        padding: 4px 0;
    }
    .navbar-nav .sub-menu a { white-space: normal; padding: 8px 14px !important; }
    .navbar-nav .menu-item-has-children > a::after { display: none !important; }
    .navbar-nav .nav-link::after { display: none !important; }
    .page-header h1 { font-size: 1.8rem; }
    .content-section h2 { font-size: 1.5rem; }
}
@media (max-width: 767px) {
    .hero { min-height: 65vh; }
    .hero h1 { font-size: 1.6rem; }
    section { padding: 45px 0; }
    .section-title { font-size: 1.4rem; }
    .page-header { padding: 50px 0 80px; }
    .page-header h1 { font-size: 1.5rem; }
    .breadcrumb-wrapper { margin-bottom: 10px; }
    .white-section, .light-section, .dark-section { padding: 40px 0; }
    .content-section { padding: 45px 0; }
    .form-wrapper { padding: 24px; }
    .map-wrapper iframe { height: 280px; }
    .slider-main { height: 280px; }
    .camper-card-img { height: 190px; }
    /* Detail-tabs: horizontaal scrollen in plaats van stapelen */
    .detail-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) transparent;
    }
    .detail-tabs .nav-item { flex-shrink: 0; }
    .detail-tabs .nav-link { white-space: nowrap; padding: 12px 16px; font-size: 0.78rem; }
    .detail-tabs::-webkit-scrollbar { height: 4px; }
    .detail-tabs::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
    .tab-pane { padding: 24px 18px; }
}

.wpsbc-legend-item-name{
	color: var(--bg-body);
}
