/* FONTS – relatieve paden zodat fonts ook laden bij lokaal openen of submap */
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: url("fonts/NewBlackTypeface-UltraLight.otf") format("opentype");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url("fonts/NewBlackTypeface-Light.otf") format("opentype");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("fonts/NewBlackTypeface-Regular.otf") format("opentype");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("fonts/NewBlackTypeface-Medium.otf") format("opentype");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("fonts/NewBlackTypeface-SemiBold.otf") format("opentype");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("fonts/NewBlackTypeface-Bold.otf") format("opentype");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("fonts/NewBlackTypeface-ExtraBold.otf") format("opentype");
}

:root {
	/* COLORS */
	--light-salmon: #fff3f0;
	--black-coffee: #190500;
	--pale-sky: #d9f0ff;
	--vivid-orange: #ff4200;

	/* OTHER */
	--border-radius: 16px;
}

/* GENERAL */
html {
	background-color: var(--light-salmon);
	color: var(--black-coffee);
	width: 100%;
	overflow-x: hidden;
}

body {
	width: 100%;
	min-width: 0;
	max-width: 100vw;
	box-sizing: border-box;
	overflow-x: hidden;
	font-family:
		"NewBlackTypeface",
		-apple-system,
		"Segoe UI",
		sans-serif;
	font-weight: 300;
	background-color: var(--light-salmon); /* voorkomt dat hero zichtbaar is in marge/padding-zones (bv. rond footer) */
}

main {
	position: relative;
	z-index: 20;
	background-color: var(--light-salmon);
	border-radius: var(--border-radius);
	padding-top: 1rem;
	padding-bottom: 4.125rem; /* ruimte onder laatste sectie = main zelf, geen margin-gat waar hero/video doorschijnt */
}

.section {
	margin: 4.125rem 4.125rem;
}

/* Geen margin-bottom op laatste sectie: ruimte zit in main padding-bottom */
main > .section:last-child {
	margin-bottom: 0;
}

img,
video {
	height: 100%;
	width: 100%;
	border-radius: var(--border-radius);
}

h1 {
	font-size: 5.3125rem;
	font-weight: 400;
}

h2 {
	font-size: 3.125rem;
	font-weight: 300;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

.text-bold {
	font-weight: 600;
}

.top-section-highlight {
	font-weight: 800;
	font-size: 1.15em;
}

.quote {
	font-size: 2.125rem;
	font-weight: 300;
	text-align: center;
	margin: 0;
}

.text-orange {
	color: var(--vivid-orange);
}

/* cta */
.cta {
	margin-top: 5rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.625rem;

	height: 1.25rem;

	text-decoration: none;
}

.cta-btn {
	background-color: var(--pale-sky);
	padding: 1.25rem;
	border: none;
	border-radius: var(--border-radius);
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
}

.cta-arrow {
	background-color: var(--black-coffee);
	padding: 1.25rem;
	display: inline;

	width: 1.25rem;
}

/* flex-container */
.container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 5rem;
}

.container-left {
	max-width: 50rem;
	min-width: 45rem;
}

/* Kolom alleen zo breed als de inhoud (bv. enkel CTA-link) */
.container-left--narrow {
	min-width: 0;
	max-width: none;
	flex: 0 0 auto;
}

/* Inverse mode: linkerkolom (video/media) mag breed worden, max zoals container-left in normale mode */
.top-section--reversed .container-left--wide {
	flex: 1;
	min-width: 0;
	max-width: 50rem;
}

/* Inverse mode: rechterkolom (tekst) gedraagt zich als container-left in normale mode */
.top-section--reversed .container-right {
	flex: 1;
	min-width: 45rem;
	max-width: 50rem;
}

.container-right {
	max-width: 45.5rem;
}

/* HEADER + HERO WRAPPER: reserveert ruimte (hero is fixed) */
.header-hero-wrap {
	height: 26.34rem; /* verdubbeld t.o.v. 13.17rem */
	position: relative;
}

/* HEADER: fixed zoals hero – blijft staan en wordt geclipt door de inhoud bij scrollen */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 4rem;
	overflow: hidden; /* logo-video blijft binnen header, schijnt niet door in footer/marges */
	isolation: isolate;
	contain: layout paint;
}

.header-logo {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}

.logo-video {
	height: 5rem;
}

.logo {
	height: 2rem;
	border-radius: 0;
}

.nav-list {
	list-style: none;
}

.nav-item {
	font-size: 1.25rem;
	color: var(--light-salmon);
}

/* HERO – z-index 0 zodat hero boven body maar onder header (10) en main (20) blijft */
.hero {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 1.875rem;
	z-index: 0;
	background: #000; /* donkere achtergrond zodat ruimte tussen video's/afbeelding niet opvalt */
	border-radius: var(--border-radius);

	display: flex;
	flex-direction: row;
	height: 26.34rem; /* verdubbeld t.o.v. 13.17rem */
	gap: 1.25rem;
}

