/* =========================================================
   Zorg op Weg — main.css
   Eén stylesheet voor het hele theme. Geen framework.

   Herontwerp-ronde (redesign, inhoud/structuur ongewijzigd):
   warmer en speelser dan de eerste, zeer strakke versie —
   foto's nadrukkelijker, afwisselende sectie-opbouw, zachte
   schaduwen/afgeronde hoeken, ronde iconen — met behoud van
   de turquoise/donkergroene huisstijl en rustige, goed
   leesbare typografie (doelgroep is deels 60+).
   ========================================================= */

:root {
	--teal: #74d6c9;
	--teal-soft: #dcf3ef;
	--teal-dark: #3e8e86;
	--teal-deep: #2e6b65;
	--navy: #1c4f5e;
	--navy-deep: #123844;
	--ink: #293338;
	--ink-soft: #5b676c;
	--bg: #ffffff;
	--bg-soft: #f5fbfa;
	--bg-warm: #fbfaf6;
	--border: #dfe7e6;

	--radius: 18px;
	--radius-sm: 10px;
	--shadow: 0 24px 48px -18px rgba(18, 56, 68, 0.28);
	--shadow-soft: 0 12px 28px -14px rgba(18, 56, 68, 0.22);

	--wrap-width: 1180px;
	--wrap-narrow-width: 760px;
	--wrap-breed-width: 980px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: var(--teal-deep);
	text-decoration: none;
}

a:hover {
	color: var(--navy);
}

h1,
h2,
h3,
h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.25;
	margin: 0 0 16px;
}

h1 {
	font-size: clamp(28px, 4vw, 44px);
}

h2 {
	font-size: clamp(24px, 3vw, 33px);
}

h3 {
	font-size: 19px;
}

p {
	margin: 0 0 16px;
}

ul,
ol {
	padding-left: 20px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--navy);
	color: #fff;
	padding: 10px 16px;
	z-index: 1000;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

/* ---------- Layout helpers ---------- */
.wrap {
	max-width: var(--wrap-width);
	margin: 0 auto;
	padding: 0 24px;
}

.wrap-narrow {
	max-width: var(--wrap-narrow-width);
}

.wrap-breed {
	max-width: var(--wrap-breed-width);
}

.section {
	padding: 72px 0;
	position: relative;
}

.section-tight {
	padding: 48px 0;
}

.eyebrow {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--teal-deep);
	background: var(--teal-soft);
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.lede {
	font-size: 17px;
	color: var(--ink-soft);
	max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	padding: 14px 28px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 14.5px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-teal {
	background: var(--teal);
	color: var(--navy-deep);
	box-shadow: 0 12px 24px -10px rgba(62, 142, 134, 0.55);
}

.btn-teal:hover {
	background: var(--teal-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	border-color: var(--navy);
	color: var(--navy);
}

.btn-outline:hover {
	background: var(--navy);
	color: #fff;
	transform: translateY(-1px);
}

.btn-sm {
	padding: 10px 20px;
	font-size: 13px;
}

.link-arrow {
	display: inline-block;
	margin-top: 24px;
	font-weight: 600;
	color: var(--navy);
	border-bottom: 1.5px solid var(--teal);
	padding-bottom: 2px;
}

.link-arrow::after {
	content: '→';
	margin-left: 6px;
	transition: margin-left 0.15s ease;
}

.link-arrow:hover::after {
	margin-left: 10px;
}

/* ---------- Topbar ---------- */
.topbar {
	background: var(--teal);
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 24px;
}

.topbar-tagline,
.topbar-link {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--navy-deep);
}

.topbar-link {
	opacity: 0.85;
}

.topbar-link:hover {
	opacity: 1;
	color: var(--navy-deep);
}

/* ---------- Header ---------- */
.site-header {
	background: #fff;
	position: relative;
	z-index: 40;
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 24px;
	position: relative;
}

.brand {
	display: block;
	flex: none;
}

.brand-logo,
.brand img {
	height: 52px;
	width: auto;
}

.header-nav-area {
	display: flex;
	align-items: center;
	gap: 32px;
	flex: 1;
	justify-content: flex-end;
}

.primary-nav-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin: 0;
	padding: 0;
}

.primary-nav-list a {
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--ink);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
}

.primary-nav-list a:hover {
	color: var(--teal-dark);
	border-bottom-color: var(--teal);
}

.header-cta {
	flex: none;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}

.menu-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--navy);
	margin: 5px 0;
}

/* ---------- CTA strip ---------- */
.cta-strip {
	background: var(--navy);
	padding: 11px 0;
	text-align: center;
}

.cta-strip span {
	color: #fff;
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.01em;
}

/* =========================================================
   Hero — grote brede foto, tekstkaart legt er gedeeltelijk
   overheen (net als het bezoek-blok op de oude Zorg op
   Weg-homepage).
   ========================================================= */
.section-hero {
	padding: 0 0 100px;
	position: relative;
}

.hero-photo-wrap {
	position: relative;
	width: 100%;
	height: min(640px, 78vh);
	min-height: 420px;
	overflow: hidden;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-photo-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18, 56, 68, 0.12) 0%, rgba(18, 56, 68, 0) 35%, rgba(18, 56, 68, 0.05) 100%);
}

