/* =========================================================
   Leerbroekse Rommelmarkt — redesign 2026
   Ontwerpsysteem: warm, rustig, modern. Familie van hhgleerbroek.nl
   ========================================================= */

:root {
	--ink:        #1f2a2d;   /* hoofdtekst / donkere vlakken */
	--ink-soft:   #3c4a4d;
	--muted:      #62716f;   /* secundaire tekst */
	--primary:    #15535f;   /* diep petrol-blauw */
	--primary-dk: #0e3a43;
	--accent:     #df8636;   /* warm amber (septembermarkt) */
	--accent-dk:  #c06f25;
	--cream:      #fbf7f0;   /* pagina-achtergrond */
	--sand:       #f1e8d9;   /* alternatieve sectie */
	--surface:    #ffffff;   /* kaarten */
	--line:       #e6ddcd;   /* randen */
	--ok:         #2f7d5b;

	--maxw: 1120px;
	--radius: 16px;
	--radius-sm: 10px;
	--shadow-sm: 0 2px 10px rgba(31,42,45,.06);
	--shadow:    0 14px 40px rgba(31,42,45,.12);
	--shadow-lg: 0 24px 60px rgba(31,42,45,.18);

	--font-head: 'Source Serif 4', Georgia, serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

	--header-h: 76px;
}

/* ---------- reset / basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100%;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; border: 0; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-dk); }

h1, h2, h3, h4 {
	font-family: var(--font-head);
	color: var(--ink);
	line-height: 1.15;
	font-weight: 600;
	margin: 0 0 .5em;
}
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { color: #fff; background: var(--primary); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	height: var(--header-h);
	display: flex;
	align-items: center;
	transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header__inner {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-family: var(--font-head);
	line-height: 1.05;
}
.brand__seal {
	width: 42px; height: 42px;
	border-radius: 50%;
	background: #fff;
	padding: 4px;
	box-shadow: var(--shadow-sm);
	flex: 0 0 auto;
	object-fit: contain;
}
.brand__text { display: flex; flex-direction: column; }
.brand__name { font-size: 1.12rem; font-weight: 700; letter-spacing: .2px; }
.brand__sub  { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; font-family: var(--font-body); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
	color: #fff;
	font-size: .82rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 9px 13px;
	border-radius: 999px;
	letter-spacing: .06em;
	opacity: .92;
	transition: background .2s ease, opacity .2s ease, color .2s ease;
}
.nav a:hover { opacity: 1; background: rgba(255,255,255,.14); color: #fff; }
.nav .nav__cta {
	margin-left: 8px;
	background: var(--accent);
	color: #fff;
	font-weight: 600;
	padding: 10px 18px;
	box-shadow: 0 6px 18px rgba(223,134,54,.35);
}
.nav .nav__cta:hover { background: var(--accent-dk); }

/* solid state on scroll */
.site-header.scrolled {
	background: rgba(21,83,95,.97);
	backdrop-filter: blur(6px);
	box-shadow: 0 6px 24px rgba(14,58,67,.28);
	height: 66px;
}

/* burger */
.burger {
	display: none;
	width: 46px; height: 46px;
	border: 0;
	background: rgba(255,255,255,.15);
	border-radius: 12px;
	cursor: pointer;
	color: #fff;
	font-size: 20px;
	align-items: center;
	justify-content: center;
}
.burger:hover { background: rgba(255,255,255,.28); }

/* mobile nav drawer */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 1500;
	background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dk) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
	color: #fff;
	font-family: var(--font-head);
	font-size: 1.6rem;
	padding: 12px 24px;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav__close {
	position: absolute;
	top: 22px; right: 22px;
	width: 48px; height: 48px;
	border: 0; background: rgba(255,255,255,.14);
	color: #fff; font-size: 22px; border-radius: 12px; cursor: pointer;
}
.mobile-nav .nav__cta {
	margin-top: 18px;
	background: var(--accent);
	padding: 12px 26px;
	border-radius: 999px;
	font-size: 1.1rem;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}
