body {
	font-family: Arial, sans-serif;
	text-align: center;
	margin: 0;
	padding: 0;
	background-size: cover;
}
.container {
	width: 80%;
	margin: auto;
}
header {
	padding: 20px 0;
	background: rgba(255, 255, 255, 0.8);
}
.logo {
	max-width: 400px;
}
nav {
	background-color: #6CAF57;
	padding: 10px 0;
}
nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
}
nav ul li {
	margin: 0 15px;
}
nav ul li a {
	text-decoration: none;
	color: white;
	font-weight: bold;
}
.divider {
	width: 50%;
	height: 3px;
	background-color: #6CAF57;
	margin: 20px auto;
}
.image-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	justify-content: center;
	max-width: 600px;
	margin: auto;
}
.image-grid img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.text-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border: 2px solid #6CAF57;
	padding: 20px;
	margin: 20px auto;
	max-width: 600px;
	text-align: left;
	background: rgba(255, 255, 255, 0.8);
}
.text-container div {
	width: 48%;
}
@media (max-width: 600px) {
	.text-container {
		flex-direction: column;
	}
	.text-container div {
		width: 100%;
		margin-bottom: 10px;
	}
}
.button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #2e8d10;
	color: white;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	margin: 20px 0;
}
.intro-text {
	max-width: 600px;
	margin: auto;
	text-align: left;
}
.intro-text p::first-letter {
	font-size: 1.5em;
	font-family: cursive;
	color: #6CAF57;
	font-weight: bold;
}

.content-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.image-row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.image-row img {
	width: calc(25% - 10px); /* 4 Bilder nebeneinander mit Abstand */
	height: auto;
	border-radius: 5px;
}

.text-column {
	margin-top: 20px;
}

@media (max-width: 780px) {
	.image-row {
		flex-direction: column;
		gap: 15px;
	}

	.image-row img {
		width: 100%;
	}
}

.decorated::first-letter {
	font-size: 1.5em;
	font-family: cursive;
	color: #6CAF57;
	font-weight: bold;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal-content {
	max-width: 90%;
	max-height: 90%;
}
.close {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 30px;
	color: white;
	cursor: pointer;
}
.prev, .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	color: white;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.5);
	padding: 10px;
	border-radius: 5px;
}
.prev { left: 20px; }
.next { right: 20px; }

.note {
	color: gray;
	font-size: 0.9em;
	max-width: 600px;
	margin: auto;
}
footer {
	background: rgba(240, 240, 240, 0.8);
	padding: 10px;
	margin-top: 20px;
}
footer a {
	color: gray;
	text-decoration: underline;
}