:root {
	--Page-Background: #FAF9F7;
	--Base-Text: #454430;
	--White: #FFFFFF;
	--Black: #27241D;

	--Primary-Dark: #454430;
	--Primary-Mid: #847361;
	--Primary-Soft: #7F795F;
	
	--Nav-back		: #7F795F;
	--Nav-front		: #454430;

	--Footer-Background: #F5ECE3;
	--Placeholder-Background: #FAF9F7;

	--Border-Light: #EAEAEA;
	--Border-Soft: #D1D9E0;

	--Muted-Text: #888888;
	--Light-Text: #999999;
	--Placeholder-Text: #A0AEC0;

	--Shadow-Soft: 0 2px 4px rgba(0,0,0,0.25);
	--Shadow-Box: 0 4px 15px rgba(0,0,0,0.04);
}

@font-face {
	font-family: 'Alegreya';
	src: url('fonts/Alegreya.woff2') format('woff2'),
	src:url('fonts/Alegreya-VariableFont_wght.ttf')  format('truetype');
}

* {
	box-sizing			: border-box;
}

html, body {
	height				: 100%;
	margin				: 0;
	padding				: 0;
}

body {
	font-family			: 'Alegreya', Helvetica, Arial, sans-serif;
	background-color	: var(--Page-Background);
	color				: var(--Base-Text);
	line-height			: 1.6;
	display				: flex;
	flex-direction		: column;
	min-height			: 100vh;
}

DIV.logo { order: 1; }
DIV.navigation { order: 2; }
DIV.breadcrumbs { order: 3; }
DIV.body { order: 4; flex: 1; }
DIV.footer { order: 5; }

div.logo {
	position	: sticky;
	top			: 0;
	order: 1;
	width: 100%;
	margin: 0;
	height: 0;
	z-index: 20;
	pointer-events: none;
}

div.logo a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none;
	position: absolute;
	left: max(5%, calc(50% - 500px));
	top: 0.3rem;
	pointer-events: auto;
}

div.logo img.logo {
	position		: fixed;
	top				: 5px;
	z-index			: 1000;
	height			: 90px;
	max-width		: min(24vw, 340px);
	padding			: 0;
	border			: 0;
	display			: block;
	background		: transparent;
	transition		: opacity 300ms ease;
}

DIV.logo DIV.title {
	text-align: center;
	display	: none;
}

DIV.logo DIV.title H1 {
	font-size: 1.6rem;
	color: var(--Primary-Dark);
	margin: 0;
	font-weight: 300;
}

div.navigation {
	position				: fixed;
	top						: 5px;
	z-index					: 10;
	background				: transparent;
	order					: 2;
	max-width				: 100%;
	display					: flex;
	justify-content			: center;
	align-items				: center;
	align-self				: anchor-center;
	box-shadow				: var(--Shadow-Box);
	width					: 1020px;
}

div.navigation ul {
	background-color		: #7F795F54;
	backdrop-filter			: blur(5px);
	border					: 1px solid var(--Border-Soft);
	box-shadow				: var(--Primary-Soft);
	display					: flex;
	flex-wrap				: wrap;
	flex-direction			: row;
	justify-content			: center;
	align-items				: center;
	gap						: 0.65em 0.85em;
	list-style-type			: none;
	margin					: 0;
	width					: 100%;
	min-height				: 90px;
	border-radius			: 4px;
}

DIV.navigation UL LI A {
	display					: block;
	padding					: 16px 20px;
	color					: var(--White) !important;
	text-decoration			: none;
	font-weight				: 500;
	font-size				: 0.95rem;
	transition				: background 0.3s ease;
	background-color		: var(--Nav-back);
	border-radius			: 4px;
}

DIV.navigation UL LI A:hover,
DIV.navigation UL LI.currentpage A {
	background-color		: var(--Nav-front);
	text-decoration			: none !important;
	text-shadow				: 0 0 2px White;
}

DIV.navigation SPAN.separator {
	display					: none;
}

DIV.breadcrumbs {
	display					: none;
}

DIV.body {
	padding					: 100px 5%;
}