.hero--sub { min-height: 56vh; }
.hero__media {
	position: absolute;
	inset: 0;
	/* background-image: url('../files/header/banner.jpg'); */
	background-image: url('../files/header/banner2.jpeg');
	background-size: cover;
	background-position: center;
	transform: scale(1.04);
}
.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		/* donker links waar de tekst staat, helder naar rechts (foto blijft levendig) */
		linear-gradient(90deg, rgba(11,40,46,.90) 0%, rgba(13,52,60,.60) 36%, rgba(14,58,67,.18) 70%, rgba(14,58,67,0) 100%),
		/* lucht bovenin temperen voor de nav, onderin verdiepen voor de feiten-balk */
		linear-gradient(180deg, rgba(11,40,46,.62) 0%, rgba(14,58,67,0) 30%, rgba(14,58,67,0) 56%, rgba(11,40,46,.74) 100%);
}
.hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: var(--header-h) 24px 60px;
}
.hero__eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: .22em;
	font-size: .8rem;
	font-weight: 600;
	padding: 8px 16px;
	border: 1px solid rgba(255,255,255,.5);
	border-radius: 999px;
	margin-bottom: 22px;
	backdrop-filter: blur(2px);
}
.hero__title {
	color: #fff;
	font-size: clamp(2.6rem, 6vw, 4.7rem);
	margin: 0 0 .2em;
	text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero__subtitle {
	font-family: var(--font-head);
	font-weight: 400;
	font-size: clamp(1.2rem, 2.6vw, 1.8rem);
	margin: 0 0 28px;
	opacity: .95;
}
.hero__date {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
	position: absolute;
	left: 50%; bottom: 26px;
	transform: translateX(-50%);
	z-index: 2;
	color: #fff;
	opacity: .85;
	font-size: 22px;
	animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn, .btn-holder .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	padding: 14px 26px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
	text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary, .btn-holder .btn {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 8px 22px rgba(223,134,54,.32);
}
.btn--primary:hover, .btn-holder .btn:hover { background: var(--accent-dk); color: #fff; }
.btn--solid {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 8px 22px rgba(21,83,95,.28);
}
.btn--solid:hover { background: var(--primary-dk); color: #fff; }
.btn--light {
	background: #fff;
	color: var(--primary);
	box-shadow: var(--shadow-sm);
}
.btn--light:hover { color: var(--primary-dk); }
.btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.7);
}
.btn--outline:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn--ghost {
	background: transparent;
	color: var(--primary);
	border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--primary); background: var(--surface); }
.btn-holder { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* legacy calendar button hook */
.button3 {
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--font-body); font-weight: 600; font-size: 1rem;
	border: 2px solid transparent; border-radius: 999px;
	color: #fff; background: var(--accent);
	box-shadow: 0 8px 22px rgba(223,134,54,.32);
	transition: transform .15s ease, background .2s ease;
	cursor: pointer; padding: 14px 26px;
}
.button3:hover { transform: translateY(-2px); background: var(--accent-dk); }
.hero .button3, .hero__actions .button3 { background: #fff; color: var(--primary); }
.hero .button3:hover { background: #f3ede2; }

/* =========================================================
   QUICK FACTS BAND
   ========================================================= */
.facts {
	position: relative;
	z-index: 5;
	margin-top: -56px;
	margin-bottom: 0;
}
.facts__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 28px 24px;
}
.facts__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 6px 10px;
}
.facts__item + .facts__item { border-left: 1px solid var(--line); }
.facts__icon {
	flex: 0 0 auto;
	width: 58px; height: 58px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--sand);
	color: var(--primary);
	font-size: 23px;
}
.facts__label { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; margin-bottom: 3px; }
.facts__value { display: block; font-family: var(--font-head); font-size: 1.18rem; font-weight: 600; color: var(--ink); white-space: nowrap; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 86px 0; position: relative; scroll-margin-top: 80px; }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--white { background: var(--surface); }
.section--dark  { background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dk) 100%); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--tight { padding: 64px 0; }