/* Opvulling rechts met gradient-afbeelding, afgeronde hoeken zoals de video's */
.hero-fill {
	flex: 1;
	min-width: 0;
	height: 100%;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.hero-fill-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.45); /* video donkerder afspelen */
}

.hero-video {
	object-fit: cover;
	border-radius: var(--border-radius);
}

/* Gradient-video links, vaste breedte 410px */
.hero-video-1 {
	flex: 0 0 410px;
	width: 410px;
	height: 100%;
	min-width: 0;
}

/* Wrapper voor rechter video:zelfde verhouding als video, knipt 2x gezoomed beeld af */
.hero-video-2-wrap {
	flex: 0 0 auto;
	width: auto;
	height: 100%;
	aspect-ratio: 1216 / 736;
	overflow: hidden;
	border-radius: var(--border-radius);
}

/* Rechter video: 2x ingezoomd, verhouding Hero-video2.mp4 (1216×736) */
.hero-video-2 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(3);
}

/* TOP SECTION */
.top-section-container {
	border-bottom: 1px solid var(--black-coffee);
	padding-bottom: 4.125rem;
}

.top-section-title {
	margin-top: 0;
	text-align: center;
}

.top-section-text {
	font-size: 1.25rem;
}

.top-section-list {
	font-size: 1.25rem;
	margin: 1rem 0;
	padding-left: 1.5rem;
	list-style: disc;
}

.top-section-list li {
	margin-bottom: 0.5rem;
}

/* INFO SECTION */
.info-section-quote {
	margin: 4.125rem;
}

.info-section-video {
	height: 31.875rem;
	object-fit: cover;
}

.info-section-container {
	margin-top: 8.125rem;
}

.container-right-text {
	padding-bottom: 1.875rem;
}

/* OFFERINGS */
.offerings-section {
	margin: 4.125rem;
	border-bottom: 1px solid var(--black-coffee);
}

.offerings-top {
	text-align: center;
	max-width: 51.875rem;
	margin: 0 auto;
}

.offerings-boxes {
	margin-top: 3.75rem;
	margin-bottom: 4.125rem;
	display: flex;
	flex-direction: row;
}