.site-wrap {
	max-width: 1000px;
	margin: 0 auto;
}
.site-wrap > H1{
	text-align: center;
}
.site-wrap > .lead{
	text-align: center;
	max-width: 100%;
	margin-bottom: 20px;
}
H1 {
	font-size: 2.4rem;
	color: var(--Primary-Dark);
	margin-bottom: 15px;
	font-weight: 300;
}

H2 {
	font-size: 1.8rem;
	color: var(--Primary-Dark);
	margin-top: 30px;
	margin-bottom: 20px;
	font-weight: 400;
}

H2.quote {
	text-align: center;
}
.em {
	text-align: center;
}
H3 {
	font-size: 1.4rem;
	color: var(--Primary-Mid);
	margin-top: 20px;
}

.lead {
	font-size: 1.25rem;
	color: var(--Primary-Soft);
	margin-bottom: 40px;
	font-weight: 300;
	max-width: 800px;
}

.home {
	font-size				: 2.5rem;
	color					: #FFFFFF;
	background-color		: #7F795F;
	border-radius			: 5px;
	text-shadow				: 0 0 10px #000;
}
.side-by-side,
.columns {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}

.column {
	flex: 1;
	min-width: 300px;
}

.box {
	background: var(--White);
	padding: 30px;
	border-radius: 12px;
	border: 1px solid var(--Border-Light);
	box-shadow: var(--Shadow-Box);
	background: radial-gradient(85.52% 158.67% at 50% 33%, #FFF 50%, #D9D9D9 80%, #DBDBDB 90%, #FFF 100%);
}

.subject_change {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--Border-Light);
}

.review {
	background: #7d7960;
	color: white;
}

.review H2 {
	color			: white;
	margin-top		: 0px;
}

.button {
	display: inline-block;
	background-color: var(--Nav-back);	
	color: var(--White) !important;
	padding: 12px 28px;
	border-radius: 5px;
	text-decoration: none !important;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	margin-top: 30px;
}

.button:hover {
	background-color: var(--Nav-front);
	transform: translateY(-5px);
	text-shadow				: 0 0 2px White;
}


.home-image, 
.overmij-image, 
.werkwijze-image, 
.contact-image {
	display							: flex;
	align-items						: center;
	border-radius					: 12px;
	flex-direction					: column;
}
.home-image P, .home-image H3,
.werkwijze-image P, .werkwijze-image H3,
.overmij-image P, .overmij-image H3,
.praktijk-nu P, .praktijk-nu H3,
.contact-image P, .contact-image H3{
	text-align						: center;
	max-width						: 85%;
	margin							: 0;
	color							: var(--Primary-Dark);
}

.praktijk-nu {
	display							: flex;
	align-items						: center;
	flex-direction					: column;
}

.praktijk-nu IMG{
	max-width: 70%;
	display: flex;
	border-radius: 12px;
	color: var(--Placeholder-Text);
	border: 1px solid var(--Border-Soft);
}

.home-image IMG,.overmij-image IMG, .werkwijze-image IMG, .contact-image IMG{
	max-width: 85%;
	display: flex;
	border-radius: 12px;
	border: 1px solid var(--Border-Soft);
}

table {
	display: table;
	border-spacing: 2px;
	border-collapse: separate;
	box-sizing: border-box;
	text-indent: 0;
	text-align: left;
}

td {
	min-width: 10em;
}

.faq-section {
	margin-top: 50px;
}

.faq-intro {
	color: var(--Primary-Soft);
	margin-bottom: 30px;
	max-width: 800px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.faq-item {
	background: var(--White);
	border: 1px solid var(--Border-Light);
	border-radius: 12px;
	box-shadow: var(--Shadow-Box);
	overflow: hidden;
}

.faq-question {
	margin: 0;
	padding: 18px 24px;
	font-size: 1.1rem;
	line-height: 1.4;
	color: var(--Primary-Dark);
	background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(127, 121, 95, 0.48) 100%);
	border-bottom: 1px solid var(--Border-Light);
}

.faq-answer {
	padding: 18px 24px 20px 24px;
	background-color: rgba(255,255,255,0.82);
}

