.site-header {
	min-height: 85vh;
	position: relative;
}

/* Subtiler dunkler Gradient für bessere Lesbarkeit des Textes */
.site-header::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.08) 0%,
		rgba(0, 0, 0, 0.42) 100%
	);
	z-index: 1;
}

.site-header-img {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
}

.site-header-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 0 20px;
	box-sizing: border-box;
}

.site-header h1 {
	background: transparent;
	padding: 0;
	color: white;
	font-family: 'Italiana', serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	letter-spacing: 6px;
	text-align: center;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.site-header .redactor-style {
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
	max-width: 55%;
	text-align: center;
}

@media screen and (max-width: 850px) {
	.site-header {
		min-height: 60vh;
	}

	.site-header h1 {
		letter-spacing: 3px;
	}

	.site-header .redactor-style {
		max-width: 90%;
	}
}
