@import url("https://use.typekit.net/soi8pgj.css");

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

body{
	background-color: #f08d1b;
	min-height: 100vh;
	margin: 0;
	font-family: "niveau-grotesk-small-caps", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: clamp(14px, 1.6vw, 18px);
	line-height: 1.2;
}
/* voor fotos */
img, picture{
	max-width: 100%;
	height: auto;
	display: block;
}

.spritzema-intro img, .spritzema-intro picture{
	margin: 0 auto;
}
header img, header picture{
	margin: 0 auto;
}
footer img, footer picture{
	margin: 0 auto;
}
/* voor alle items */
.spritzema-container{
	max-width: 1200px;
	width: calc(100% - 40px);
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: clamp(8px, 2vw, 24px);
	padding: 20px;
	background: transparent;
	/*
	border: 4px solid #048b38;
	border-radius: 12px;
	*/

}

.spritzema-intro{
	flex: 1 1 320px;
	min-width: 220px;
}
.spritzema-intro h1{
	text-align: center;
	margin-bottom: 8px;
	font-size: 56px;
}
.spritzema-intro h2{
	text-align: center;
	margin-bottom: 8px;
	font-size: 56px;
}
.spritzema-smaken{
	flex: 2 1 480px;
	min-width: 260px;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(8px, 1.5vw, 20px);
	border: 2px solid #048b38;
	border-radius: 8px;
	padding: 12px;
}
.spritzema-smaak{
	flex: 1 1 200px;
	min-width: 160px;
	border: 2px solid #048b38;
	border-radius: 8px;
	padding: 10px;
}

header{
	width: 100%;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 20px;
}
.spritzema-uitleg{
	width: 100%;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	border: 2px solid #048b38;
	border-radius: 8px;
	padding: 10px 20px;
}
p {
	color: #ffffff;
	font-size: larger;
}

footer h1{
	text-align: center;
	margin: 20px 0 10px 0;
}
footer h2{
	text-align: center;
	margin: 20px 0 10px 0;
}
/* kleur en centreren voor email */
a[href^="mailto:"], .email {
	color: #ffffff;
	display: block;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	.spritzema-container{
		padding: 16px;
		gap: 16px;
	}
}

@media screen and (max-width: 768px) {
	.spritzema-container{
		padding: 12px;
		gap: 12px;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.spritzema-intro,
	.spritzema-smaken,
	.spritzema-smaak{
		width: 100%;
		flex: 1 1 100%;
		min-width: unset;
	}

	header,
	.spritzema-uitleg{
		padding: 8px;
	}
}

@media screen and (max-width: 480px) {
	body{
		font-size: clamp(13px, 3.5vw, 16px);
	}
	.spritzema-container{
		padding: 10px;
		gap: 10px;
	}
	.spritzema-intro h2{
		font-size: 28px;
	}
}





/* volg orde:
1. header
2. spritzema-intro
3. spritzema-smaken
4. spritzema-smaak
5. spritzema-uitleg
6. footer
*/