/* Landing page (index.html) — light palette from site tokens */

.landing_page {
	margin: 0;
	background: #fff;
	color: var(--rf_text, #333);
}

.landing_page h1,
.landing_page h2 {
	margin: 0;
	background: none;
	text-shadow: none;
	padding: 0;
	opacity: 1;
	color: inherit;
}

.landing_page h1.landing_hero_title {
	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9),
		0 2px 6px rgba(0, 0, 0, 0.16);
}

/* ---- Header ---- */
.landing_header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid var(--rf_gray_light, #ddd);
}

.landing_brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--rf_header_bg, #666);
}

.landing_logo {
	display: block;
	width: 40px;
	height: 40px;
	max-width: none;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--rf_orange, #f9b256);
	box-shadow: none;
}

.landing_brand_name {
	font-family: var(--rf_font_display, Literata, Georgia, serif);
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--rf_header_bg, #666);
	text-shadow: none;
}

.landing_header_link {
	font-family: var(--rf_font_ui, Oswald, 'Trebuchet MS', sans-serif);
	font-size: 0.95rem;
	color: var(--rf_gray, #555);
	text-decoration: none;
	padding: 8px 14px;
	border: 2px solid var(--rf_orange_named, orange);
	border-radius: 4px;
	background: #fff;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.landing_header_link:hover,
.landing_header_link:focus-visible {
	background: var(--rf_orange_named, orange);
	color: #fff;
	outline: none;
}

/* ---- Hero ---- */
.landing_hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	overflow: hidden;
	padding-top: 64px;
	box-sizing: border-box;
}

.landing_hero_media {
	position: absolute;
	inset: 0;
	background-image: url('../images/landing/hero.webp');
	background-size: cover;
	/* Keep the sharp food detail on the right; calmer area on the left for copy */
	background-position: 72% center;
	transform: scale(1.02);
	animation: landing_hero_ken 18s ease-out forwards;
	filter: none;
}

@keyframes landing_hero_ken {
	from { transform: scale(1.05); }
	to { transform: scale(1.0); }
}

.landing_hero_shade {
	position: absolute;
	inset: 0;
	/* Strong readability on the left; right half stays almost clear so the photo reads sharp */
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0) 50%,
			rgba(255, 255, 255, 0.35) 78%,
			rgba(255, 255, 255, 0.55) 100%
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.9) 0%,
			rgba(255, 255, 255, 0.78) 26%,
			rgba(255, 255, 255, 0.3) 46%,
			rgba(255, 255, 255, 0.04) 66%,
			rgba(255, 255, 255, 0) 100%
		);
}

.landing_hero_copy {
	position: relative;
	z-index: 2;
	max-width: min(42rem, 92vw);
	padding: 0 6vw 10vh;
	text-align: left;
	animation: landing_fade_up 0.9s ease-out 0.15s both;
}

.landing_hero_kicker,
.landing_hero_title,
.landing_hero_motto {
	display: block;
	width: 100%;
	text-align: left;
	white-space: nowrap;
}

.landing_hero_kicker {
	margin: 0 0 10px;
	font-family: var(--rf_font_ui, Oswald, 'Trebuchet MS', sans-serif);
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #3a3a3a;
	text-shadow:
		0 0 12px rgba(255, 255, 255, 0.95),
		0 1px 0 rgba(255, 255, 255, 1),
		0 1px 2px rgba(0, 0, 0, 0.22);
}

.landing_hero_title {
	font-family: var(--rf_font_display, Literata, Georgia, serif);
	font-size: clamp(2.8rem, 8vw, 5.2rem);
	font-weight: 700;
	line-height: 1.05;
	color: var(--rf_header_bg, #666);
	margin: 0 0 12px;
	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9),
		0 2px 6px rgba(0, 0, 0, 0.16);
}

