/* RESET */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

/* HEADER / BANNER */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	color: #6E9926;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 1000;	
	background-image: url('images/banner_homepage.png');
    background-repeat: no-repeat;        /* Bild nicht wiederholen */
	background-position: right;
	background-size: contain;               /* Originalgröße beibehalten */
	background-color: white;
	height: 75px;
	border-bottom: thick;
    border-bottom-style: solid;
}

header h1 {
	font-size: 20px;
}

/* NAVIGATION */
nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
	font-size: 35px;
}

nav ul li a {
	color: #6E9926;
	text-decoration: none;
}

/* BURGER BUTTON */
.burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.burger span {
	height: 3px;
	width: 25px;
	background: #6E9926;
	margin: 4px 0;
}

/* MOBILE MENU */
@media (max-width: 1024px) {
	nav {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: #6E9926;
		display: none;
	}

	nav ul {
		flex-direction: column;
		padding: 20px;	
		font-size: 20px;
	}

	nav ul li {
		margin: 10px 0;
	}
	
	nav ul li a {		
		color: white;
	}

	nav.active {
		display: block;
	}

	.burger {
		display: flex;
	}
}

/* CONTENT */
main {
	margin-top: 75px;
	padding: 20px;
}

section {
	margin-bottom: 40px;
}

section h2 {
	margin-bottom: 10px;
}

.inhalt iframe {
	width: 100%;
	height: 2600px;
	max-width: 1600px;
	display: block;
	margin: 0 auto;
	border: none;
}