.faq-answer P {
	margin: 0;
}

@media (max-width: 768px) {
	.faq-question {
		padding: 16px 18px;
		font-size: 1rem;
	}

	.faq-answer {
		padding: 16px 18px 18px 18px;
	}
}


DIV.footer {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(220px, 1fr));
	column-gap: 40px;
	row-gap: 10px;
	align-items: start;
	background-color: var(--Footer-Background);
	padding: 50px 10% 70px 10%;
	border-top: 1px solid var(--Border-Light);
	color: var(--Base-Text);

}

DIV.footer .category {
	justify-content: space-between;
	display: flex;
	flex-direction: column;
	text-align: center;
}

DIV.footer .category:first-child {
	margin-left: 30%;
}

DIV.footer .category:nth-child(2) {
	margin-right: 30%;
}

DIV.footer > H2 {
	font-size: 1.1rem;
	color: var(--Primary-Dark);
	margin: 0 0 20px 0;
	border: none;
	text-transform: uppercase;
	letter-spacing: 1px;
}

DIV.footer > P {
	font-size: 0.9rem;
	margin: 0 0 10px 0;
}

DIV.footer A {
	color: var(--Primary-Mid);
	text-decoration: none;
}

DIV.footer A:hover {
	text-decoration: underline;
}

DIV.footer > H2:nth-of-type(1) {
	grid-column: 1;
	grid-row: 1;
}

DIV.footer > P:nth-of-type(1) {
	grid-column: 1;
	grid-row: 2;
}

DIV.footer > H2:nth-of-type(2) {
	grid-column: 2;
	grid-row: 1;
}

DIV.footer > P:nth-of-type(2) {
	grid-column: 2;
	grid-row: 2;
}

DIV.footer > H2:nth-of-type(3) {
	grid-column: 3;
	grid-row: 1;
}

DIV.footer > P:nth-of-type(3) {
	grid-column: 3;
	grid-row: 2;
}

DIV.footer > P:nth-of-type(4) {
	grid-column: 3;
	grid-row: 3;
}

DIV.footer > P:nth-of-type(5) {
	grid-column: 3;
	grid-row: 4;
}

.social-button IMG {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.social-button:hover IMG {
	opacity: 1;
}

form {
	color: var(--text-strong);
	margin: 1em 0;
	width: 100%;
	box-sizing: border-box;
}

form p {
	margin: 0;
	padding: 0;
	clear: right;
}

form p + p {
	padding-top: 1em;
}

form p.controls {
	text-align: right;
}

form p.error {
	color: #de0000;
	font-size: large;
}

form p.controls a {
	margin-right: 1em;
}

form input,
button,
textarea {
	font-family: 'OpenSans', Helvetica, Arial, sans-serif;
	font-size: medium;
	background: var(--Page-Background);
	color: var(--Base-Text);
	border: 1px solid var(--Primary-Soft);
	border-radius: 0.4em;
	box-sizing: border-box;
	margin: 0;
	padding: 0.5em 0.65em;
}

form input,
textarea {
	float: right;
	width: 66%;
}

input[readonly] {
	border-color: #b66565;
	background: #efe8f7;
}

form button {
	min-width: 8em;
}

form.compactForm {
	background: transparent;
	color: var(--Primary-Dark);
	border: none;
	margin: 0;
	padding: 1em 0 0 1em;
}

form.compactForm p + p {
	padding-top: 0.1em;
}

form.compactForm p.controls {
	text-align: left;
}

form.compactForm p.controls a {
	margin-right: 1em;
}

form.compactForm input,
form.compactForm textarea {
	border: 1px solid var(--Primary-Soft);
	border-radius: 0.4em;
	width: 80%;
}


DIV.footer P.copyright {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	grid-column: 1 / -1;
	grid-row: 5;
	width: 100%;
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--Primary-Dark);
	font-size: 0.8rem;
	color: var(--Primary-Dark);
}

.referers {
	position: absolute;
	right: 1em;
	bottom: 1em;
	margin: 0;
	text-align: right;
	line-height: 1;
}