.hero-card {
	position: relative;
	z-index: 5;
	max-width: 560px;
	margin: -120px 0 0 auto;
	margin-inline-start: auto;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 40px 44px;
}

.section-hero .wrap {
	position: relative;
}

.section-hero-text h1 {
	margin-bottom: 18px;
}

.section-hero-text .lede {
	max-width: none;
}

/* ---------- Drie situaties ---------- */
.section-situaties {
	background: var(--bg-warm);
}

.situaties-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.situatie-card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 32px 28px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.situatie-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.situatie-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--teal-soft);
	color: var(--teal-deep);
	margin-bottom: 18px;
}

.situatie-icon svg {
	width: 24px;
	height: 24px;
}

.situatie-card h2 {
	font-size: 19px;
	margin-bottom: 10px;
}

.situatie-card p {
	color: var(--ink-soft);
	margin: 0;
}

/* =========================================================
   Waarom Zorg op Weg — twee kolommen, foto + tekst, met een
   uitgelichte kernzin.
   ========================================================= */
.section-waarom-inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.waarom-image {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.section-waarom h2 {
	margin-bottom: 18px;
}

.section-waarom p {
	font-size: 16.5px;
	color: var(--ink-soft);
}

.waarom-highlight {
	margin: 20px 0 0;
	padding: 20px 24px;
	background: var(--teal-soft);
	border-radius: var(--radius-sm);
	color: var(--navy-deep) !important;
	font-weight: 600;
	font-size: 16.5px !important;
}

/* =========================================================
   Wat kunnen wij voor u doen — open opzet met ronde iconen,
   geen harde kaartranden.
   ========================================================= */
.section-wat-doen-we {
	background: var(--bg-soft);
}

.section-wat-doen-we .section-heading {
	max-width: 640px;
	margin: 0 auto 48px;
	text-align: center;
}

.doen-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 44px;
}

.doen-card {
	text-align: left;
}

.doen-icon {
	display: inline-flex;
	width: 62px;
	height: 62px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--teal);
	color: var(--navy-deep);
	margin-bottom: 18px;
	box-shadow: 0 14px 26px -12px rgba(62, 142, 134, 0.6);
}

.doen-icon svg {
	width: 26px;
	height: 26px;
}

.doen-card h3 {
	margin-bottom: 8px;
}

.doen-card p {
	color: var(--ink-soft);
	margin: 0;
}

/* =========================================================
   Werkwijze — als een route: genummerde stappen verbonden
   door een lijn, "op weg" naar de oplossing.
   ========================================================= */
.section-werkwijze .section-heading {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 8px;
}

.werkwijze-route {
	position: relative;
	margin-top: 56px;
}

.werkwijze-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	position: relative;
}

.werkwijze-route::before {
	content: '';
	position: absolute;
	top: 21px;
	left: calc(12.5% + 21px);
	right: calc(12.5% + 21px);
	height: 2px;
	background: repeating-linear-gradient(90deg, var(--teal) 0 10px, transparent 10px 18px);
}

.werkwijze-step {
	position: relative;
	text-align: center;
	padding: 0 8px;
}

.werkwijze-nummer {
	position: relative;
	z-index: 2;
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 18px;
	box-shadow: var(--shadow-soft);
}

.werkwijze-step h3 {
	margin-bottom: 8px;
	font-size: 17px;
}

.werkwijze-step p {
	color: var(--ink-soft);
	margin: 0;
	font-size: 15px;
}

.werkwijze-cta {
	text-align: center;
}

.werkwijze-cta .link-arrow {
	margin-top: 40px;
}

/* =========================================================
   Split-secties (familie, noodboekje, over ons) — grote foto
   naast tekst, telkens met eigen accent.
   ========================================================= */
.section-familie-inner,
.section-over-ons-inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
}

.section-noodboekje-inner {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 60px;
	align-items: center;
}

.familie-image,
.over-ons-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.section-familie {
	background: var(--bg-warm);
}

.image-note {
	font-size: 12.5px;
	color: var(--ink-soft);
	font-style: italic;
	margin-top: 8px;
}

/* Noodboekje: eigen turquoise sfeer, cover-afbeelding met lichte draai + schaduw */
.section-noodboekje {
	background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
	color: #fff;
	overflow: hidden;
	position: relative;
}

.section-noodboekje::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: rgba(116, 214, 201, 0.16);
}

.section-noodboekje h2,
.section-noodboekje .eyebrow {
	color: #fff;
}

.section-noodboekje .eyebrow {
	background: rgba(255, 255, 255, 0.14);
	color: #dff5f1;
}

.section-noodboekje p {
	color: #d7e6e4;
}

.section-noodboekje .btn-outline {
	border-color: #fff;
	color: #fff;
}

.section-noodboekje .btn-outline:hover {
	background: #fff;
	color: var(--navy-deep);
}

.noodboekje-media {
	position: relative;
	display: flex;
	justify-content: center;
}

