/* Fonts
################################################################## */
/* oswald-300 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/oswald-v56-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* oswald-500 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/oswald-v56-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* oswald-700 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/oswald-v56-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/* Farben
################################################################## */
:root {
	--primary-color: #173C6E; /* Dunkelblau */
	--secondary-color: #e8561c; /* Orange */
	--text-color: #000; /* Schwarz */
	--text-color-light: #fff; /* Weiß */
}



/* General Styles
################################################################## */
body {
	margin: 0;
	background-color: #ffffff;
	font-family: 'Oswald', sans-serif;
	color: var(--text-color);
	font-size: 18px;
	line-height: 26px;
}



/* Typography
################################################################## */
h1 {
	font-size: 2.67rem;
	line-height: 3.25rem;
	margin: 0 0 0.67rem;
	font-weight: 700;
}

h2 {
	font-size: 2rem;
	line-height: 2.5rem;
	margin: 0 0 0.67rem;
	color: var(--primary-color);
}

h6 {
	font-size: 1.11rem;
	line-height: 1.3rem;
	margin: 0;
	padding-bottom: 12px;
	color: var(--primary-color);
}

p {
	font-weight: 300;
	margin: 0;
}


/* Header
################################################################## */
header {
	padding: 72px;
	text-align: center;
}

header img {
	max-width: 588px;
}



/* General Layout
################################################################## */
section > div {
	max-width: 1200px;
	margin: 0 auto;
}



/* Content
################################################################## */
.einleitung {
	background-color: var(--primary-color);
	color: var(--text-color-light);
	padding: 24px 20px 48px;
}

/* Textblöcke */
.four-blocks {
	padding: 48px 20px;
}

.four-blocks > div {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.two-columns {
	display: flex;
	flex-direction: row;
	gap: 24px;
}

.column {
	flex: 1;
}

/* Schlagworte */
.highlight {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
	padding: 24px 20px 48px;
}

.highlight-item {
	color: var(--secondary-color);
	font-size: 4rem;
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 4rem;
}

/* Bildbereich */
.orange-section {
	background-color: var(--secondary-color);
	color: var(--text-color-light);
	margin-top: 171px;
	padding: 0 20px;
}

.orange-section h2 {
	color: var(--text-color-light);
}

.bilder {
	display: flex;
	flex-direction: row;
	gap: 24px;
}

.bilder div {
	margin-top: -147px;
}

.bilder img {
	width: 100%;
}

.orange-section .text {
	padding: 24px 0 48px;
}

/* Ein Ziel */
.ein-ziel {
	max-width: 1200px;
	margin: auto;
	padding: 48px 20px;
}

.ein-ziel h2 {
	padding-bottom: 12px;
}

/* Kontakt */
.kontakt {
	max-width: 1200px;
	margin: 24px auto 48px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	gap: 24px;
	padding: 0 20px;
}

.contact-item {
	background-color: var(--primary-color);
	color: var(--text-color-light);
	padding: 24px;
	text-align: center;
	width: 100%;
}

.contact-item h6 {
	color: var(--text-color-light);
}

.contact-image {
	padding-bottom: 12px;
}

.contact-item a {
	text-decoration: underline;
	color: var(--text-color-light);
}



/* Footer
################################################################## */
footer {
	background-color: var(--primary-color);
	color: white;
	text-align: center;
	padding: 24px 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}



/* Media Queries
################################################################## */
@media (max-width: 768px) {
	header {
		padding: 48px;
	}

	.einleitung {
		padding: 24px 20px;
	}

	.four-blocks > div {
		flex-direction: column;
		gap: 24px;
	}
	.highlight {
		flex-direction: column;
		gap: 12px;
		align-items: center;
	}

	.two-columns {
		flex-direction: column;
	}
	.orange-section {
		margin: 0;
	}

	.bilder {
		flex-direction: column;
		gap: 0;
	}

	.bilder div {
		margin-top: 24px;
	}

	.kontakt {
		flex-direction: column;
		padding: 0;
	}

	.contact-item {
		padding: 24px 0;
		margin: 0 24px;
		width: unset;
	}
}