/* Küstenfieber-Klon: gezielte Fixes am eingefrorenen Original, siehe ULTRAPLAN.md */

/* Phase 1.1: Hero-Titelbild komplett sichtbar statt beschnitten (cover -> contain) */
.et_pb_fullwidth_slider_0 .et_pb_slide {
	background-size: contain !important;
}

/* Erste Slide: weißer Hintergrund statt Divi-Blau hinter dem freigestellten Bild */
.et_pb_fullwidth_slider_0 .et_pb_slide_0 {
	background-color: #ffffff !important;
}

/* Phase 1.3: Marken-Carousel ersetzt durch statisches CSS-Grid (kein JS-Plugin mehr) */
.kf-brand-grid,
.kf-brand-grid li {
	list-style: none !important;
}
.kf-brand-grid {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	align-items: center;
	gap: 32px 24px;
}
.kf-brand-grid li {
	display: flex;
	align-items: center;
	justify-content: center;
}
.kf-brand-grid img {
	max-width: 100%;
	max-height: 65px;
	width: auto;
	height: auto;
	filter: grayscale(1);
	opacity: 0.75;
	transition: filter 0.2s ease, opacity 0.2s ease;
}
.kf-brand-grid img:hover {
	filter: grayscale(0);
	opacity: 1;
}

/* Phase 2: Instagram-Feed statisch via Business-Discovery-Fetch statt Live-Widget */
.kf-instagram-header {
	margin-bottom: 20px;
}
.kf-instagram-header-link {
	font-weight: 600;
	text-decoration: none;
}
.kf-instagram-grid,
.kf-instagram-grid li {
	list-style: none !important;
}
.kf-instagram-grid {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}
@media (max-width: 980px) {
	.kf-instagram-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.kf-instagram-card a {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.kf-instagram-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.kf-instagram-card a:hover img {
	transform: scale(1.04);
}
.kf-instagram-caption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 10px 12px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	color: #fff;
	font-size: 12px;
	line-height: 1.35;
	opacity: 0;
	transition: opacity 0.2s ease;
}
.kf-instagram-card a:hover .kf-instagram-caption {
	opacity: 1;
}
.kf-instagram-follow {
	margin-top: 20px;
}
.kf-instagram-follow a {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
}

/* Phase 3 (überarbeitet): Wetter-Widget live via Open-Meteo statt awesome-weather-Plugin,
   Struktur/Optik 1:1 vom Original übernommen (Foto-Hintergrund je Wetterlage, große Temperatur,
   5-Tage-Vorschau) — nur Datenquelle und Attribution ausgetauscht. */
.kf-weather-wrap {
	position: relative;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1;
	overflow: hidden;
}
.kf-weather-cover {
	background-size: cover;
	background-position: center;
	background-color: #333;
	transition: background-image 0.3s ease-in;
}
.kf-weather-darken {
	background: rgba(0, 0, 0, 0.2);
}
.kf-weather-header {
	padding: 10px;
	text-align: center;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.1);
	font-size: 14px;
}
.kf-weather-temp {
	padding: 10px 5%;
	font-size: clamp(48px, 9vw, 100px);
	line-height: 1em;
	font-weight: 400;
}
.kf-weather-temp sup {
	font-size: 50%;
	position: relative;
	top: -0.75em;
}
.kf-weather-desc {
	padding: 0 20px;
	font-size: 14px;
}
.kf-weather-forecast {
	display: flex;
	padding: 0 5px 10px 20px;
	margin-top: 20px;
}
.kf-weather-forecast-day {
	flex: 1;
	text-align: center;
	font-size: 0.8em;
}
.kf-weather-forecast-day-temp {
	font-size: 1.8em;
}
.kf-weather-forecast-day-abbr {
	text-transform: uppercase;
	margin-top: 5px;
}
.kf-weather-attribution {
	text-align: center;
	font-size: 9px;
	font-weight: 700;
	font-family: sans-serif;
	padding: 5px;
}

/* Impressum & Datenschutzerklärung: Fließtext erbte 12px (statt üblichem Body-Fließtext) */
body.page-id-49764 .et_pb_text_inner p,
body.page-id-49764 .et_pb_text_inner li,
body.page-id-3 .et_pb_text_inner p,
body.page-id-3 .et_pb_text_inner li {
	font-size: 16px !important;
	line-height: 1.7 !important;
	font-weight: 400 !important;
}
