/*
 * Seitenspezifische Styles der Startseite – wird nur auf is_front_page()
 * nachgeladen (siehe functions.php), da diese Muster (noch) auf keiner
 * zweiten Seite vorkommen. Siehe CLAUDE.md Abschnitt 12: Sobald ein Block
 * hier wiederverwendbar wird, gehört er nach assets/css/components/.
 */

/* ---------- Hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--waldgruen) 0%, var(--waldgruen-dark) 65%);
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 96px 32px 190px;
}

.hero h1 {
	color: #fff;
	font-size: clamp(34px, 5.6vw, 58px);
	line-height: 1.08;
	max-width: 680px;
}

.hero h1 em {
	font-style: normal;
	color: var(--frischgruen);
}

.hero p.lead {
	color: rgba(255, 255, 255, .85);
	font-size: 18px;
	max-width: 520px;
	margin-top: 20px;
}

.hero-ctas {
	display: flex;
	gap: 14px;
	margin-top: 34px;
	flex-wrap: wrap;
}

.hero-hills {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	z-index: 1;
	width: 100%;
	height: auto;
}

/* ---------- Trust ---------- */
.trust-line {
	text-align: center;
	margin-top: 44px;
	font-size: 13px;
	color: var(--erdbraun-45);
	letter-spacing: .02em;
}

.partner-row {
	display: flex;
	justify-content: center;
	gap: 36px;
	margin-top: 26px;
	flex-wrap: wrap;
	opacity: .55;
}

.partner-row span {
	font-weight: 700;
	font-size: 14px;
	color: var(--erdbraun);
}

/* ---------- Newsletter ---------- */
.newsletter {
	background: var(--herzenswald-gruen);
	border-radius: var(--radius-lg);
	padding: 56px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.newsletter h2 {
	color: #fff;
	font-size: 26px;
	max-width: 380px;
}

.newsletter p {
	color: rgba(255, 255, 255, .85);
	margin-top: 8px;
}

.nl-form {
	display: flex;
	gap: 10px;
	flex: 1;
	min-width: 280px;
	max-width: 420px;
}

.nl-form input {
	flex: 1;
	padding: 14px 18px;
	border-radius: 999px;
	border: none;
	font-family: var(--font);
	font-size: 14px;
}

.nl-form input:focus {
	outline: 3px solid rgba(255, 255, 255, .5);
}

/* Breakpoint 880px – siehe CLAUDE.md Abschnitt 11.3 */
@media (max-width: 880px) {
	.hero-inner {
		padding: 56px 20px 140px;
	}

	.newsletter {
		flex-direction: column;
		text-align: center;
		padding: 36px 24px;
	}

	.nl-form {
		width: 100%;
	}
}
