:root {
	--dunkelgrau: #2F2F2F;
	--hellgrau: #B0B9C3;
	--dunkelblau: #29486C;
	--hellblau: #3FA9F5;
	--dunkelgruen: #6CD4B4;
	--hellgruen: #F5F0EB;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p {
	font-family: 'Arial', sans-serif;
	color: var(--dunkelblau);
	margin: 0;
	margin-block-start: 0.5rem;
	width: 100%;
}

.module {
	background: var(--hellgruen);
	border-radius: 8px;
	padding: 1rem 1.5rem;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 2rem;
}

.head4 {
	font-size: 1.2rem;
	color: var(--dunkelgrau);
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.head3 {
	font-size: 1.5rem;
	color: var(--dunkelblau);
	margin-bottom: 0.5rem;
	font-weight: bold;
}

/* Smooth scrolling für Anchor-Links */
html {
	scroll-behavior: smooth;
}

.zerticon {
	font-family: 'Quicksand', sans-serif;
	font-weight: 500;
	color: var(--dunkelblau);
	margin-top: 3rem;
	font-size: 2rem;
	width: auto;
}

.zerticon #zerticon-by {
	font-size: 1.5rem;
	color: var(--hellgrau);
	margin-right: 0.5rem;
	position: relative;
	top: -10px;
}

/* Offset für Anchor-Links wegen sticky navigation */
section {
	scroll-margin-top: 120px;
}

nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid #ddd;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav ul {
	font-size: 1.rem;
	list-style: none;
	margin-left: 2rem;
	padding: 0;
	display: flex;
	gap: 1.5rem;
}

nav ul li a {
	text-decoration: none;
	color: var(--dunkelblau);
	transition: all 0.3s ease;
}

/* Hover-Effekt für Navigation */
nav ul li a:hover {
	color: var(--hellblau);
}

/* Aktiver Anchor-Link */
nav ul li a.active {
	text-decoration: underline;
	/* color: var(--hellblau); */
	font-weight: bold;
}

.zerticon-experts {
	font-family: Comfortaa, sans-serif;
	font-weight: bold;
	color: var(--dunkelblau);
}

body {
	font-family: system-ui, sans-serif;
	margin: 0;
	padding: 2rem;
	line-height: 1.6;
	background: #f9f9f9;
	color: #333;
}

.logo {
	position: relative;
	display: flex;
	align-items: center;
	color: var(--dunkelgrau);
	gap: 3rem;
	padding-bottom: 10px;
}

.logowrap {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.firma {
	font-size: 6rem;
	color: var(--dunkelblau);
}

.zusatz {
	position: absolute;
	font-size: 2rem;
	left: 25rem;
	top: 86px;
	z-index: 4;
	color: lightgray;
}

.kapitelbild-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #f5f5f5;
}

/* Logo bleibt oben */
#schulungslogo {
	height: 100px;
	object-fit: contain;
	margin-bottom: 10px;
	/* optional Abstand */
}

/* Der Bereich für das Kapitelbild */
.kapitelbild-container {
	flex: 1;
	/* nimmt den Rest der Höhe */
	display: flex;
	align-items: center;
	/* vertikal zentrieren */
	justify-content: center;
	/* horizontal zentrieren */
}

/* Kapitelbild selbst */
.kapitelbild {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	/* oder cover */
}


.grid-section {
	display: grid;
	grid-template-columns: 300px 2fr;
	gap: 1rem 2rem;
	margin-bottom: 3rem;
	align-items: start;
}

.content-block {
	background: #fff;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.content-block .multicol {
	column-count: 2;
	column-gap: 2rem;
}

.content-block ul {
	padding-left: 1.5em;
	margin: 1em 0;
}

.content-block li {
	break-inside: avoid;
}

.quote {
	font-style: italic;
	font-size: 0.95em;
	margin-top: 1rem;
	color: #555;
}

.contact {
	font-weight: bold;
	margin-top: 1rem;
}

.symbolbild {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Termine Grid Layout */
.termine-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 1rem;
	margin: 1.5rem 0;
	align-items: start;
}

.quartal {
	font-weight: bold;
	color: var(--dunkelblau);
	padding: 0.5rem;
	background-color: var(--hellgruen);
	border-radius: 4px;
	text-align: center;
}

.beschreibung {
	padding: 0.5rem;
	line-height: 1.4;
}

.footer-content {
	display: flex;
	background-color: var(--dunkelblau);
	justify-content: center;
	color: white;
	gap: 2rem;
	text-align: center;
	padding: 1rem;
	font-size: 0.9rem;
	margin-top: 2rem;
}

.footer-content h3, 
.footer-content p {
	margin: 0;
	color: white;
}

.footer-content a {
	border: 1px dotted white;
	padding: 4px;
	color: white;
	text-decoration: none;
}



@media (max-width: 700px) {
	body {
		padding: 1rem;
	}

	nav {
		padding: 1rem 2rem;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.zerticon {
		font-size: 2rem;
	}

	.grid-section {
		grid-template-columns: 1fr;
	}

	.grid-section img {
		width: 100%;
		max-width: 100%;
		height: auto;
		margin-bottom: 1rem;
		display: block;
	}

	.content-block {
		width: 100%;
		box-sizing: border-box;
	}

	.content-block .multicol {
		column-count: 1;
	}

	.firma {
		font-size: 3rem;
	}

	.zusatz {
		font-size: 1.2rem;
		left: 12rem;
		top: 50px;
	}


	nav {
		flex-direction: column;
	}

	.logo {
		flex-direction: column;
		gap: 1rem;
	}

	.logo img {
		height: 60px;
	}
}