.offerings-box {
	width: calc(100% / 3);
	border-radius: var(--border-radius);
	padding: 5rem;
	text-align: center;

	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.box1 {
	background-color: var(--black-coffee);
	color: var(--light-salmon);
}

.box2 {
	background-color: var(--pale-sky);
}

.box3 {
	background-color: var(--vivid-orange);
	color: #fff;
}

.stars {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.star-icon {
	height: 3rem;
	width: 3rem;
}

.stars1-1 {
	translate: 10px -5px;
}
.stars1-2 {
	translate: -10px 0;
}
.stars3-1 {
	translate: 10px 0;
}
.stars3-2 {
	translate: -10px 0;
}

.offerings-box-media {
	width: 14rem;
	height: 4.8rem;
	object-fit: cover;
	margin: 0 auto;
}

.offerings-box-title,
.offerings-box-info,
.offerings-box-text {
	text-align: left;
}

.offerings-box-text {
	font-size: 1.125rem;
}

/* PERKS */
.perks-section {
	margin-bottom: 0;
	padding-bottom: 4.125rem;
}
.perks-quote {
	font-size: 5.3125rem;
	margin: 4.125rem 4.125rem;
}

.images-container {
	display: grid;
	grid-template-columns: 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem;
	gap: 0.5rem;
}

.perks-media {
	height: 28.3125rem;
	object-fit: cover;
}

.perks-media1 {
	grid-column: 1 / span 6;
}

.perks-media2 {
	grid-column: 7 / span 2;
}

.perks-media3 {
	grid-column: 9 / span 1;
}

.perks-media-all {
	grid-column: 1 / span 9;
}

.perks-text {
	font-size: 1.375rem;
}

.perks-list {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 2rem;
}

.perks-li {
	list-style-image: url(/images/List-icon.svg);
}

/* FOOTER – volle breedte + padding i.p.v. margin zodat geen hero/header doorschijnt in de zijkanten */
footer {
	position: relative;
	z-index: 20;
	background-color: var(--light-salmon);
	margin: 0;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.footer-logo {
	display: block;
	width: auto;
	max-width: 70%;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	border-radius: 0;
}

.footer-container {
	background-image: url(/images/Screenshot\ 2026-01-21\ at\ 18.02.08.png);
	background-position: 50% 100%;
	background-size: cover;
	background-repeat: no-repeat;

	padding: 5rem;
	border-radius: var(--border-radius);

	color: var(--light-salmon);

	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.footer-container-left {
	font-size: 5.3125rem;
	font-weight: 400;
	max-width: 50%;
	margin: 0;
}

.footer-container-right {
	display: flex;
	flex-direction: row;
	gap: 5.875rem;
}

.footer-info-box {
	display: flex;
	flex-direction: column;
	max-width: 8.5rem;
	gap: 2rem;
}

.footer-heading {
	font-size: 1.25rem;
	font-weight: 400;
}

.footer-text {
	line-height: 2;
}

.footer-link {
	color: var(--light-salmon);
}

address {
	font-style: normal;
}

.footer-other {
	padding: 0 1rem;
	font-size: 0.625rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.other-pages-list {
	display: flex;
	flex-direction: row;
	gap: 4rem;
	list-style: none;
	padding: 0;
}

.page-link {
	color: var(--black-coffee);
	text-decoration: none;
}

/* ========== Responsive: smallere schermen ========== */

/* Tablet: layout-aanpassingen voor schermen tot 992px */
@media (max-width: 992px) {
	h1 { font-size: 3.5rem; }
	h2 { font-size: 2.25rem; }
	.section { margin: 3rem 3rem; }
	.top-section-container { padding-bottom: 3rem; }
	.offerings-boxes { margin-top: 2.5rem; margin-bottom: 3rem; }
	.offerings-box { padding: 3rem; gap: 1.5rem; }
	.perks-quote { font-size: 3.5rem; margin: 3rem; }
	.info-section-quote { margin: 3rem; }
	.info-section-container { margin-top: 5rem; }
	.cta { margin-top: 3rem; }
}

/* Mobiel: layout-aanpassingen voor schermen tot 768px */
@media (max-width: 768px) {
	main {
		max-width: 100%;
		overflow-x: hidden;
	}
	.section {
		max-width: 100%;
		min-width: 0;
		margin-left: 1rem;
		margin-right: 1rem;
	}
	.container-left,
	.container-right {
		min-width: 0;
		max-width: 100%;
	}
	header {
		padding: 1.5rem;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	}
	.header-nav {
		display: none;
	}
	.header-logo {
		max-width: 100%;
		min-width: 0;
	}
	.logo-video {
		height: 4rem;
		max-width: 50%;
		object-fit: contain;
		margin-left: 0;
		margin-right: 0;
	}
	.logo {
		height: 2rem;
		max-width: 50%;
		object-fit: contain;
	}
	.header-hero-wrap {
		height: 12rem;
	}
	.hero {
		flex-direction: column;
		height: 12rem;
		padding: 1rem;
		gap: 0;
	}
	.hero-video-1 {
		flex: 0 0 100%;
		width: 100%;
		height: 100%;
		min-width: 0;
	}
	.hero-video-2-wrap {
		display: none;
	}
	.hero-fill {
		display: none;
	}
	/* Twee-kolomsecties (tekst + CTA) op één kolom: titel, tekst, CTA */
	.top-section-container {
		flex-direction: column;
		gap: 2rem;
	}
	.top-section--reversed .top-section-container {
		flex-direction: column-reverse;
	}
	.top-section-container .container-left,
	.top-section-container .container-right {
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}
	/* Offerings: boxes onder elkaar */
	.offerings-boxes {
		flex-direction: column;
		max-width: 100%;
	}
	.offerings-box {
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		padding: 2rem;
		gap: 1.25rem;
	}
	/* Typografie en spaties verkleinen voor mobiel */
	main {
		padding-bottom: 2rem;
	}
	.section {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
	h1 {
		font-size: 2.25rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.25rem;
	}
	.quote {
		font-size: 1.25rem;
	}
	.top-section-title {
		margin-bottom: 0.75rem;
	}
	.top-section-container {
		padding-bottom: 2rem;
	}
	.top-section-text {
		font-size: 1rem;
	}
	.top-section-list {
		font-size: 1rem;
		margin: 0.75rem 0;
		padding-left: 1.25rem;
	}
	.top-section-list li {
		font-size: 1rem;
		margin-bottom: 0.35rem;
	}
	.cta {
		margin-top: 2rem;
	}
	.info-section-quote {
		margin: 2rem 1rem;
		font-size: 1.25rem;
	}
	.info-section-container {
		margin-top: 2.5rem;
	}
	.info-section-video {
		height: 18rem;
	}
	.container-right-text {
		padding-bottom: 1rem;
	}
	.offerings-boxes {
		margin-top: 1.5rem;
		margin-bottom: 2rem;
	}
	.offerings-box-text {
		font-size: 1rem;
	}
	.perks-section {
		padding-bottom: 2rem;
	}
	.perks-quote {
		font-size: 2rem;
		margin: 2rem 1rem;
	}
	.perks-title {
		font-size: 1.5rem;
	}
	.perks-text {
		font-size: 1.125rem;
	}
	.perks-list {
		font-size: 1.125rem;
	}
	.footer-container {
		padding: 1rem;
		flex-direction: column;
		gap: 0.5rem;
	}
	.footer-container-left {
		display: none;
	}
	.footer-container-right {
		flex-direction: column;
		gap: 0.75rem;
	}
	.footer-info-box {
		max-width: 100%;
		gap: 0.1rem;
	}
	.footer-heading {
		font-size: 1rem;
	}
	.footer-container .footer-text,
	.footer-container address {
		font-size: 0.7rem;
		line-height: 0.5;
	}
}
