/* ==========================================================================
   1. Basis & Menu
   ========================================================================== */
/*
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}*/
body {
	background-image: url(images/logoback.jpg);
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	padding: 20px;
}
.pagetitle {
	font-size: 30px; padding-bottom: 10px;
}
.container-all {
	max-width: 1280px;
	border-radius: 4px;
	box-shadow: 0 0 0px rgba(0, 0, 0, 0.05);
	padding: 10px;
	margin: auto;
	background-color: #032302;
	text-align: center;
	color: #ffffff;
}

.img-fluid {
	width: 100%;
	height: auto;
}
/* Links */
a, a:link {
	color: #24432C;
	text-decoration: none;
}
a:hover, a:focus {
	color: #c0ac8c;
	text-decoration: underline;
}
a:visited, a:active {
	color: #564839;
}

/* ==========================================================================
   2. Navigatie & Menu (Bestaand)
   ========================================================================== */
.navbar {
	padding: 15px 20px;
	position: relative;
}
.logo {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	color: #24432C;
	margin-top: 10px;
	letter-spacing: 2px;
	border-bottom: 2px solid #24432C;
	box-shadow: none;
}
.menu {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 10px 0;
	padding: 0;
	line-height: 16px;
	gap: 5px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}
.menu li {
	padding: 0 6px; /* Gelijke ruimte links en rechts van de tekst */
	font-size: 20px;
	font-weight: bold;
	color: #24432C;
	text-align: center
}
/* Zet een scheidingslijn links van elk menu-item... */
.menu li + li {
	border-left: 1px solid #747474;
}
.menu li ul li {
	margin-left: 0px;
	border-right: none;
	padding-right: 8px;
	color: #24432C;
	list-style: none;
	font-size: 24px;
}
.menu a {
	color: #24432C;
	text-decoration: none;
	transition: color .3s;
}
.menu a:hover {
	color: #c0ac8c;
	text-decoration: underline;
}
.menu a.active {
	color: #c0ac8c;
}


/* Menu Controls & Hamburger */
#menu-toggle {
	display: none;
}
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}
.hamburger span {
	width: 28px;
	height: 3px;
	background: #24432C;
	margin: 3px 0;
	transition: .3s;
}
@media (max-width: 1111px) {
.menu {
	font-size: 18px;
}
.toplogo {
	background-image: url(images/logo_klein.png);
	background-position: center;
	background-repeat: no-repeat;
}

.navbar {
	flex-wrap: wrap;
}
.hamburger {
	display: flex;
	position: relative;
	z-index: 1001;
}
.menu {
	display: none;
	flex-direction: column;
	width: 100%;
	order: 99;
	margin-top: 10px;
	font-size: 18px;
	gap: 5px;
}
.menu li + li {
	border-left: none;
}
#menu-toggle:checked ~ .menu {
	display: flex;
}
/* Animatie hamburger -> kruis */
#menu-toggle:checked + .hamburger span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}
#menu-toggle:checked + .hamburger span:nth-child(2) {
	opacity: 0;
}
#menu-toggle:checked + .hamburger span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}
}
@media (max-width: 786px) {

.logo {
	font-size: 24px;
}
}