/* ==========================================================================
   Section spacing & surfaces - Schildersbedrijf J. Bastiaansen
   Eenvoudige, consistente section spacing
   ========================================================================== */

:root {
	--section-padding: 4rem;
	--section-padding-lg: 6rem;
}

@media (min-width: 1024px) {
	:root {
		--section-padding: 6rem;
		--section-padding-lg: 8rem;
	}
}

/* ---------- Base sections ---------- */
.site-section,
.page-section,
.reviews-section,
.related-section,
.trust-section {
	margin: 0;
	padding: var(--section-padding) 0;
}

.content > .site-section {
	display: flow-root;
}

/* ---------- Achtergronden ---------- */
.site-section[data-surface="alt"],
.page-section--soft,
.section--soft {
	background: var(--bg-soft);
}

.site-section[data-surface="dark"],
.reviews-section,
.section--dark {
	background: var(--bg-dark);
	color: #ffffff;
}

.site-section[data-surface="dark"] h2,
.site-section[data-surface="dark"] h3 {
	color: #ffffff;
}

.site-section[data-surface="dark"] p {
	color: rgba(255, 255, 255, 0.8);
}

/* ---------- Section transitions ---------- */
.home-hero + .content > .site-section:first-child,
.page-hero + .content > .site-section:first-child {
	padding-top: var(--section-padding);
}

/* ---------- Page main content ---------- */
main.page {
	padding: var(--section-padding) 0;
}

main.page:has(> .detail-hero) {
	padding-top: 2rem;
}

/* ---------- CTA sections ---------- */
.cta-section {
	background: var(--bg-dark);
	color: #ffffff;
	padding: var(--section-padding-lg) 0;
	text-align: center;
}

.cta-section h2 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.8);
	max-width: 600px;
	margin: 0 auto 2rem;
}

.cta-section .btn-primary {
	background: var(--accent);
}

.cta-section .btn-primary:hover {
	background: var(--accent-dark);
}

/* ---------- Text content ---------- */
.page-section ul {
	margin: 0 0 1em;
}

.page-section .text-block {
	margin: 0 auto;
	max-width: 800px;
}