/* Standalone Landingspagina Styling */
/* Alle benodigde CSS variabelen en styling in één bestand */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

/* CSS Variabelen */
:root {
	--themeRed: 		#C0001E;
	--themeGreen: 		#00885E;
	--themeGreenDark: 	rgb(36,87,61);
	--themeGreenLight: 	#E9F3EF;
	--themeGreenOverlay: rgba(0,36,25,0.61);
	--themeTint: 		#fff;
	--themeBlue:		rgb(10,22,38);
	--themeGrey:		rgb(232,232,232);
	--themeGreyDark: 	#222222;
	--themeGreyLight:	#f9f8f6;
	--themeGreyLight2:	#FCFCFC;
	--themeGreyLight3:	rgb(249,248,247);
	--themeText:		#3A4245;
	--themeTextLink:	#434343;
	--themeTitles:		#ededed;
	--themeTitlesGrey:	#646464;
	--themeBorderColor: #ededed;
	--themeBorderRadius:20px;
	font-size:16px;
}

/* Reset en basis styling */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #fff;
	font-family: 'Space Grotesk', sans-serif;
	color: var(--themeText);
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4 {
	font-family: 'Space Grotesk', sans-serif;
	color: var(--themeTitles);
	font-weight: bold;
	letter-spacing: 0em;
	margin: 0.5em 0;
	text-transform: uppercase;
	line-height: 1.0em;
}

h1 {
	font-size: 64px;
}

h2 {
	font-size: 48px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 18px;
}

a {
	text-decoration: none;
}

/* Landingspagina Container */
.landing-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--themeGreen);
	padding: 20px;
	position: relative;
	overflow: hidden;
}

/* Achtergrond met blur en overlay */
.landing-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(8px);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.landing-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--themeGreen);
	opacity: 0.7;
}

.landing-background.active {
	opacity: 1;
}

/* Content styling */
.landing-content {
	text-align: center;
	max-width: 1200px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.landing-content h1 {
	font-size: 64px;
	color: #fff;
	margin-bottom: 0.2em;
	text-transform: uppercase;
	font-weight: bold;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.landing-subtitle {
	font-size: 20px;
	color: #fff;
	margin-bottom: 60px;
	font-weight: 400;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Buttons Grid */
.landing-buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}

/* Button Styling */
.landing-button {
	display: block;
	position: relative;
	aspect-ratio: 1;
	background: #fff;
	border-radius: var(--themeBorderRadius);
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border: 3px solid transparent;
}

.landing-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	border-color: var(--themeGreen);
}

.landing-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 136, 94, 0.05) 0%, rgba(192, 0, 30, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.landing-button:hover::before {
	opacity: 1;
}

.button-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 40px;
}
.button-content img{
	width:280px;
	max-width: calc(100% - 40px);
}

.landing-button h2 {
	font-size: 42px;
	color: var(--themeTitles);
	margin: 0 0 15px 0;
	text-transform: uppercase;
	font-weight: bold;
	transition: color 0.3s ease;
}

.landing-button:hover h2 {
	color: var(--themeGreen);
}

.landing-button p {
	font-size: 20px;
	color: var(--themeText);
	margin: 0;
	transition: color 0.3s ease;
}

.landing-button:hover p {
	color: var(--themeGreen);
}

/* Responsive styling voor tablets */
@media screen and (max-width: 992px) {
	.landing-content h1 {
		font-size: 48px;
	}

	.landing-subtitle {
		font-size: 18px;
		margin-bottom: 40px;
	}

	.landing-buttons {
		gap: 30px;
	}

	.landing-button h2 {
		font-size: 36px;
	}

	.button-content {
		padding: 30px;
	}
}

/* Responsive styling voor mobiel */
@media screen and (max-width: 769px) {
	.landing-content h1 {
		font-size: 36px;
	}

	.landing-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.landing-buttons {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 400px;
	}

	.landing-button h2 {
		font-size: 28px;
	}

	.landing-button p {
		font-size: 14px;
	}

	.button-content {
		padding: 40px 20px;
	}
}

@media screen and (max-width: 480px) {
	.landing-content h1 {
		font-size: 28px;
	}

	.landing-subtitle {
		font-size: 14px;
	}

	.landing-button h2 {
		font-size: 24px;
	}
}
