	body {
		font-family: Arial, sans-serif;
		margin: 0; padding: 0;
		background: #f5f5f5;
		color: #222;
	}
	header img {
		width: 100%;
		max-height: 800px;
		object-fit: cover;
	}
	nav {
		background: #22789d;
		animation: navColorFade 16s linear infinite alternate;
		padding: 20px 0;
		text-align: center;
        z-index: 200;  /* Oder noch höher, je nach Bedarf */
		position: relative;
				min-height: 50px;
	}
	
	@keyframes navColorFade {
		0%   { background: #22789d; }    /* Original dunkelblau */
		20%  { background: #183153; }    /* Dunkles Nachtblau */
		40%  { background: #1c3537; }    /* Petrol/Grau */
		60%  { background: #253841; }    /* Dunkelgrün-blau */
		80%  { background: #2d3440; }    /* Rauchgrau */
		100% { background: #22789d; }    /* Zurück zum Start */
	}
	.nav-toggle-label {
		display: none;
		cursor: pointer;
		font-size: 2.2rem;
		color: #fff;
		position: absolute;
		top: 16px;
		right: 32px;
		z-index: 10;
	}
	#nav-toggle {
		display: none;
	}
	.nav-links a {
		color: #fff;
		text-decoration: none;
		margin: 0 18px;
		font-weight: bold;
		letter-spacing: 1px;
		display: inline-block;
		transition: color 0.2s;
	}
	.nav-links a:hover {
		text-decoration: underline;
		color: #ffdd57;
	}
	@media (max-width: 900px) {
		.nav-toggle-label {
			display: block;
		}
		.nav-links {
			display: none;
			position: absolute;
			top: 60px;
			left: 0;
			right: 0;
			width: 100%;
			background: #22789d;
			flex-direction: column;
			align-items: center;
			padding: 16px 0 24px 0;
			box-shadow: 0 4px 12px rgba(0,0,0,0.09);
			z-index: 9;
		}
		.nav-links a {
			margin: 14px 0;
			font-size: 1.4rem;
			display: block;
		}
		#nav-toggle:checked ~ .nav-links {
			display: flex;
		}
	}
	main {
		max-width: 1200px;
		margin: 40px auto 20px auto;
		background: #fff;
		padding: 40px;
		border-radius: 20px;
		box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	}
	h1 { color: #22789d; margin-top: 0; }
	footer {
		text-align: center; padding: 20px 0; color: #666;
	}
	
	.header-img-wrapper {
		position: relative;
		overflow: hidden;
		width: 100%;
		height: 300px;
	}
	.header-img-wrapper img {
		width: 100%;
		height: 300px;
		object-fit: cover;
		object-position: center top;
		animation: headerMove 12s ease-in-out infinite alternate;
		transition: none;
	}
	
	/* Parallax-ähnlicher Bewegungseffekt: Das Bild „wandert“ langsam von oben nach unten */
	@keyframes headerMove {
		from {
			object-position: center top;
		}
		to {
			object-position: center bottom;
		}
	}
	
	/* Handy-Modus: Bild bleibt statisch, nimmt volle Höhe/Breite, kein Effekt */
	@media (max-width: 900px) {
		.header-img-wrapper {
			height: 100vw;   /* 100vw macht das Bild quadratisch, du kannst hier auch eine andere Höhe einstellen, z.B. 220px oder 40vh */
			min-height: 180px;
			max-height: 350px;
		}
		.header-img-wrapper img {
			height: 100%;
			object-position: center center;
			animation: none;
		}
	}

/* Partner links */

.partner-links {
	background: #183153;   /* Dunkler Blauton */
	color: #fff;
	border-radius: 12px;
	padding: 18px 26px;
	margin: 28px auto 0 auto;
	width: fit-content;
	box-shadow: 0 4px 16px rgba(24,49,83,0.10);
	transition: box-shadow 0.2s, background 0.2s;
	font-size: 1rem;
	border: 1.5px solid #22789d; /* Passend zur Navi */
	max-width: 98vw;         /* nie breiter als der Viewport */
	word-break: break-word;  /* bricht lange Links zur Not */
}

.partner-links ul {
	margin: 10px 0 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;         /* Zeilenumbruch erlauben */
	justify-content: center; /* zentriert bei Umbruch */
	gap: 16px;
}
.partner-links li {
	display: inline-block;   /* Block für bessere Zeilenumbrüche */
	margin-bottom: 6px;      /* Luft nach unten bei Umbruch */
}
.partner-links a {
	color: #ffdd57;
	text-decoration: underline;
	font-weight: bold;
	transition: color 0.2s;
}
.partner-links a:hover {
	color: #fff200; /* Noch kräftigeres Gelb beim Hover */
}

/* --- FLOATING AUF DESKTOP --- */
@media (min-width: 900px) {
	.partner-links {
		position: fixed;
		bottom: 10vh;   /* 10% vom unteren Rand */
		right: 28px;
		top: auto;      /* überschreibt top */
		transform: none; /* entfernt translateY Effekt */
		margin: 0;
		box-shadow: 0 8px 30px rgba(34,120,157,0.18);
		z-index: 99;
		max-width: 320px;     /* niemals breiter als Sidebar */
		width: 100%;          /* erlaubt flexibles Breitenmanagement */
	}
	footer .partner-links {
		position: fixed;
	}
}
/* --- Im Footer auf kleineren Geräten --- */
@media (max-width: 899px) {
	.partner-links {
		position: static;
		box-shadow: 0 4px 16px rgba(24,49,83,0.09);
		margin: 24px auto 0 auto;
		width: fit-content;
	}
}


/* nav floaters */

.nav-floaters {
	position: relative;
}
.nav-floater {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: #183153;
	color: #ffdd57;
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
	padding: 18px 22px;
	border-radius: 0 18px 18px 0;
	box-shadow: 0 8px 28px rgba(34,120,157,0.18);
	opacity: 0.85;
	transition: background 0.2s, color 0.2s, opacity 0.2s;
	z-index: 120;
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav-floater-left {
	left: 0;
	border-radius: 0 18px 18px 0;
}
.nav-floater-right {
	right: 0;
	border-radius: 18px 0 0 18px;
}
.nav-floater:hover {
	background: #22789d;
	color: #fff;
	opacity: 1;
}
.nav-floater span {
	font-size: 1.1rem;
	font-weight: normal;
	white-space: nowrap;
}

/* Mobil/Tablet: Floating-Navigation unter main, horizontal nebeneinander */
@media (max-width: 900px) {
	.nav-floaters {
		display: flex;
		justify-content: center;
		gap: 24px;
		margin: 32px auto 0 auto;
		max-width: 95vw;
	}

	.nav-floater {
		position: static;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
		font-size: 1.3rem;
		padding: 10px 16px;
		border-radius: 10px;
		opacity: 1;
		box-shadow: 0 2px 8px rgba(34,120,157,0.09);
		width: auto;
		min-width: 110px;
		justify-content: center;
		z-index: 120;  /* Muss niedriger sein als nav */
	}

	.nav-floater span {
		font-size: 1rem;
	}

	.nav-floater-left, .nav-floater-right {
		border-radius: 10px;
	}
	
}
@media (max-width: 900px) {
	/* Nur den Weiter-Button zeigen, Zurück-Button ausblenden */
	.nav-floater-left {
		display: none !important;
	}
}

.reisen-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: flex-start;
	margin-top: 32px;
}
.reise-box {
	background: #fff;
	border-radius: 14px;
	padding: 18px 14px;
	box-shadow: 0 4px 16px rgba(34,120,157,0.09);
	width: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 16px;
	text-align: center;
}
.reise-box img {
	border-radius: 8px;
	margin-bottom: 8px;
}
.reise-box .btn {
	margin-top: 8px;
	padding: 8px 14px;
	background: #22789d;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.2s;
}
.reise-box .btn:hover {
	background: #ffdd57;
	color: #22789d;
}

.reise-slider-container {
	position: relative;
	max-width: 600px;
	margin: 20px auto 32px auto;
	background: #f7f8fa;
	border-radius: 16px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.07);
	overflow: visible;
}
.reise-slider {
	position: relative;
	width: 100%;
	min-height: 220px;
}
.slider-slide {
	display: none;
	text-align: center;
	padding: 8px 0;
}
.slider-slide.active {
	display: block;
}
.slider-caption {
	color: #444;
	font-size: 0.97em;
	margin: 5px 0 0 0;
}
.slider-arrow {
	position: absolute;
	top: 42%;
	z-index: 2;
	font-size: 2.3em;
	width: 38px;
	height: 38px;
	background: rgba(250,250,250,0.93);
	border: none;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	color: #444;
	cursor: pointer;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slider-arrow-left { left: 12px; }
.slider-arrow-right { right: 12px; }
.slider-arrow:active, .slider-arrow:focus { background: #f0f0f0; }
.slider-thumbs {
	text-align: center;
	margin: 6px 0 8px 0;
	padding: 0 0 6px 0;
}
.slider-thumb {
	opacity: 0.7;
	border: 2px solid transparent;
	cursor: pointer;
	margin: 2px 2px 0 2px;
	transition: border 0.15s, opacity 0.15s;
}
.slider-thumb.active {
	border: 2px solid #d26d16;
	opacity: 1;
}

@media (max-width: 700px) {
	.reise-slider-container { max-width: 98vw; }
	.reise-slider { min-height: 150px; }
	.slider-thumbs img { width: 38px; height: 29px; }
}



.reisen-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 36px 32px;
  margin: 2em 0;
}
@media (max-width: 900px) {
  .reisen-grid {
	grid-template-columns: 1fr;
  }
}
@media (min-width: 1400px) {
  .reisen-grid {
	grid-template-columns: repeat(4, 1fr); /* oder 3, falls erwünscht */
  }
}
.reise-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(34,120,157,0.07);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.16s;
  min-height: 400px;
}
.reise-box:hover, .reise-box:focus-within {
  box-shadow: 0 8px 32px rgba(34,120,157,0.17);
  transform: translateY(-3px) scale(1.03);
}
.reise-imglink img {
  width: 100%;
  height: 220px;         /* z.B. 220px für 16:9 Optik, bei Bedarf anpassen */
  object-fit: cover;
  border-radius: 0;
  border-bottom: 1px solid #eee;
  display: block;
  transition: opacity 0.2s;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .reise-imglink img { height: 160px; }
}
@media (max-width: 900px) {
  .reise-imglink img { height: 140px; }
}
.reise-imglink:focus img {
  outline: 3px solid #ffdd57;
  outline-offset: -3px;
}
.reise-infos { padding: 1em 1.1em 1.1em 1.1em; }
.reise-infos h2 { font-size:1.15rem; margin:10px 0 8px 0; font-weight:600; }
.reise-tags { margin-bottom: 3px;}
.tag {
  display: inline-block;
  background: #f3f9fc;
  color: #22789d;
  font-size: 0.96em;
  border-radius: 6px;
  padding: 2px 9px;
  margin: 0 4px 4px 0;
  font-weight: 500;
}
#filter-controls {
  margin: 1em 0 2em 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
#filter-controls select {
  font-size:1em; padding:7px 17px; border-radius:7px; border:1px solid #bfdbe9;
  background:#f7fbfd; color:#22789d; min-width: 145px;
}

@media (max-width: 1200px) {
  .reisen-grid { gap: 24px 18px; }
  .reise-imglink img { height: 220px; }
  .reise-box { min-height: 310px; }
}
@media (max-width: 930px) {
  .reisen-grid { gap: 18px 10px; }
}
@media (max-width: 660px) {
  .reisen-grid { grid-template-columns: 1fr; }
  .reise-imglink img { height: 180px; }
  .reise-box { min-height: 190px; }
}