.section__head { max-width: 960px; margin: 0 auto 46px; text-align: center; }
.section__head.left { margin-left: 0; text-align: left; }
.eyebrow {
	display: inline-block;
	font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
	color: var(--accent-dk);
	margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--accent); }
.section__title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 .25em; }
.lead { font-size: 1.12rem; color: var(--muted); }
.section--dark .lead { color: rgba(255,255,255,.8); }

/* prose: styling voor de tekst die uit het CMS komt */
.prose { font-size: 1.06rem; color: var(--ink-soft); }
.prose h1, .prose h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); color: var(--ink); margin-bottom: .4em; }
.prose strong { color: var(--ink); }
.prose em { color: var(--primary); font-style: italic; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.section--dark .prose { color: rgba(255,255,255,.9); }
.section--dark .prose strong, .section--dark .prose em { color: #fff; }

/* intro centered block */
.intro-block { max-width: 820px; margin: 0 auto; text-align: center; }
.intro-block .btn-holder, .intro-block .hero__actions { justify-content: center; }
.intro-block .button3 { margin-top: 6px; }

/* =========================================================
   FEATURE (tekst + beeld, twee kolommen)
   ========================================================= */
.feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.feature--reverse .feature__media { order: 2; }
.feature__media {
	width: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	aspect-ratio: 4 / 3;
	background: var(--sand) center/cover no-repeat;
	min-height: 320px;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
/* placeholder als er (nog) geen afbeelding uit het CMS is */
.feature__media--empty {
	background: #f2f3f3;
	box-shadow: none;
	border: 1px dashed #dfe3e2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 24px;
	text-align: center;
	color: #aeb6b5;
}
.feature__media--empty i { font-size: 2.4rem; opacity: .7; }
.feature__media--empty span { font-family: var(--font-head); font-size: 1.15rem; }
.feature__body h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }

/* card */
.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 36px;
}

/* =========================================================
   SLIDER (eigen, paginabreed, met navigatieknoppen)
   ========================================================= */
.cslider { position: relative; width: 100%; }
.cslider__viewport {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 8px clamp(24px, 6vw, 96px);
	scrollbar-width: none;
	-ms-overflow-style: none;
	overscroll-behavior-x: contain;
}
.cslider__viewport::-webkit-scrollbar { display: none; }
.cslider__item {
	flex: 0 0 auto;
	width: 260px;
	height: 330px;
	scroll-snap-align: center;
	background-color: var(--surface);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
	transition: transform .3s ease, box-shadow .3s ease;
}
.cslider__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cslider--photos .cslider__item { width: 420px; height: 280px; background-size: cover; }
.cslider__btn {
	position: absolute; top: 50%; transform: translateY(-50%);
	z-index: 4;
	width: 54px; height: 54px;
	display: flex; align-items: center; justify-content: center;
	border: none; border-radius: 50%; cursor: pointer;
	background: #fff; color: var(--primary);
	box-shadow: var(--shadow); font-size: 18px;
	transition: background .2s ease, color .2s ease, transform .15s ease;
}
.cslider__btn:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.07); }
.cslider__btn:active { transform: translateY(-50%) scale(.96); }
.cslider__btn--prev { left: clamp(8px, 2vw, 28px); }
.cslider__btn--next { right: clamp(8px, 2vw, 28px); }
@media (max-width: 600px) {
	.cslider__btn { width: 44px; height: 44px; font-size: 16px; }
	.cslider__item { width: 220px; height: 290px; }
	.cslider--photos .cslider__item { width: 300px; height: 220px; }
}

/* =========================================================
   FORMULIEREN
   ========================================================= */
