/* global stylezzz*/
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 25px;
}

p {
	font-size: 18px;
}

/* kleur links*/
a {
	color: antiquewhite;
	text-decoration: none;
}

/*nav en hero*/

.hero {
	position: relative;
}

.foto-hero img {
	width: 100%;
	height: 100%;

	margin-bottom: 100px;
	z-index: 0;
	clip-path: polygon(0 0, 100% 0%, 100% 90%, 51% 100%, 0 90%);
}

@media only screen and (min-width: 600px) {
	.foto-hero-mob {
		display: none;
	}
}

.titel {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%, 50%);
	color: antiquewhite;
	text-align: center;
}

.titel-hypo {
	position: absolute;
	top: 62%;
	left: 50%;
	transform: translate(-50%, 50%);
	color: antiquewhite;
	text-align: center;
	line-height: 60px;
}

.nav-desktop {
	background-color: rgba(0, 0, 0, 0);
	height: 10vh;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: -10vh;
	z-index: 5;
}

@media only screen and (min-width: 600px) {
	.foto-hero-mob,
	.navigatie,
	.nav_knop {
		display: none;
	}
}

.nav-desktop ul {
	display: flex;
	list-style: none;
}

.nav-desktop li {
	margin: 0 20px;
}

.nav-desktop a {
	text-decoration: none;
	color: antiquewhite;
	text-transform: capitalize;
}

.navigatie {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.295);
	border: 1px solid black;
	transform: translateX(-100%);
	transition: 0.8s ease-out;
	padding-top: 80px;
	z-index: 1;
}
.navigatie ul {
	display: flex;
	flex-direction: column;
	text-align: center;
	list-style: none;
}

.navigatie li {
	margin: 10px 20px;
}

.navigatie a {
	text-decoration: none;
	color: antiquewhite;
	text-transform: capitalize;
}

.hamburger {
	margin-top: 20px;
	display: block;
	position: relative;
	border-style: none;
	width: 30px;
	height: 4px;
	background-color: antiquewhite;
}

.hamburger,
.hamburger::before,
.hamburger::after {
	width: 30px;
	height: 4px;
	background-color: antiquewhite;
	transition: transform 350ms ease-in-out, opacity 200ms linear;
}

.hamburger::before,
.hamburger::after {
	content: "";
	position: absolute;
	left: 0;
}

.hamburger::before {
	bottom: 6px;
}
.hamburger::after {
	top: 6px;
}

.nav_knop {
	background: none;
	width: 60px;
	height: 60px;
	border: none;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	transition: 0.9s ease-out;
}

.nav-open .navigatie {
	transform: translateX(0);
}
.nav-open .nav-list {
	opacity: 0;
	transition: 0.5s;
}

/* Navigation open styles */

.nav-open .nav_knop {
	left: 15%;
	transform: translateX(50%);
}

/* Change this stuff below */

.nav-open .hamburger {
	transform: rotate(45deg);
}

.nav-open .hamburger::before {
	opacity: 0;
}

.nav-open .hamburger::after {
	transform: rotate(90deg) translate(-6px);
}

.nav-open .nav-list {
	transform: translateX(0);
	opacity: 1;
}

@media only screen and (max-width: 600px) {
	* p,
	h2,
	h3,
	ul {
		padding-left: 20px;
		padding-right: 20px;
		font-family: "Poppins", sans-serif;
	}

	h1 {
		font-size: 20px;
	}

	h2 {
		font-size: 19px;
	}

	h3 {
		font-size: 18px;
	}

	p {
		font-size: 16px;
	}

	.foto-hero img,
	.nav-desktop {
		display: none;
	}

	.foto-hero-mob {
		width: 100%;
		height: 100%;
	}
	.titel {
		position: absolute;
		top: 4%;
		left: 50%;
		transform: translate(-50%, 50%);
		color: antiquewhite;
	}

	.titel-hypo {
		position: absolute;
		top: 4%;
		left: 50%;
		transform: translate(-50%, 50%);
		color: antiquewhite;
		text-align: center;
		line-height: 17px;
	}
}