/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/** {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
*/
body {
	padding: 0;
	margin: 0;
	color: #62380D;
	background-image: url(images/achtergrond-3.jpg);
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: top left;
	font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, sans-serif;
	line-height: 1.3em;
}
.toplogo {
	background-image: url(images/logo_loes.png);
	background-position: center;
	background-repeat: no-repeat;
}
.container {
	max-width: 1120px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	box-shadow: 0 0 0px rgba(0, 0, 0, 0.05);
	padding: 10px;
	margin: auto;
	background-color: white;
}
a, a:link {
	color: #564839;
	text-decoration: none;
	font-weight: bold;
}
.img-fluid {
	width: 100%;
	height: auto;
}
a:hover, a:focus {
	color: #c0ac8c;
	text-decoration: underline;
}
a:visited {
	color: #564839;
}
.navbar {
	padding: 15px 20px;
	position: relative;
}
.logo {
	font-family: Ubuntu, "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	color: #62380D;
	margin-top: 10px;
	letter-spacing: 2px;
	line-height: 48px;
	border-bottom: 2px solid #564839;
	box-shadow: none;
}
.menu {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 10px 0;
	padding: 0;
	line-height: 24px;
	font-size: 24px;
	gap: 10px;
	font-family: Ubuntu;
}
.menu li {
	margin-left: 0;
	border-right: 1px solid brown;
	padding-right: 12px;
}
.menu a {
	color: #62380D;
	text-decoration: none;
	transition: color .3s;
}
.menu a:hover {
	color: #c0ac8c;
	text-decoration: underline;
}
/* Checkbox verbergen */
#menu-toggle {
	display: none;
}
/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}
.hamburger span {
	width: 28px;
	height: 3px;
	background: #62380D;
	margin: 3px 0;
	transition: .3s;
}
ul {
}
.titel {
	font-size: 24px;
	margin: 0 0 10px 10px;
	border-bottom: 1px solid #62380D;
	line-height: 48px;
	font-family: Ubuntu;
}
.hoedtitel {
	font-size: 18px;
	letter-spacing: 0.1em;
	font-family: ubuntu;
	line-height: 36px;
	background-color: rgb(223, 217, 212, 0.4);
	padding-left: 10px;
	border-radius: 5px;
	border: 1px solid #e5e5e5;
	font-weight: bold;
	margin-bottom: 10px;
}
img {
	box-shadow: 0 0 6px #666;
	border-radius: 3px;
}

/* Mobiele weergave */
@media (min-width: 1000px) {
.menu {
	font-size: 24px;
}
.toplogo {
	background-image: url(images/logo_loes.png);
	background-position: center;
	background-repeat: no-repeat;
}
}

@media (min-width: 848px) and (max-width: 1000px) {
.menu {
	font-size: 20px;
}
.toplogo {
	background-image: url(images/logo_700.png);
	background-position: center;
	background-repeat: no-repeat;
}
}

@media (min-width: 768px) and (max-width: 848px) {
.menu {
	font-size: 18px;
}
.toplogo {
	background-image: url(images/logo_700.png);
	background-position: center;
	background-repeat: no-repeat;
}
}

@media (max-width: 768px) {
.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;       /* menu altijd onder de hamburger */
	margin-top: 10px;
	font-size: 18px;
	gap: 5px;
}
.menu li {
	border-right: 0;
}
#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);
}
}