.form-card {
	max-width: 720px;
	margin: 0 auto;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 40px;
	text-align: left;
}
.contactform { margin-top: 8px; }
.contactform label {
	display: block;
	font-weight: 600;
	color: var(--ink);
	margin: 18px 0 6px;
	font-size: .98rem;
}
.contactform input,
.contactform textarea,
.contactform select {
	width: 100%;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--ink);
	background: var(--cream);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 13px 16px;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
	box-sizing: border-box;
	margin: 0 0 14px;
	opacity: 1;
}
/* losse <br>'s in het formulier uit; ruimte komt via marges */
.contactform br { display: none; }
.contactform .buttonForm { margin-top: 8px; }
.contactform input { height: 50px; }
.contactform textarea { min-height: 120px; max-height: 280px; resize: vertical; line-height: 1.6; }
.contactform input::placeholder, .contactform textarea::placeholder { color: #9aa6a4; }
.contactform input:focus,
.contactform textarea:focus,
.contactform select:focus {
	outline: none;
	background: #fff;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(21,83,95,.12);
	transform: none;
}
.contactform input[type="file"] {
	height: auto;
	padding: 11px 14px;
	border-style: dashed;
	cursor: pointer;
}
.contactform input[type="file"]::file-selector-button {
	font-family: var(--font-body);
	font-weight: 600;
	color: #fff;
	background: var(--primary);
	border: none;
	border-radius: 8px;
	padding: 9px 15px;
	margin-right: 14px;
	cursor: pointer;
	transition: background .2s ease;
}
.contactform input[type="file"]::file-selector-button:hover { background: var(--primary-dk); }

/* checkbox / radio groepen */
.choosen {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 22px 24px;
	margin-bottom: 8px;
}
.choosen b {
	display: block;
	color: var(--primary);
	font-family: var(--font-head);
	font-size: 1.1rem;
	margin: 24px 0 12px;
	padding-left: 12px;
	border-left: 3px solid var(--accent);
}
.choosen b:first-child { margin-top: 0; }
.choosen > br { display: none; }
.checkLabel {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	margin-bottom: 8px;
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
	cursor: pointer;
}
.checkLabel:hover { border-color: var(--primary); }
.checkLabel:has(input:checked) {
	border-color: var(--accent);
	background: rgba(223,134,54,.08);
	box-shadow: 0 2px 10px rgba(223,134,54,.14);
}
.checkLabel input[type="checkbox"],
.checkLabel input[type="radio"],
div.choosen input[type="checkbox"],
div.choosen input[type="radio"] {
	flex: 0 0 auto;
	width: 20px; height: 20px;
	min-width: 20px;
	accent-color: var(--accent);
	cursor: pointer;
	margin: 0;
}
.checkLabel label { margin: 0; font-weight: 500; cursor: pointer; flex: 1; }
/* hele rij klikbaar: klikken op input/label gaat door naar .checkLabel, die toggelt via JS */
.checkLabel input, .checkLabel label { pointer-events: none; }

/* submit knop (legacy class .buttonForm) */
.buttonForm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: var(--accent);
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	padding: 14px 26px;
	border: 2px solid transparent;
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(223,134,54,.32);
	transition: transform .15s ease, background .2s ease;
	cursor: pointer;
}
.buttonForm:hover { transform: translateY(-2px); background: var(--accent-dk); }
.buttonForm::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f0e0";   /* envelope / mail */
	font-size: .95em;
}
#send, span#send {
	display: none;
	background: rgba(47,125,91,.12);
	color: var(--ok);
	border: 1px solid rgba(47,125,91,.4);
	border-radius: var(--radius-sm);
	padding: 14px 18px;
	font-weight: 600;
}

/* Toasts worden door toastr verzorgd (rechtsboven) — zie head + JS. */

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
	background: var(--ink);
	color: rgba(255,255,255,.82);
	padding: 70px 0 40px;
	scroll-margin-top: 80px;
}
.site-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer h3 {
	color: #fff;
	font-size: 1.25rem;
	margin-bottom: 14px;
}
.site-footer__brand { display:flex; align-items:center; gap: 14px; margin-bottom: 16px; }
.site-footer__brand img { width: 52px; height: 52px; border-radius: 50%; background:#fff; padding:5px; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--accent); }
.site-footer__col p { margin-bottom: .5em; line-height: 1.7; }
.site-footer__socials { display: flex; gap: 12px; margin-top: 14px; }
.site-footer__socials a {
	width: 42px; height: 42px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	color: #fff; font-size: 18px;
	transition: background .2s ease, transform .15s ease;
}
.site-footer__socials a:hover { background: var(--accent); transform: translateY(-2px); }
.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 28px;
	font-size: .88rem;
	color: rgba(255,255,255,.55);
}
.site-footer__bottom a { color: rgba(255,255,255,.7); }