.referers IMG {
	display: block;
	max-height: 48px;
	filter: grayscale(1);
	opacity: 0.4;
	transition: opacity 0.3s;
}

.referers IMG:hover {
	opacity: 1;
	transition: opacity 0.3s;
}
/* ============================================ *
 * Screen MAX 768 wide
 * ============================================ */
@media (max-width: 920px) {
	DIV.navigation UL LI A {
		padding: 16px 10px;
	}
}
@media (max-width: 768px) {
	H1 {
		font-size: 1.8rem;
	}

	DIV.logo {
		position: fixed;
		text-align: center;
		padding: 15px 20px;
		background-color: #7F795F4A;
		backdrop-filter: blur(5px);
		border: 1px solid var(--Border-Soft);
		box-shadow: var(--Primary-Soft);
		min-height: 97px;
		z-index: 1;
	}

	DIV.logo A {
		flex-direction			: column;
		gap						: 10px;
		position				: relative;
	}

	DIV.logo IMG.logo {
		margin					: auto;
	}

	DIV.navigation {
		transition				: transform 1s cubic-bezier(.230,1,.320,1);
		flex-direction			: column;
	}
	DIV.navigation:before {
		content					: "☰";
		font-size				: 300%;
		font-weight				: Bold;
		font-style				: Normal;
		line-height				: 2em;
		color					: var(--Primary-Dark);
		z-index					: 5;
		position				: absolute;
		left					: 0;
		top						: 0;
		min-width				: 2em;
	}
	DIV.navigation UL {
		flex-direction			: column;
		justify-content			: flex-start;
		display					: None;
		position				: fixed;
		top						: 0;
		bottom					: 0;
		color					: White;
		z-index					: 1000;
		margin					: 0;
		background-color		: #45443066;
		-webkit-transition		: transform 1s cubic-bezier(.230,1,.320,1);
		-moz-transition			: transform 1s cubic-bezier(.230,1,.320,1);
		transition				: transform 1s cubic-bezier(.230,1,.320,1);
		left					: 0;
		height					: 100%;
		max-height				: 100%;
		padding-top				: 7em;
	}
	DIV.navigation:hover UL {
		display					: Flex;
		transition				: all 500ms ease;
	}
	DIV.navigation LI {
		min-height				: 2em;
		display					: block;
		margin					: 0.5em;
		width					: 15em;
	}
	DIV.navigation LI.currentpage A {
		font-weight				: Normal;
		border-bottom			: None;
		color					: White;
		text-shadow				: 0 0 2px White;
	}
	DIV.navigation LI.currentpage {
		background				: transparent;
		border					: 1px solid #7F795F;
		border-radius: 4px;
	}
	DIV.navigation LI.currentpage A:before {
		content					: ">  ";
	}
	DIV.navigation LI A:hover, DIV.navigation LI span:hover {
		color					: var(--Primary-Dark);
		text-shadow				: 0 0 2px Black;
		border					: none;
		transition				: all 250ms ease;
	}
	DIV.navigation LI.currentpage UL A:before, DIV.navigation LI:hover UL A:before {
		content					: "";
	}
	DIV.navigation LI A, DIV.navigation LI span {
		color					: White;
		display					: block;
	}
	DIV.navigation UL UL {
		display					: None;
	}
	DIV.navigation UL UL LI{
		display					: None;
	}

	DIV.body {
		padding					: 80px 20px;
	}
	
	.site-wrap > .lead{
		font-size				: 1.5rem;
	}

	.side-by-side,
	.columns {
		flex-direction			: column;
		gap						: 20px;
	}

	.column {
		min-width: 100%;
	}

	.home-image IMG,.overmij-image IMG, .werkwijze-image IMG, .contact-image IMG{
		width: 80%;
		margin: auto; 
	}

	DIV.footer {
		display: block;
		padding: 40px 0 80px 0;
	}

	DIV.footer .category:first-child {
		margin-left: 0;
	}

	DIV.footer .category:nth-child(2) {
		margin-right: 0;
	}

	DIV.footer > H2,
	DIV.footer > P {
		display: block;
	}

	.referers {
		right: 1em;
		bottom: 1em;
	}
}