.noodboekje-image {
	width: 78%;
	max-width: 320px;
	border-radius: var(--radius-sm);
	box-shadow: 0 30px 60px -14px rgba(0, 0, 0, 0.45);
	transform: rotate(-4deg);
}

/* Over ons: grote persoonlijke foto */
.section-over-ons {
	background: #fff;
}

/* ---------- Slot-CTA ---------- */
.section-cta {
	padding: 0;
}

.section-cta-block {
	background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
	border-radius: var(--radius);
	padding: 64px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.section-cta-block::before,
.section-cta-block::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

.section-cta-block::before {
	width: 260px;
	height: 260px;
	top: -120px;
	left: -80px;
}

.section-cta-block::after {
	width: 180px;
	height: 180px;
	bottom: -90px;
	right: -40px;
}

.section-cta h2,
.section-cta p {
	color: #fff;
	position: relative;
}

.section-cta-inner {
	max-width: 560px;
	margin: 0 auto;
	position: relative;
}

.section-cta p {
	color: #d7e6e4;
}

/* ---------- 404 ---------- */
.section-404 {
	text-align: center;
}

.section-404-inner {
	max-width: 520px;
	margin: 0 auto;
}

.section-404-links {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-top: 8px;
	flex-wrap: wrap;
}

/* ---------- Generieke pagina's (page.php, single.php, brede pagina, contact) ---------- */
.page-header {
	padding: 48px 0 32px;
	border-bottom: 1px solid var(--border);
}

.page-featured-image img {
	width: 100%;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	border-radius: var(--radius);
}

.page-featured-image {
	padding-top: 8px;
}

.entry-content {
	padding: 48px 0;
}

.entry-content h2 {
	margin-top: 40px;
}

.entry-content h2:first-child {
	margin-top: 0;
}

.entry-content p,
.entry-content li {
	color: var(--ink-soft);
	font-size: 16.5px;
}

.entry-content-breed h2 {
	border-top: 1px solid var(--border);
	padding-top: 32px;
}

.entry-content-breed h2:first-child {
	border-top: none;
	padding-top: 0;
}

.post-meta {
	color: var(--ink-soft);
	font-size: 13.5px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* ---------- Contactpagina ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 56px;
	padding: 48px 0;
	align-items: start;
}

.contact-info-box {
	background: var(--bg-soft);
	border-radius: var(--radius);
	padding: 28px;
}

.contact-info-box h2 {
	font-size: 18px;
	margin-bottom: 14px;
}

/* ---------- Kennis (blog) ---------- */
.kennis-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	padding: 40px 0 64px;
}

.kennis-card {
	display: block;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	color: var(--ink);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.kennis-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.kennis-card-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.kennis-card-body {
	padding: 20px;
}

.kennis-card-body h2 {
	font-size: 18px;
	margin: 6px 0 8px;
}

.kennis-card-body p {
	color: var(--ink-soft);
	font-size: 15px;
	margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--navy-deep);
	color: #cfe4e1;
	margin-top: 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	padding: 56px 24px 32px;
}

.footer-brand {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #fff;
	font-size: 18px;
	margin-bottom: 10px;
}

.footer-heading {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 14px;
}

.site-footer a {
	color: #cfe4e1;
}

.site-footer a:hover {
	color: var(--teal);
}

.footer-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav-list li {
	margin-bottom: 8px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 12.5px;
}

.footer-legal a {
	margin-left: 16px;
}

.footer-legal a:first-child {
	margin-left: 0;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
	.section-waarom-inner,
	.section-familie-inner,
	.section-noodboekje-inner,
	.section-over-ons-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.section-noodboekje-inner .noodboekje-media {
		order: -1;
	}

	.hero-card {
		margin-top: -80px;
		padding: 32px;
		max-width: none;
	}

	.situaties-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.doen-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.werkwijze-steps {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 40px;
	}

	.werkwijze-route::before {
		display: none;
	}

	.kennis-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 720px) {
	.topbar-tagline {
		font-size: 11px;
	}

	.menu-toggle {
		display: block;
	}

	.header-nav-area {
		display: none;
		width: 100%;
		order: 3;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.header-nav-area.is-open {
		display: flex;
	}

	.site-header-inner {
		flex-wrap: wrap;
	}

	.primary-nav-list {
		flex-direction: column;
		gap: 4px;
		padding: 16px 0 8px;
		border-top: 1px solid var(--border);
		margin-top: 16px;
		width: 100%;
	}

	.primary-nav-list a {
		display: block;
		padding: 10px 0;
	}

	.header-cta {
		margin: 4px 0 16px;
	}

	.header-cta .btn {
		display: block;
		text-align: center;
	}

	.section {
		padding: 48px 0;
	}

	.hero-photo-wrap {
		height: 320px;
		min-height: 260px;
		border-radius: 0 0 var(--radius) var(--radius);
	}

	.hero-card {
		margin-top: -48px;
		border-radius: var(--radius);
	}

	.section-cta-block {
		padding: 44px 24px;
	}

	.situaties-grid,
	.doen-grid,
	.werkwijze-steps,
	.kennis-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
	}
}