/* =========================================================
   FLY-IN ANIMATIES
   ========================================================= */
.js-scroll { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.js-scroll.scrolled { opacity: 1; transform: translateY(0); }
.fade  { animation: fadein 1.2s ease both; }
.fade1 { animation: fadein 1.8s ease both; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* =========================================================
   COMPAT: oude opmaak van de formulier-subpagina's
   (header_foto / info_text / tekst) in de nieuwe stijl
   ========================================================= */
.header_foto.small { position: relative; width: 100%; }
.slide_header_show_img {
	position: relative;
	min-height: 46vh;
	display: flex; flex-direction: column; justify-content: center; align-items: center;
	text-align: center; color: #fff;
	padding: calc(var(--header-h) + 24px) 24px 50px;
	/* zelfde gradient als de homepage-hero */
	background-image:
		linear-gradient(90deg, rgba(11,40,46,.90) 0%, rgba(13,52,60,.60) 36%, rgba(14,58,67,.18) 70%, rgba(14,58,67,0) 100%),
		linear-gradient(180deg, rgba(11,40,46,.62) 0%, rgba(14,58,67,0) 30%, rgba(14,58,67,0) 56%, rgba(11,40,46,.74) 100%),
		url('https://www.leerbroekserommelmarkt.nl/files/header/banner2.jpeg');
	background-size: cover; background-position: center;
}
.slide_header_show_img h2 { color: #fff; font-weight: 400; font-size: clamp(1.3rem, 3vw, 1.9rem); margin: 0 0 .25em; opacity: .95; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.slide_header_show_img h3 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin: 0; text-shadow: 0 2px 24px rgba(0,0,0,.35); }

.info_text { background: var(--cream); padding: 70px 0; }
.info_text.bg1 { background: var(--cream); }
.info_text.bg3 { background: linear-gradient(160deg, var(--primary), var(--primary-dk)); color: #fff; }
.info_text_inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.info_text_inner .page { display: block; }
.info_text_inner .tekst { font-size: 1.06rem; color: var(--ink-soft); }
.info_text_inner .tekst h1 { font-family: var(--font-head); font-size: clamp(1.7rem, 3.6vw, 2.4rem); color: var(--ink); margin: 0 0 .5em; }

/* formulier als kaart binnen de subpagina */
.info_text_inner .contactform {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 30px;
	margin-top: 26px;
}

/* mobiel menu uniform in hoofdletters */
.mobile-nav a { text-transform: uppercase; letter-spacing: .04em; font-size: 1.4rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
	.facts__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
	.facts__item + .facts__item { border-left: none; }
}
@media (max-width: 900px) {
	.nav { display: none; }
	.burger { display: flex; }
	.feature { grid-template-columns: 1fr; gap: 30px; }
	.feature--reverse .feature__media { order: 0; }
	.feature__media { min-height: 260px; aspect-ratio: 16/10; }
	.section { padding: 64px 0; }
	.site-footer__top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
	body { font-size: 16px; }
	.hero { min-height: 92vh; }
	.facts { margin-top: -34px; }
	.facts__grid { grid-template-columns: 1fr; padding: 22px; gap: 14px; }
	.form-card, .card { padding: 26px 20px; }
	.section__head { margin-bottom: 34px; }
}
@media (max-width: 480px) {
	.container { padding: 0 18px; }
	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__actions .btn, .hero__actions .button3 { width: 100%; }
	.brand__sub { display: none; }
}
