@font-face {
  font-family: 'Oswald';
  src: url('/assets/fonts/oswald/Oswald-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Oswald';
  src: url('/assets/fonts/oswald/Oswald-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Basisstijl voor navigatie met Nederlandse vlag */
nav {
  background: 
	/* Hoofdgradient diagonaal van links naar midden naar rechts */
	linear-gradient(
	  135deg,  /* Hoek van de eerste gradient */
	  darkred 0%, 
	  red 50%, 
	  darkred 100%
	),
	/* Overlay gradient in de andere richting */
	linear-gradient(
	  225deg,  /* Hoek van de overlay gradient */
	  rgba(0, 0, 0, 0.5) 0%, 
	  rgba(0, 0, 0, 0) 50%, 
	  rgba(0, 0, 0, 0.5) 100%
	);
  background-blend-mode: multiply;
  color: white;
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
}


.nav-container {
	min-height: 30px;
	max-width: 1200px; /* Maximale breedte voor de inhoud */
	margin: 0 auto; /* Centreert de container horizontaal */
	display: flex; /* Gebruik flexbox voor uitlijning van items */
	align-items: center; /* Verticaal uitlijnen */
	gap: 20px; /* Ruimte tussen logo en menu */
	padding: 0 20px; /* Optionele ruimte aan de zijkanten */
}

nav img.logo {
	z-index: 100;
	width: 120px; /* Breedte van het logo */
	height: auto; /* Zorgt voor proportionele schaal */
	position: absolute;
	float: left;
	top: 2px;
}

/* TAALKEUZE */
#language-switch {
	position: absolute;
	top: 5px;
	right: 20px;
	background: transparent;
	padding: 5px;
	border-radius: 8px;
	z-index: 9999;
	display: flex;
	gap: 5px;
}

.lang-btn {
	border: 1.4px solid white;
	background: none;
	color: white;
	padding: 6px 10px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s, color 0.3s;
}

.lang-btn.active {
	background: white;
	color: black;
}

/* MENU */
.menu {
	display: flex;
	gap: 15px;
	margin-left: 180px;
}

.menu a {
	border: 1px solid rgba(255, 255, 255, 0);
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	text-decoration: none;
	font-size: 1.1rem;
	color: rgb(255, 255, 255);
	padding: 2px 8px 3px 8px;
	/* border: 1px solid white; */
	/* background-color: rgba(255, 255, 255, 0.503); */
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}

.menu a:hover {
	background-color: rgba(255, 0, 0, 1);
	text-decoration: none;
	border: 1px solid white;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	margin-left: auto;
	position: relative;
	z-index: 20;
}

.hamburger span {
	width: 30px;
	height: 3px;
	background-color: white;
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
	transform-origin: center; /* Zet het draaipunt precies in het midden */
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Uitklapmenu stijl */
.hamburger-dropdown {
	font-family: "Oswald", sans-serif;
	display: none;
	position: absolute;
	top: 60px;
	right: 20px;
	width: 300px;
	background: #f8f8f8; /* Lichte achtergrond in plaats van blauwachtig */
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	z-index: 10;
}

.hamburger-dropdown.active {
	display: block;
}

.hamburger-dropdown ul {
	list-style: none; /* Verwijdert standaard bolletjes */
	padding: 0; /* Verwijdert extra padding */
	margin: 0; /* Verwijdert extra marges */
}

/* Stijlen voor hoofdmenu-items */
.hamburger-dropdown .mobilemenu-main {
	margin-bottom: 20px; /* Ruimte tussen hoofdmenu en submenu */
	border-bottom: 1px solid #FFF;
}

.hamburger-dropdown .mobilemenu-main li {
	margin: 10px 0;
}

.hamburger-dropdown .mobilemenu-main a {
	color: #800000; /* Donkerrood in plaats van donkerblauw */
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
	padding: 0px 10px;
	border-radius: 8px;
	transition: transform 0.3s ease-in-out;
	display: block;
}

.hamburger-dropdown .mobilemenu-main a:hover {
	background: #a52a2a; /* Roodtint voor hover in plaats van blauw */
	color: white;
}

/* Stijlen voor submenu-items */
.hamburger-dropdown .mobilemenu-sub li {
	margin: 5px 0;
}

.hamburger-dropdown .mobilemenu-sub a {
	color: #800000; /* Donkerrood als basiskleur */
	font-size: 1.2rem;
	font-weight: 100;
	text-decoration: none;
	padding: 0px 10px;
	border-radius: 6px;
	display: block;
	transition: transform 0.3s ease-in-out;
}

.hamburger-dropdown .mobilemenu-sub a:hover {
	background: #a52a2a; /* Roodtint voor hover */
	color: white;
}

/* Responsieve stijl */
@media (max-width: 1024px) {
	.menu {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	/* TAALKEUZE */
	#language-switch {
		position: absolute;
		right: 70px;
	}
	
	.lang-btn {
		padding: 4px 6px;
		font-size: 14px;
	}
}