@import url( reset.css );
@import url( roboto.css );

:root {
	--orange: #ffbf00;
}

html {
	background-color: #777;
	color: white;
}

a {
	font-weight: 700;
	color: var( --orange );
	text-decoration: none;
}

i, em {
	font-weight: 700;
	color: var( --orange );
	font-style: normal;
}

strong, b {
	font-weight: 700;
}

/* Navigation - Responsive */
nav {
	position: sticky;
	top: 0;
	background-color: #222; /* Eleganteres, dunkleres Grau */
	z-index: 100; /* Verhindert Überlappungen beim Scrollen */
	border-bottom: 1px solid #444; /* Feine Trennlinie */
}

.nav-container {
	display: flex;
	padding: 0.3rem 1rem; /* Noch schmaler */
	position: relative;
	justify-content: center;
	align-items: center;
	min-height: 45px;
}

#menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--orange);
	font-size: 1.5rem; /* Etwas kleiner/eleganter */
	cursor: pointer;
	padding: 0;
}

.nav-links {
	display: flex;
	gap: 2rem; /* Mehr Luft zwischen den Links wirkt eleganter */
}

.nav-links a.lv1 {
	color: #ccc;
	font-size: 0.85rem; /* Etwas kleiner für mehr Eleganz */
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 400;
	padding: 0.5rem 0; /* Klickbarer Bereich, aber optisch schmal */
	transition: color 0.2s;
}

.nav-links a.lv1:hover {
	color: var(--orange);
}

/* Responsive Breakpoint für Mobile (z.B. max 600px) */
@media (max-width: 600px) {
	.nav-container {
		justify-content: flex-start; /* Burger-Menü linksbündig */
	}

	#menu-toggle {
		display: block; /* Burger-Icon anzeigen */
	}

	.nav-links {
		display: none; /* Links standardmäßig ausblenden */
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: #333;
		padding: 1rem;
		text-align: left;
		border-top: 1px solid #555;
	}

	.nav-links.open {
		display: flex; /* Links anzeigen, wenn 'open' Klasse aktiv ist */
	}
}

header {
	text-align: center;
	padding: 2rem;
}

header img.logo {
	max-width: 200px;
}

header.banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 35vh;
	padding: 4rem 2rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed; /* Erzeugt den "rausscrollen" (Parallax) Effekt */
	border-bottom: 1px solid #444;
}

header.banner h1 {
	margin-top: 1.5rem;
	text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

header.banner img.logo {
	filter: drop-shadow(0 2px 10px rgba(0,0,0,0.8));
}

section, article {
	background-color: black;
	border-radius: 2rem;
	margin: 5rem auto; /* Deutlich mehr Abstand zwischen den Sektionen */
	width: 90%; /* Etwas Platz am Rand bei kleineren Displays */
	padding: 4rem 2rem;
	max-width: 800px;
}

section h2, article h2 {
	margin-bottom: 1.5rem;
	font-size: 2rem;
}

section h3, article h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

section h4, article h4 {
	color: var(--orange);
	margin-bottom: 0.5rem;
}

section p, article p {
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

section ul, article ul {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

section ul li, article ul li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
	list-style-type: disc;
}

.reference-item {
	margin-top: 2rem;
	padding: 1.5rem;
	background-color: #111;
	border-left: 4px solid var(--orange);
	border-radius: 0 1rem 1rem 0;
}

.reference-item h4 {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.reference-item p {
	margin-bottom: 0;
}

footer {
	text-align: center;
	padding: 2rem;
}
