/**
 * Frontend-Stylesheet für sascha-grosse.de
 * Wildnispädagoge & Naturmentor
 *
 * Alle Ressourcen sind lokal - keine externen CSS-Dateien
 * Mobile-First-Ansatz mit Media Queries für größere Bildschirme
 */

/* ============================================
   CSS-VARIABLEN (Custom Properties)
   ============================================ */
:root {
	/* Grüntöne - Hauptfarben der Website */
	--green-dark: #064e3b; /* Dunkelgrün für Header/Footer */
	--green-mid: #065f46; /* Mittelgrün für Buttons */
	--green-light: #047857; /* Hellgrün für Akzente */

	/* Grautöne für Text und Hintergründe */
	--gray-900: #111827; /* Dunkelgrau für Haupttext */
	--gray-700: #374151; /* Grau für Sekundärtext */
	--gray-200: #e5e7eb; /* Hellgrau für Borders */
	--gray-50: #f9fafb; /* Sehr hell für Hintergründe */
}

/* ============================================
   GLOBALE RESET & BASIS-STYLES
   ============================================ */

/* Box-Sizing für alle Elemente auf border-box setzen */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Body - Basis-Styling für gesamte Seite */
body {
	margin: 0;
	/* System-Schriften für native Optik auf allen Plattformen */
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", sans-serif;
	color: var(--gray-900);
	line-height: 1.5; /* Optimale Lesbarkeit */
	background-color: var(--gray-50);
}

/* ============================================
   LAYOUT - CONTAINER
   ============================================ */

/* Zentrierter Container mit max. Breite */
.container {
	max-width: 1200px; /* Maximale Breite für große Screens */
	margin: 0 auto; /* Horizontale Zentrierung */
	padding: 0 1rem; /* Seitlicher Abstand auf Mobile */
}

/* ============================================
   TYPOGRAFIE
   ============================================ */

/* Hauptüberschrift H1 */
h1 {
	font-size: 2.5rem; /* 40px auf Mobile */
	font-weight: 700;
	margin: 0 0 1rem 0;
}

/* H1 größer auf Desktop */
@media (min-width: 768px) {
	h1 {
		font-size: 3.5rem; /* 56px auf Desktop */
	}
}

/* Unterüberschrift H2 */
h2 {
	font-size: 2rem; /* 32px */
	font-weight: 600;
	margin-bottom: 1rem;
	text-align: center;
}

/* Kleinere Überschrift H3 */
h3 {
	font-size: 1.5rem; /* 24px */
	font-weight: 600;
	margin-bottom: 0.5rem;
}

/* Absätze */
p {
	margin-bottom: 1rem;
}

/* ============================================
   NAVIGATION / NAVBAR
   ============================================ */

/* Hauptnavigation - sticky am oberen Rand */
.navbar {
	background: #ffffff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: sticky; /* Bleibt beim Scrollen oben */
	top: 0;
	z-index: 100; /* Über anderen Inhalten */
}

/* Navbar Container - Flexbox für Logo & Menü */
.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1rem;
}

/* Logo/Website-Name */
.logo {
	font-size: 1.25rem; /* 20px */
	font-weight: 600;
	color: var(--green-dark);
	text-decoration: none;
	white-space: normal; /* Erlaubt Umbrüche wenn nötig */
	flex-shrink: 1; /* Logo darf schrumpfen wenn Platz knapp */
	min-width: 0; /* Wichtig für Flexbox-Shrinking */
	line-height: 1.3;
}

/* Navigation Container - darf NICHT schrumpfen */
nav {
	flex-shrink: 0; /* Navigation behält ihre Größe */
	white-space: nowrap;
}

/* ============================================
   MENÜ-LISTE (Desktop)
   ============================================ */

/* Horizontale Menü-Liste */
.nav-list {
	display: flex;
	gap: 1.5rem; /* Abstand zwischen Menüpunkten */
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap !important;
	white-space: nowrap;
}

/* Menü-Links */
.nav-list li a {
	color: var(--gray-900);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
	white-space: nowrap; /* Kein Umbruch in Links */
}