.landing_hero_motto {
	margin: 0 0 26px;
	font-family: var(--rf_font_ui, Oswald, 'Trebuchet MS', sans-serif);
	font-size: clamp(1.25rem, 3vw, 1.85rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #a84f08;
	text-shadow:
		0 0 14px rgba(255, 255, 255, 0.98),
		0 1px 0 rgba(255, 255, 255, 1),
		0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 900px) {
	.landing_hero_copy {
		padding: 0 7vw 12vh;
		max-width: 48rem;
	}

	.landing_hero_kicker {
		font-size: 1.45rem;
		letter-spacing: 0.1em;
	}

	.landing_hero_title {
		font-size: 5.4rem;
	}

	.landing_hero_motto {
		font-size: 2rem;
	}
}

@media (max-width: 420px) {
	/* Avoid awkward overflow on very small screens */
	.landing_hero_kicker,
	.landing_hero_motto {
		white-space: normal;
	}
}

.landing_cta {
	display: inline-block;
	font-family: var(--rf_font_ui, Oswald, 'Trebuchet MS', sans-serif);
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	padding: 12px 22px;
	background: var(--rf_orange, #f9b256);
	color: var(--rf_gray, #555);
	border-radius: 4px;
	border: 2px solid var(--rf_orange, #f9b256);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.landing_cta:hover,
.landing_cta:focus-visible {
	background: var(--rf_orange_dark, #e57e25);
	border-color: var(--rf_orange_dark, #e57e25);
	color: #fff;
	outline: none;
	transform: translateY(-1px);
}

.landing_cta_light {
	background: #fff;
	color: var(--rf_gray, #555);
	border-color: var(--rf_orange_named, orange);
}

.landing_cta_light:hover,
.landing_cta_light:focus-visible {
	background: var(--rf_orange_named, orange);
	border-color: var(--rf_orange_named, orange);
	color: #fff;
}

/* ---- Theme bands ---- */
.landing_theme {
	position: relative;
	min-height: min(78vh, 720px);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.landing_theme_media,
.landing_theme_soft {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 72% center;
}

.landing_theme_media {
	z-index: 0;
	filter: none;
}

/* Soft / light side under the copy (mirrors hero treatment) */
.landing_theme_soft {
	z-index: 1;
	width: 56%;
	right: auto;
	filter: blur(14px);
	transform: scale(1.08);
	transform-origin: left center;
	-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
}

.landing_theme_oesterreich .landing_theme_media,
.landing_theme_oesterreich .landing_theme_soft {
	background-image: url('../images/landing/thema_oesterreich.webp');
}

.landing_theme_schnell .landing_theme_media,
.landing_theme_schnell .landing_theme_soft {
	background-image: url('../images/landing/thema_schnell.webp');
	background-position: 28% center;
}

.landing_theme_kinder .landing_theme_media,
.landing_theme_kinder .landing_theme_soft {
	background-image: url('../images/landing/thema_kinder.webp');
}

.landing_theme_mann .landing_theme_media,
.landing_theme_mann .landing_theme_soft {
	background-image: url('../images/landing/thema_mann.webp');
	background-position: 28% center;
}

.landing_theme_festtag .landing_theme_media,
.landing_theme_festtag .landing_theme_soft {
	background-image: url('../images/landing/thema_festtag.webp');
}

.landing_theme_schnell .landing_theme_soft,
.landing_theme_mann .landing_theme_soft {
	left: auto;
	right: 0;
	transform-origin: right center;
	-webkit-mask-image: linear-gradient(270deg, #000 0%, #000 55%, transparent 100%);
	mask-image: linear-gradient(270deg, #000 0%, #000 55%, transparent 100%);
}

.landing_theme_shade {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.9) 0%,
		rgba(255, 255, 255, 0.78) 26%,
		rgba(255, 255, 255, 0.3) 46%,
		rgba(255, 255, 255, 0.04) 66%,
		rgba(255, 255, 255, 0) 100%
	);
}

.landing_theme_schnell .landing_theme_shade,
.landing_theme_mann .landing_theme_shade {
	background: linear-gradient(
		270deg,
		rgba(255, 255, 255, 0.9) 0%,
		rgba(255, 255, 255, 0.78) 26%,
		rgba(255, 255, 255, 0.3) 46%,
		rgba(255, 255, 255, 0.04) 66%,
		rgba(255, 255, 255, 0) 100%
	);
}

.landing_theme_copy {
	position: relative;
	z-index: 3;
	max-width: 26rem;
	padding: 10vh 6vw;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.landing_theme_schnell .landing_theme_copy,
.landing_theme_mann .landing_theme_copy {
	margin-left: auto;
	text-align: right;
}

.landing_theme.is_visible .landing_theme_copy {
	opacity: 1;
	transform: translateY(0);
}

.landing_theme_copy h2 {
	font-family: var(--rf_font_display, Literata, Georgia, serif);
	font-size: clamp(1.9rem, 4.5vw, 2.8rem);
	font-weight: 700;
	line-height: 1.15;
	color: #3f3f3f;
	margin: 0 0 12px;
	text-shadow:
		0 0 12px rgba(255, 255, 255, 0.95),
		0 1px 0 rgba(255, 255, 255, 1),
		0 1px 2px rgba(0, 0, 0, 0.16);
}

.landing_theme_copy p {
	font-family: var(--rf_font_display, Literata, Georgia, serif);
	font-size: 1.05rem;
	line-height: 1.45;
	color: #3a3a3a;
	margin: 0 0 22px;
	text-shadow:
		0 0 10px rgba(255, 255, 255, 0.95),
		0 1px 0 rgba(255, 255, 255, 1);
}

/* ---- Footer ---- */
.landing_footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px 10px;
	padding: 28px 16px 36px;
	background: #f1f1f1;
	border-top: 1px solid var(--rf_gray_light, #ddd);
	font-family: var(--rf_font_ui, Oswald, 'Trebuchet MS', sans-serif);
	font-size: 0.9rem;
}

.landing_footer a {
	color: var(--rf_gray, #555);
	text-decoration: none;
}

.landing_footer a:hover,
.landing_footer a:focus-visible {
	color: var(--rf_orange_dark, #e57e25);
	outline: none;
}

.landing_footer_sep {
	color: #bbb;
}

@keyframes landing_fade_up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.landing_hero_media {
		animation: none;
		transform: none;
	}

	.landing_hero_copy,
	.landing_theme_copy {
		animation: none;
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@media screen and (max-width: 800px) {
	.landing_header {
		padding: 10px 12px;
	}

	.landing_brand_name {
		font-size: 0.95rem;
	}

	.landing_logo {
		width: 34px;
		height: 34px;
	}

	.landing_hero {
		padding-top: 58px;
	}

	.landing_hero_copy {
		padding: 0 5vw 8vh;
		max-width: 100%;
	}

	.landing_theme {
		min-height: 70vh;
		align-items: flex-end;
	}

	.landing_theme_media,
	.landing_theme_soft,
	.landing_theme_schnell .landing_theme_media,
	.landing_theme_schnell .landing_theme_soft,
	.landing_theme_mann .landing_theme_media,
	.landing_theme_mann .landing_theme_soft {
		background-position: center;
	}

	.landing_theme_soft,
	.landing_theme_schnell .landing_theme_soft,
	.landing_theme_mann .landing_theme_soft {
		width: auto;
		left: 0;
		right: 0;
		top: auto;
		height: 62%;
		transform: scale(1.1);
		transform-origin: center bottom;
		-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 42%, #000 100%);
		mask-image: linear-gradient(180deg, transparent 0%, #000 42%, #000 100%);
	}

	.landing_theme_shade,
	.landing_theme_schnell .landing_theme_shade,
	.landing_theme_mann .landing_theme_shade {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.2) 40%,
			rgba(255, 255, 255, 0.78) 68%,
			rgba(255, 255, 255, 0.94) 100%
		);
	}

	.landing_theme_copy,
	.landing_theme_schnell .landing_theme_copy,
	.landing_theme_mann .landing_theme_copy {
		margin-left: 0;
		text-align: left;
		padding: 8vh 5vw 9vh;
		max-width: 100%;
	}
}