/* Hover-Effekt auf Links */
.nav-list li a:hover {
	color: var(--green-dark);
}

/* ============================================
   UNTERMENÜ / DROPDOWN
   ============================================ */

/* Untermenü-Icon (Dreieck) */
.submenu-icon {
	display: inline-block;
	width: 0;
	height: 0;
	vertical-align: middle;
	/* CSS-Dreieck durch Borders */
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

/* Menüpunkte sind relativ positioniert (für absolute Submenüs) */
.nav-list li {
	position: relative;
}

/* Menüpunkt mit Untermenü - Flexbox für Icon */
.nav-list .has-submenu {
	display: flex;
	align-items: center;
	gap: 0.4rem; /* Abstand zwischen Text und Icon */
	flex-wrap: wrap;
}

/* Icon zeigt nach rechts (90°) */
.nav-list .submenu-icon {
	transform: rotate(90deg);
}

/* Untermenü (Dropdown) - initial versteckt */
.nav-list .submenu {
	display: none;
	position: absolute; /* Positioniert unter dem Menüpunkt */
	top: 100%;
	left: 0;
	background: #ffffff;
	min-width: 200px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	list-style: none;
	padding: 0.5rem 0;
	margin: 0;
	border-radius: 0.375rem;
	z-index: 200; /* Über Navigation */
	width: auto;
	flex-basis: 100%; /* Nimmt volle Breite in Flexbox */
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Untermenü anzeigen bei Hover (Desktop) */
.nav-list .has-submenu.hover .submenu {
	display: block;
	animation: slideDown 0.3s ease forwards;
}

/* Animation: Untermenü gleitet sanft ein */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Icon dreht sich nach unten (0°) bei Hover */
.nav-list .has-submenu.hover .submenu-icon {
	transform: rotate(0deg);
}

/* Untermenü-Einträge mit Trennlinien */
.nav-list .submenu li {
	border-bottom: 1px solid var(--gray-200);
}

/* Letzer Eintrag ohne Trennlinie */
.nav-list .submenu li:last-child {
	border-bottom: none;
}

/* Untermenü-Links */
.nav-list .submenu li a {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--gray-900);
	white-space: nowrap; /* Kein Umbruch */
}

/* Hover-Effekt auf Untermenü-Links */
.nav-list .submenu li a:hover {
	background: var(--gray-50);
	color: var(--green-dark);
}

/* ============================================
   HAMBURGER-MENÜ (Mobile)
   ============================================ */

/* Hamburger-Icon - initial versteckt */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

/* Hamburger-Linien (3 Striche) */
.hamburger div {
	width: 24px;
	height: 2px;
	background: var(--gray-900);
	margin: 4px 0;
	transition: all 0.3s ease;
}

/* ============================================
   MOBILE NAVIGATION (≤768px)
   ============================================ */

@media (max-width: 768px) {
	/* Menü wird zu Dropdown unter Navbar */
	.nav-list {
		position: absolute;
		top: 100%;
		right: 0;
		background: #ffffff;
		width: 100%;
		flex-direction: column;
		gap: 0;
		display: block;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		max-height: 0; /* Initial geschlossen */
		overflow: hidden;
		opacity: 0;
		transition: max-height 0.4s ease, opacity 0.3s ease;
	}

	/* Geöffnetes Mobile-Menü */
	.nav-list.open {
		display: flex;
		max-height: 1000px; /* Große Zahl für Animation */
		opacity: 1;
	}

	/* Trennlinien zwischen Menüpunkten */
	.nav-list li {
		border-bottom: 1px solid var(--gray-200);
	}

	/* Menü-Links als Block mit mehr Padding */
	.nav-list li a {
		padding: 1rem;
		display: block;
	}

	/* Hamburger-Icon anzeigen */
	.hamburger {
		display: flex;
	}

	/* ========================================
	   MOBILE UNTERMENÜ
	   ======================================== */

	/* Untermenü in Mobile-Ansicht */
	.nav-list .submenu {
		position: static; /* Nicht absolut positioniert */
		box-shadow: none;
		display: block;
		background: var(--gray-50);
		border-radius: 0;
		padding: 0;
		max-height: 0; /* Initial geschlossen */
		overflow: hidden;
		opacity: 0;
		transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
		transform: none;
	}

	/* Geöffnetes Untermenü in Mobile */
	.nav-list .has-submenu.open .submenu {
		max-height: 500px;
		opacity: 1;
		padding: 0.5rem 0;
	}

	/* Untermenü-Links eingerückt */
	.nav-list .submenu li a {
		padding-left: 2rem;
	}

	/* Menüpunkt mit Untermenü - Icon rechts */
	.nav-list .has-submenu {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0;
		cursor: pointer;
	}

	/* Größeres Icon auf Mobile */
	.nav-list .submenu-icon {
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-top: 7px solid currentColor;
		margin-left: auto;
		margin-right: 1rem;
		cursor: pointer;
	}

	/* Icon dreht sich nach unten wenn geöffnet */
	.nav-list .has-submenu.open .submenu-icon {
		transform: rotate(0deg);
	}
}

/* ============================================
   HERO-BEREICH (Startseite)
   ============================================ */

/* Hero-Section - Vollbild-Header */
.hero {
	position: relative;
	height: 80vh; /* 80% der Viewport-Höhe */
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	overflow: hidden;
	/* Grüner Verlauf als Fallback */
	background: linear-gradient(
		to right,
		var(--green-dark),
		var(--green-mid),
		var(--green-light)
	);
}

/* Hintergrundbild mit Overlay */
.hero .overlay {
	position: absolute;
	inset: 0; /* Kurzform für top/right/bottom/left: 0 */
	background-image: url("../assets/hero.jpg");
	background-size: cover;
	background-position: center;
	opacity: 0.5; /* Transparent für Lesbarkeit */
}

/* Hero-Content - zentriert über Bild */
.hero-content {
	position: relative;
	z-index: 10; /* Über Overlay */
	max-width: 768px;
	padding: 0 1rem;
	text-align: center;
}

/* Hero-Text auf Mobile */
.hero-content p {
	font-size: 1.125rem; /* 18px */
}

/* Hero-Text größer auf Desktop */
@media (min-width: 768px) {
	.hero-content p {
		font-size: 1.25rem; /* 20px */
	}
}

/* ============================================
   BUTTONS
   ============================================ */

/* Basis-Button-Styling */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 0.375rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

/* Primary Button (gefüllt) */
.btn-primary {
	background: var(--green-mid);
	color: #ffffff;
}

.btn-primary:hover {
	background: var(--green-dark);
}

/* Outline Button (transparent) */
.btn-outline {
	border: 1px solid #ffffff;
	color: #ffffff;
}

.btn-outline:hover {
	background: #ffffff;
	color: var(--green-dark);
}

/* ============================================
   SEKTIONEN
   ============================================ */

/* Standard-Sektion mit Padding */
.section {
	padding: 4rem 1rem;
}

/* Helle Sektion (alternierender Hintergrund) */
.section-light {
	background: var(--gray-50);
}

/* ============================================
   ÜBER-MICH-BEREICH
   ============================================ */

/* About-Section - Flexbox Layout */
.about {
	display: flex;
	flex-direction: column-reverse; /* ← ÄNDERE von "column" zu "column-reverse" */
	align-items: center;
	gap: 2rem;
}
/* Desktop: nebeneinander */
@media (min-width: 768px) {
	.about {
		flex-direction: row;
	}
}

/* Text-Bereich nimmt 50% */
.about-text {
	flex: 1;
}

/* Bild-Bereich nimmt 50% */
.about-image {
	flex: 1;
	display: flex;
	justify-content: center;
}

/* Avatar-Box (Profilbild oder Initialen) */
.avatar {
	width: 256px;
	height: 242px;
	background: var(--gray-200);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-dark);
	font-size: 3rem; /* Für Initialen */
	font-weight: 700;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

/* Zoom-Effekt auf Bild bei Hover */
.avatar:hover img {
	transform: scale(1.05);
	transition: transform 0.3s;
}

/* Bild nimmt volle Breite */
.avatar img {
	width: 100%;
}

/* ============================================
   KARTEN-GRID (Cards)
   ============================================ */

/* Container für Karten */
.cards {
	display: grid;
	gap: 2rem;
}

/* 2-Spalten-Grid (initial 1 Spalte auf Mobile) */
.grid-2 {
	grid-template-columns: 1fr;
}

/* 3-Spalten-Grid (initial 1 Spalte auf Mobile) */
.grid-3 {
	grid-template-columns: 1fr;
}

/* Desktop: tatsächlich mehrere Spalten */
@media (min-width: 768px) {
	.grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Einzelne Karte */
.card {
	background: #ffffff;
	padding: 1.5rem;
	border-radius: 1rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1rem;
}

/* Hover-Effekt: stärkerer Schatten */
.card:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* SVG-Icons in Karten */
.card svg {
	width: 40px;
	height: 40px;
	color: var(--green-dark);
}

/* ============================================
   KONTAKTFORMULAR
   ============================================ */

/* Formular als Grid */
.contact form {
	display: grid;
	gap: 1.5rem;
}

/* Reihe mit mehreren Feldern */
.contact form .row {
	display: grid;
	gap: 1.5rem;
}

/* Desktop: 2 Spalten pro Reihe */
@media (min-width: 768px) {
	.contact form .row {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Labels */
.contact form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

/* Eingabefelder & Textareas */
.contact form input,
.contact form textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--gray-200);
	border-radius: 0.375rem;
	font-size: 1rem;
	font-family: inherit;
	resize: vertical; /* Nur vertikales Resizing */
}

/* Focus-Zustand: grüner Outline */
.contact form input:focus,
.contact form textarea:focus {
	outline: 2px solid var(--green-light);
}

/* ============================================
   FOOTER
   ============================================ */

/* Footer - dunkler Hintergrund */
.footer {
	background: var(--gray-900);
	color: var(--gray-200);
	padding: 2rem 1rem;
}

/* Footer-Inhalt - Flexbox */
.footer-inner {
	display: flex;
	flex-direction: column; /* Mobile: untereinander */
	align-items: center;
	gap: 1rem;
}

/* Desktop: horizontal */
@media (min-width: 768px) {
	.footer-inner {
		flex-direction: row;
		justify-content: space-between;
	}
}

/* Footer-Links */
.footer a {
	color: inherit;
	text-decoration: none;
	margin: 0 0.5rem;
	transition: color 0.2s;
}

.footer a:hover {
	color: #ffffff;
}

/* ============================================
   COOKIE-BANNER (DSGVO)
   ============================================ */

/* Cookie-Banner - fixed am unteren Rand */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	padding: 1rem;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
	display: none; /* Initial versteckt */
	text-align: center;
	z-index: 200; /* Über allen Inhalten */
}

/* Banner-Text */
.cookie-banner p {
	margin: 0;
	margin-bottom: 0.5rem;
	color: var(--gray-900);
}

/* Links im Banner */
.cookie-banner a {
	color: var(--green-dark);
	text-decoration: underline;
}

/* Akzeptieren-Button */
.cookie-banner button {
	margin-top: 0.5rem;
	background: var(--green-mid);
	color: #ffffff;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 0.375rem;
	font-weight: 500;
	cursor: pointer;
}

.cookie-banner button:hover {
	background: var(--green-dark);
}

.hero.small {
	height: 41vh;
}
.section-light .card {
	gap: 0;
}
.section-light p {
	margin-bottom: 0; /* 12px statt 16px */
	margin-top: 0.5rem;
}

.section-light p:last-of-type {
	margin-bottom: 1rem; /* Kein Abstand beim letzten Absatz */
}
.hero.small {
	height: 41vh;
}
.quote-card {
	background: rgba(255, 255, 255, 0.7);
	border-left: 4px solid #34523c;
	border-radius: 12px;
	padding: 2rem;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.quote-text {
	font-style: italic;
	font-size: 1.3rem;
	color: #2d4034;
	margin: 0;
}
.form-width-full.datnews label.form-checkbox {
	display: flex;
}
.contact form .datnews input {
	width: unset;
}
