/* Bootsreisen-Webseite — Editorial Marine
 * Royal Classique, Mueritz, 05.-19.08.2026
 *
 * Farbsprache:
 *   Marine-tief   #0f3a5c  (Primaer, Headlines, Header)
 *   Petrol        #2e6582  (Akzent, Links)
 *   Petrol-hell   #d4e2ec  (Hover-BG, Liegeplatz-Box)
 *   Honig         #b88a3a  (warmer Akzent: Empfehlung, Liegetag-Marker)
 *   Honig-hell    #f3e7cf  (warme Akzent-BG)
 *   Papier        #fafaf7  (warmer Hintergrund)
 *   Papier-tief   #f0ede5
 *   Linie         #dce0e5
 *   Text          #1a2533  (Anthrazit)
 *   Muted         #6c7989
 *   Rot           #c83a3a  (ernster, weniger Signalrot)
 */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
	--marine:        #0f3a5c;
	--marine-tief:   #0a2840;
	--petrol:        #2e6582;
	--petrol-hell:   #d4e2ec;
	--honig:         #b88a3a;
	--honig-hell:    #f3e7cf;
	--papier:        #fafaf7;
	--papier-tief:   #f0ede5;
	--linie:         #dce0e5;
	--linie-stark:   #b8c4cd;
	--text:          #1a2533;
	--muted:         #6c7989;
	--rot:           #c83a3a;
	--karte:         #ffffff;

	--font-serif: "Lora", "Cambria", "Times New Roman", Georgia, serif;
	--font-text:  "Selawik", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-mono:  "JetBrains Mono", "Cascadia Code", Consolas, "Courier New", monospace;

	--radius: 4px;
	--radius-klein: 2px;
	--radius-bild:  6px;

	--schatten-klein:  0 1px 2px rgba(15, 58, 92, 0.06);
	--schatten-mittel: 0 4px 14px rgba(15, 58, 92, 0.10);
	--schatten-gross:  0 12px 40px rgba(15, 58, 92, 0.14);
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	font-family: var(--font-text);
	color: var(--text);
	background: var(--papier);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "kern", "liga", "calt";
}

/* === Top-Navigation === */
.topbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--marine);
	color: #fff;
	box-shadow: var(--schatten-klein);
}
.topbar-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 12px 28px;
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	font-weight: 600;
	font-size: 17px;
	letter-spacing: 0.2px;
	color: #fff;
	text-decoration: none;
}
.brand-icon { width: 34px; height: 34px; display: block; }
.brand-text { white-space: nowrap; font-family: var(--font-serif); }
.brand-subtitle {
	font-size: 11px;
	font-weight: 400;
	opacity: 0.75;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	display: block;
	font-family: var(--font-text);
	margin-top: 2px;
}
nav.topnav {
	display: flex;
	gap: 2px;
	flex-wrap: wrap;
	margin-left: auto;
}
nav.topnav a {
	color: rgba(255,255,255,0.82);
	text-decoration: none;
	padding: 8px 14px;
	border-radius: var(--radius-klein);
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: 0.2px;
	transition: color .15s ease, background .15s ease;
	white-space: nowrap;
}
nav.topnav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
nav.topnav a.active { color: #fff; background: rgba(255,255,255,0.14); }

/* === Container === */
.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 28px 80px;
}
.container-schmal {
	max-width: 820px;
	margin: 0 auto;
	padding: 48px 28px 80px;
}

/* === Hero === */
.hero {
	background: var(--marine);
	color: #fff;
	padding: 72px 28px;
	margin: 0;
	position: relative;
}
.hero-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 56px;
	align-items: center;
}
@media (max-width: 800px) {
	.hero-inner { grid-template-columns: 1fr; gap: 36px; }
}
.hero h1 {
	font-family: var(--font-serif);
	font-size: 48px;
	line-height: 1.12;
	margin: 0 0 18px;
	font-weight: 600;
	letter-spacing: -0.5px;
}
.hero .lead {
	font-size: 18px;
	opacity: 0.88;
	margin: 0 0 32px;
	max-width: 580px;
	line-height: 1.55;
}
.hero-fakten {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 32px;
	font-size: 15px;
	max-width: 560px;
	margin: 0;
}
.hero-fakten dt {
	opacity: 0.6;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}
.hero-fakten dd {
	margin: 0;
	font-weight: 500;
	font-size: 16px;
	font-family: var(--font-serif);
}
.hero-bild {
	border-radius: var(--radius-bild);
	overflow: hidden;
	box-shadow: var(--schatten-mittel);
	min-height: 240px;
	background: rgba(255,255,255,0.04);
}
.hero-bild svg { max-width: 100%; height: auto; padding: 28px; display: block; }
.hero-bild a {
	display: block;
	position: relative;
	border-radius: var(--radius-bild);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.hero-bild a:hover { transform: translateY(-2px); box-shadow: var(--schatten-gross); }
.hero-bild img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.hero-bild a::after {
	content: 'Royal Classique →';
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 12px 16px;
	background: linear-gradient(0deg, rgba(15,40,64,0.88), rgba(15,40,64,0));
	color: #fff;
	font-family: var(--font-serif);
	font-size: 14px;
	font-style: italic;
	text-align: right;
	letter-spacing: 0.4px;
}

/* Crew-Link im Hero-Faktum */
.crew-link {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(255,255,255,0.45);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: text-decoration-color .15s;
}
.crew-link:hover { color: #fff; text-decoration-color: #fff; }

/* === Page Header === */
.page-header {
	background: var(--marine);
	color: #fff;
	padding: 44px 28px 36px;
}
.page-header h1 {
	margin: 12px 0 6px;
	font-size: 34px;
	font-family: var(--font-serif);
	font-weight: 600;
	letter-spacing: -0.3px;
}
.page-header .untertitel { opacity: 0.82; font-size: 16px; max-width: 720px; }
.page-header-inner { max-width: 1180px; margin: 0 auto; }

/* === Typografie === */
h2 {
	font-family: var(--font-serif);
	font-size: 28px;
	margin: 56px 0 20px;
	color: var(--marine);
	font-weight: 600;
	letter-spacing: -0.2px;
}
h3 {
	font-family: var(--font-serif);
	font-size: 22px;
	margin: 32px 0 12px;
	color: var(--marine);
	font-weight: 600;
}
h4 {
	font-size: 14px;
	margin: 22px 0 8px;
	color: var(--marine);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}
p { margin: 12px 0; }
a {
	color: var(--petrol);
	text-decoration: underline;
	text-decoration-color: rgba(46, 101, 130, 0.32);
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
a:hover { color: var(--marine); text-decoration-color: var(--marine); }

ul, ol { padding-left: 22px; }
li { margin: 4px 0; }

.lead { font-size: 17px; line-height: 1.65; color: var(--text); }

.brand-eas {
	color: var(--rot);
	font-weight: 700;
	font-style: italic;
}

/* === Cards === */
.card {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: var(--schatten-klein);
	margin: 18px 0;
}
.card-titel {
	margin: 0 0 8px;
	font-family: var(--font-serif);
	font-size: 19px;
	font-weight: 600;
	color: var(--marine);
}
.card-untertitel {
	color: var(--muted);
	font-size: 14px;
	margin: -4px 0 14px;
}

/* === Route-Vergleichs-Karten === */
.routen-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
	margin: 28px 0;
}
.route-karte {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--schatten-klein);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform .18s ease, box-shadow .18s ease;
	text-decoration: none;
	color: inherit;
}
.route-karte:hover {
	transform: translateY(-3px);
	box-shadow: var(--schatten-mittel);
}
.route-karte.empfehlung {
	border-top: 4px solid var(--honig);
	background: linear-gradient(180deg, var(--honig-hell) 0%, var(--karte) 24%);
}
.route-karte .empfehlung-banner {
	position: absolute;
	top: -1px;
	right: 18px;
	background: var(--honig);
	color: #fff;
	padding: 4px 14px;
	border-radius: 0 0 var(--radius-klein) var(--radius-klein);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}
.route-karte h3 { margin: 0 0 8px; color: var(--marine); font-size: 22px; }
.route-karte .route-untertitel {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 18px;
	font-style: italic;
}
.route-karte .route-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin: 16px 0;
	padding: 14px 0;
	border-top: 1px solid var(--linie);
	border-bottom: 1px solid var(--linie);
}
.route-karte .stat-num {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 600;
	color: var(--marine);
	display: block;
}
.route-karte .stat-label {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.route-karte .route-charakter {
	font-size: 14.5px;
	color: var(--text);
	margin: 12px 0 16px;
	flex-grow: 1;
	line-height: 1.55;
}
.route-karte .mehr {
	color: var(--marine);
	font-weight: 600;
	font-size: 14px;
	margin-top: auto;
	letter-spacing: 0.3px;
}
.route-karte .mehr::after { content: ' \2192'; }

/* === Tagestabelle === */
.etappen-tabelle {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	overflow: hidden;
}
.etappen-tabelle th {
	background: var(--marine);
	color: #fff;
	padding: 12px 14px;
	text-align: left;
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.etappen-tabelle td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--linie);
	vertical-align: top;
}
.etappen-tabelle tr:last-child td { border-bottom: 0; }
.etappen-tabelle tr:nth-child(even) td { background: var(--papier-tief); }
.etappen-tabelle .num, .etappen-tabelle .mono {
	font-family: var(--font-mono);
	text-align: center;
	font-size: 13px;
}
.etappen-tabelle .tag-num {
	font-family: var(--font-serif);
	font-weight: 700;
	color: var(--marine);
	text-align: center;
	width: 40px;
	font-size: 16px;
}
.etappen-tabelle .liegetag td {
	background: var(--honig-hell) !important;
	font-style: italic;
}

/* === Symbol-Pillen (Outline-Stil) === */
.symbol-zeile {
	display: inline-flex;
	gap: 6px;
	flex-wrap: wrap;
	vertical-align: middle;
}
.symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid var(--linie-stark);
	font-size: 12px;
	line-height: 1;
	cursor: default;
	user-select: none;
}

/* === Filter-Bar === */
.filter-bar {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 16px 22px;
	margin: 24px 0;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}
.filter-bar .filter-label {
	font-weight: 600;
	font-size: 13px;
	color: var(--muted);
	margin-right: 10px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}
.filter-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 20px;
	background: transparent;
	border: 1px solid var(--linie-stark);
	cursor: pointer;
	font-size: 13.5px;
	font-weight: 500;
	transition: all .12s ease;
	user-select: none;
	color: var(--text);
	font-family: inherit;
}
.filter-pill:hover {
	border-color: var(--petrol);
	background: var(--petrol-hell);
}
.filter-pill.active {
	background: var(--marine);
	color: #fff;
	border-color: var(--marine);
}
.filter-pill.active .symbol {
	border-color: rgba(255,255,255,0.5);
}
.filter-bar .filter-reset {
	background: transparent;
	border: 0;
	color: var(--muted);
	cursor: pointer;
	font-size: 13px;
	padding: 6px 10px;
	margin-left: auto;
	text-decoration: underline;
	font-family: inherit;
}
.filter-bar .filter-reset:hover { color: var(--rot); }

/* === Halt === */
.halt {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 28px;
	margin: 28px 0;
	box-shadow: var(--schatten-klein);
	overflow: hidden;
}
.halt > .halt-bild {
	/* Bild aus dem Halt-Padding ausbrechen, damit es randlos sitzt */
	margin: -28px -28px 22px;
	position: relative;
	background: var(--papier-tief);
}
.halt-bild img {
	display: block;
	width: 100%;
	height: 320px;
	object-fit: cover;
}
.halt-bild-credit {
	position: absolute;
	bottom: 0;
	right: 0;
	background: rgba(15, 40, 64, 0.78);
	color: #fff;
	font-size: 10px;
	padding: 4px 10px;
	letter-spacing: 0.4px;
	font-family: var(--font-text);
}
.halt-bild-credit a { color: #fff; text-decoration: underline; }
.halt-bild.zwei {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}
.halt-bild.zwei figure {
	margin: 0;
	position: relative;
}
.halt-bild.zwei img { height: 260px; }
@media (max-width: 700px) {
	.halt-bild.zwei { grid-template-columns: 1fr; }
}
.halt-inner { /* legacy: keine zusaetzliche Padding noetig, Halt hat selbst Padding */ }

/* === Wetter-Widget === */
.wetter-widget {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	margin: 0 0 32px;
	overflow: hidden;
	box-shadow: var(--schatten-klein);
}
.wetter-kopf {
	background: var(--marine);
	color: #fff;
	padding: 14px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.wetter-kopf h3 {
	color: #fff;
	margin: 0;
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 600;
}
.wetter-kopf .wetter-stand {
	font-size: 11px;
	font-family: var(--font-mono);
	opacity: 0.7;
	letter-spacing: 0.4px;
}
.wetter-body {
	padding: 22px;
}
.wetter-aktuell {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--linie);
	margin-bottom: 18px;
}
@media (max-width: 700px) {
	.wetter-aktuell { grid-template-columns: 1fr; }
}
.wetter-aktuell-icon {
	font-size: 60px;
	line-height: 1;
	text-align: center;
	color: var(--marine);
}
.wetter-aktuell-werte {
	font-family: var(--font-serif);
}
.wetter-temp {
	font-size: 48px;
	font-weight: 600;
	color: var(--marine);
	line-height: 1;
	letter-spacing: -1px;
}
.wetter-temp-suffix {
	font-size: 22px;
	color: var(--muted);
	margin-left: 2px;
}
.wetter-beschreibung {
	font-size: 16px;
	color: var(--text);
	margin-top: 4px;
}
.wetter-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px 18px;
	font-size: 13.5px;
	font-family: var(--font-text);
	color: var(--text);
}
.wetter-detail-grid dt {
	color: var(--muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}
.wetter-detail-grid dd {
	margin: 0 0 8px;
	font-family: var(--font-mono);
	font-weight: 600;
}

/* Seebedingungs-Ampel */
.see-ampel {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	border-radius: var(--radius-klein);
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.45;
}
.see-ampel-licht {
	width: 32px; height: 32px;
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 0 0 4px rgba(255,255,255,0.4) inset;
}
.see-ampel.gruen   { background: #e6f1e0; color: #28491a; }
.see-ampel.gruen .see-ampel-licht  { background: #4a8c5a; }
.see-ampel.gelb    { background: var(--honig-hell); color: #6c4a14; }
.see-ampel.gelb .see-ampel-licht   { background: var(--honig); }
.see-ampel.rot     { background: #f7e2e2; color: #6c1a1a; }
.see-ampel.rot .see-ampel-licht    { background: var(--rot); }
.see-ampel-text strong { display: block; font-weight: 700; margin-bottom: 2px; font-size: 15px; }

/* Pegel-Info */
.pegel-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	margin: 18px 0;
	padding: 12px 0;
	border-top: 1px solid var(--linie);
	border-bottom: 1px solid var(--linie);
}
.pegel-info dt {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.6px;
}
.pegel-info dd {
	margin: 2px 0 0;
	font-family: var(--font-mono);
	font-size: 18px;
	font-weight: 600;
	color: var(--marine);
}

/* Warnungs-Liste */
.warnung-liste { margin: 16px 0 0; }
.warnung-eintrag {
	padding: 12px 16px;
	margin: 8px 0;
	border-radius: var(--radius-klein);
	border-left: 4px solid;
	font-size: 13.5px;
	line-height: 1.5;
}
.warnung-eintrag.lvl-1 { background: #eef3f8; border-color: var(--petrol); }
.warnung-eintrag.lvl-2 { background: var(--honig-hell); border-color: var(--honig); }
.warnung-eintrag.lvl-3 { background: #f7e2e2; border-color: var(--rot); }
.warnung-eintrag.lvl-4 { background: #fcd4d4; border-color: #8a0000; color: #5a0000; }
.warnung-eintrag-titel { font-weight: 700; margin-bottom: 4px; }
.warnung-eintrag-region { font-size: 12px; color: var(--muted); }
.warnung-leer {
	padding: 14px 16px;
	color: var(--muted);
	background: var(--papier-tief);
	border-radius: var(--radius-klein);
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.warnung-leer::before { content: '\2713'; color: var(--wiese); font-size: 18px; font-weight: 700; }

/* 7-Tage-Vorschau */
.wetter-vorschau {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	margin-top: 8px;
}
@media (max-width: 800px) {
	.wetter-vorschau { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 500px) {
	.wetter-vorschau { grid-template-columns: repeat(3, 1fr); }
}
.wetter-tag {
	padding: 10px 6px;
	text-align: center;
	background: var(--papier-tief);
	border-radius: var(--radius-klein);
	font-size: 12px;
}
.wetter-tag.heute { background: var(--petrol-hell); }
.wetter-tag .wt-wochentag {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin-bottom: 2px;
}
.wetter-tag .wt-datum {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--muted);
	margin-bottom: 4px;
}
.wetter-tag .wt-icon {
	font-size: 26px;
	line-height: 1;
	margin: 4px 0;
}
.wetter-tag .wt-temp {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 14px;
	color: var(--text);
}
.wetter-tag .wt-temp-min { color: var(--muted); font-weight: 400; }
.wetter-tag .wt-wind {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--muted);
	margin-top: 4px;
}

.wetter-laden {
	padding: 40px 20px;
	text-align: center;
	color: var(--muted);
	font-style: italic;
}
.wetter-fehler {
	padding: 14px 18px;
	background: #f7e2e2;
	color: #6c1a1a;
	border-left: 3px solid var(--rot);
	border-radius: var(--radius-klein);
	font-size: 13px;
}

/* === Anreise-Karten === */
.anreise-stop {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 0;
	margin: 24px 0;
	box-shadow: var(--schatten-klein);
	overflow: hidden;
}
.anreise-stop-kopf {
	background: var(--papier-tief);
	padding: 18px 26px;
	border-bottom: 1px solid var(--linie);
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.anreise-stop-kopf h3 {
	margin: 0;
	color: var(--marine);
	font-family: var(--font-serif);
	font-size: 22px;
}
.anreise-stop-kopf .anreise-distanz {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 0.4px;
}
.anreise-stop-inner { padding: 22px 26px; }
.anreise-stop-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 28px;
}
@media (max-width: 800px) {
	.anreise-stop-grid { grid-template-columns: 1fr; }
}
/* Bilder in den Anreise-/Rueckreise-Karten */
.stop-bild {
	position: relative;
	margin: 0 0 16px;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--papier-tief);
}
.stop-bild img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.stop-bild.zwei,
.stop-bild.galerie {
	display: grid;
	gap: 4px;
	background: transparent;
}
.stop-bild.zwei { grid-template-columns: 1fr 1fr; }
.stop-bild.galerie { grid-template-columns: repeat(3, 1fr); }
.stop-bild.zwei figure,
.stop-bild.galerie figure {
	margin: 0;
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
}
.stop-bild.zwei img { height: 200px; }
.stop-bild.galerie img { height: 160px; }
@media (max-width: 700px) {
	.stop-bild.zwei { grid-template-columns: 1fr; }
	.stop-bild.galerie { grid-template-columns: 1fr 1fr; }
}
/* Google-Maps-Verweis pro Ort (klickbarer Link, kein Cookie-Banner) */
.ort-karte {
	margin: 10px 0;
}
.ort-karte-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-mono);
	font-size: 12px;
	padding: 5px 10px;
	border-radius: var(--radius);
	border: 1px solid var(--linie);
	background: var(--papier-tief);
	color: var(--marine);
	text-decoration: none;
	letter-spacing: 0.3px;
}
.ort-karte-link:hover {
	filter: brightness(0.96);
	text-decoration: underline;
}
.anreise-sights ul { padding-left: 20px; margin: 8px 0; }
.anreise-sights li { margin: 6px 0; }
.anreise-hotel {
	background: var(--petrol-hell);
	border-left: 3px solid var(--marine);
	padding: 14px 18px;
	border-radius: var(--radius-klein);
}
.anreise-hotel h4 {
	margin: 0 0 6px;
	color: var(--marine);
	letter-spacing: 0.4px;
	font-size: 12px;
}
.anreise-hotel strong {
	font-family: var(--font-serif);
	font-size: 16px;
	color: var(--marine);
	display: block;
	margin-bottom: 4px;
}
.anreise-alternative {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed var(--linie);
	font-size: 13px;
	color: var(--muted);
}
.anreise-alternative strong { color: var(--text); }
.anreise-restaurant {
	background: var(--honig-hell);
	border-left: 3px solid var(--honig);
	padding: 10px 14px;
	border-radius: var(--radius-klein);
	font-size: 13.5px;
	margin-top: 12px;
}

/* === Boot-Galerie === */
.boot-galerie {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 12px;
	margin: 22px 0;
}
.boot-bild {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--papier-tief);
	cursor: zoom-in;
	border: 1px solid var(--linie);
	box-shadow: var(--schatten-klein);
}
.boot-bild img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform .35s ease;
}
.boot-bild:hover img { transform: scale(1.04); }
.boot-bild figcaption {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	background: linear-gradient(0deg, rgba(15,40,64,0.85), rgba(15,40,64,0));
	color: #fff;
	padding: 18px 14px 8px;
	font-size: 13px;
	font-family: var(--font-serif);
	font-style: italic;
}
.grundriss-rahmen {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 22px;
	text-align: center;
	margin: 22px 0;
}
.grundriss-rahmen img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-klein);
}

/* === Lightbox === */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(15,40,64,0.92);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 30px;
	cursor: zoom-out;
}
.lightbox.offen { display: flex; }
.lightbox img {
	max-width: 95vw;
	max-height: 90vh;
	border-radius: var(--radius);
	box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-schliessen {
	position: absolute;
	top: 18px; right: 22px;
	font-size: 32px;
	color: #fff;
	background: none;
	border: 0;
	cursor: pointer;
	line-height: 1;
}

/* === Aktions-Buttons mit Icon === */
.boot-aktionen {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 24px 0;
}
.boot-aktion {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	background: var(--marine);
	color: #fff;
	text-decoration: none;
	border-radius: var(--radius);
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 600;
	transition: background .15s, transform .15s;
}
.boot-aktion:hover {
	background: var(--marine-tief);
	color: #fff;
	transform: translateY(-1px);
}
.boot-aktion.sekundaer {
	background: transparent;
	color: var(--marine);
	border: 2px solid var(--marine);
}
.boot-aktion.sekundaer:hover {
	background: var(--petrol-hell);
	color: var(--marine-tief);
}
.boot-aktion .icon { font-size: 18px; line-height: 1; }

/* === Crew-Karten / Bordordnung === */
.crew-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 22px;
	margin: 28px 0;
}
.crew-karte {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 0;
	box-shadow: var(--schatten-klein);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.crew-karte-kopf {
	background: linear-gradient(135deg, var(--marine) 0%, var(--petrol) 100%);
	color: #fff;
	padding: 22px 26px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.crew-karte-avatar {
	font-size: 44px;
	line-height: 1;
	width: 64px; height: 64px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.crew-karte-name {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 600;
	margin: 0;
	line-height: 1.15;
}
.crew-karte-titel {
	font-size: 12px;
	opacity: 0.85;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-top: 2px;
}
.crew-karte-body { padding: 22px 26px 26px; flex-grow: 1; }
.crew-karte-mission {
	background: var(--petrol-hell);
	border-left: 3px solid var(--petrol);
	padding: 12px 16px;
	border-radius: var(--radius-klein);
	font-style: italic;
	font-size: 14.5px;
	margin: 0 0 18px;
	color: var(--text);
}
.crew-karte-mission strong { color: var(--marine); font-style: normal; }
.crew-karte h4 {
	font-size: 12px;
	color: var(--marine);
	letter-spacing: 1px;
	margin: 0 0 8px;
	text-transform: uppercase;
}
.crew-karte ul { margin: 0; padding-left: 20px; font-size: 14px; }
.crew-karte ul li { margin: 6px 0; line-height: 1.5; }
.crew-karte.skipper       .crew-karte-kopf { background: linear-gradient(135deg, #0f3a5c, #1a5680); }
.crew-karte.co-skipper    .crew-karte-kopf { background: linear-gradient(135deg, #2e6582, #4a87a3); }
.crew-karte.bootsfrau     .crew-karte-kopf { background: linear-gradient(135deg, #b88a3a, #d4a55a); }
.crew-karte.matrosen      .crew-karte-kopf { background: linear-gradient(135deg, #4a8c5a, #6da870); }
.crew-karte.schiffshund   .crew-karte-kopf { background: linear-gradient(135deg, #8b5e34, #a87a4a); }

/* === Ferien-Countdown im Hero === */
.countdown {
	margin: 0 0 24px;
	padding: 14px 18px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.14);
	border-left: 3px solid var(--honig);
	border-radius: var(--radius-klein);
	max-width: 540px;
	backdrop-filter: blur(2px);
}
.countdown-label {
	font-size: 11px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	opacity: 0.78;
	margin-bottom: 4px;
	font-family: var(--font-text);
}
.countdown-display {
	font-family: var(--font-mono);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
	line-height: 1.2;
}
.countdown-display.liftoff {
	color: var(--honig);
	animation: liftoff-pulse 1.2s ease-in-out infinite;
}
@keyframes liftoff-pulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.03); }
}

/* === Warnungs-Aufklapp-Element === */
details.warnung-mehr {
	margin-top: 8px;
}
details.warnung-mehr > summary {
	cursor: pointer;
	padding: 8px 14px;
	background: var(--papier-tief);
	border: 1px solid var(--linie);
	border-radius: var(--radius-klein);
	font-size: 13px;
	color: var(--marine);
	font-weight: 600;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}
details.warnung-mehr > summary::-webkit-details-marker { display: none; }
details.warnung-mehr > summary::before {
	content: '▸';
	transition: transform .18s;
	font-size: 11px;
	color: var(--petrol);
}
details.warnung-mehr[open] > summary::before { transform: rotate(90deg); }
details.warnung-mehr > summary:hover { background: var(--petrol-hell); }

/* UV-Index-Pillen */
.uv-pill {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 12px;
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	letter-spacing: 0.3px;
}
.uv-pill.uv-niedrig    { background: #4a8c5a; }   /* gruen */
.uv-pill.uv-mittel     { background: #d4a83a; color: #4a3c0a; }  /* gelb */
.uv-pill.uv-hoch       { background: #c98038; }   /* orange */
.uv-pill.uv-sehr-hoch  { background: #c83a3a; }   /* rot */
.uv-pill.uv-extrem     { background: #6b2c80; }   /* violett */

/* Bezahlt-Tag */
.bezahlt {
	color: var(--wiese);
	font-weight: 700;
}
.bezahlt::before { content: '\2713 '; }

.halt-kopf {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}
.halt h3 { margin: 0; font-size: 26px; }
.halt .halt-koord {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.5px;
}

.liegeplatz-info {
	background: var(--petrol-hell);
	border-left: 3px solid var(--petrol);
	padding: 12px 16px;
	border-radius: var(--radius-klein);
	margin: 14px 0;
	font-size: 14px;
	line-height: 1.55;
}
.liegeplatz-info::before {
	content: '\2693';
	display: inline-block;
	margin-right: 8px;
	color: var(--marine);
	font-size: 15px;
}

.eintrag {
	padding: 12px 0;
	border-bottom: 1px dashed var(--linie);
}
.eintrag:last-child { border-bottom: 0; }
.eintrag-titel {
	font-weight: 600;
	font-size: 15px;
	color: var(--text);
}
.eintrag-beschreibung {
	font-size: 14px;
	color: var(--text);
	margin: 4px 0;
	line-height: 1.55;
}
.eintrag-meta {
	font-size: 13px;
	color: var(--muted);
	margin-top: 4px;
}
.eintrag-meta strong { color: var(--text); }

.spalten-2 {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 28px;
}
@media (max-width: 800px) {
	.spalten-2 { grid-template-columns: 1fr; }
}

/* === Event-Karten === */
.event-tag {
	border-left: 3px solid var(--marine);
	padding-left: 20px;
	margin: 28px 0;
}
.event-tag-kopf {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 10px;
}
.event-tag-datum {
	font-family: var(--font-mono);
	font-size: 16px;
	font-weight: 700;
	color: var(--marine);
	background: var(--petrol-hell);
	padding: 5px 14px;
	border-radius: var(--radius-klein);
	white-space: nowrap;
	letter-spacing: 0.5px;
}
.event-tag-wochentag {
	font-size: 13px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.event-karte {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 16px 22px;
	margin: 10px 0;
	box-shadow: var(--schatten-klein);
}
.event-karte.ausverkauft {
	background: var(--papier-tief);
	opacity: 0.82;
}
.event-karte-titel {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 17px;
	margin: 0 0 4px;
	color: var(--marine);
}
.event-karte-titel a { color: var(--marine); text-decoration: none; }
.event-karte-titel a:hover { text-decoration: underline; }
.event-karte-ort {
	font-size: 13px;
	color: var(--muted);
	margin: 0 0 8px;
	font-style: italic;
}
.event-karte-meta {
	font-size: 14px;
	color: var(--text);
	line-height: 1.55;
}
.event-karte-meta strong { color: var(--marine); }
.event-karte-aktionen {
	margin-top: 10px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.btn-ticket {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	background: var(--marine);
	color: #fff;
	text-decoration: none;
	border-radius: var(--radius-klein);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	transition: background .15s;
}
.btn-ticket:hover { background: var(--marine-tief); color: #fff; }
.btn-ticket::after { content: ' \2192'; }
.btn-info {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	background: transparent;
	color: var(--marine);
	text-decoration: none;
	border: 1px solid var(--linie-stark);
	border-radius: var(--radius-klein);
	font-size: 13px;
	font-weight: 500;
}
.btn-info:hover { background: var(--petrol-hell); border-color: var(--petrol); }

/* === Hinweis-Boxen === */
.hinweis {
	padding: 16px 22px;
	border-radius: var(--radius);
	margin: 20px 0;
	font-size: 14.5px;
	border-left: 3px solid;
	line-height: 1.6;
}
.hinweis-info     { background: var(--petrol-hell); border-color: var(--marine); }
.hinweis-tipp     { background: var(--honig-hell);  border-color: var(--honig); }
.hinweis-warnung  { background: #fcf0e0; border-color: #c98038; }
.hinweis-kritisch { background: #fce2e2; border-color: var(--rot); }
.hinweis strong { color: var(--marine); }

/* === Karte (Leaflet) === */
.karte-container {
	height: 480px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--schatten-mittel);
	margin: 24px 0;
	border: 1px solid var(--linie);
}
.karte-container .leaflet-popup-content-wrapper {
	border-radius: var(--radius-klein);
	font-family: var(--font-text);
}
.karte-container .leaflet-popup-content {
	margin: 10px 14px;
	font-size: 13px;
	line-height: 1.45;
}
.karte-container .leaflet-popup-content strong {
	color: var(--marine);
	font-family: var(--font-serif);
}

/* === Stats === */
.stats-leiste {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 14px;
	margin: 24px 0;
}
.stat-kachel {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 18px;
	text-align: center;
}
.stat-kachel .stat-wert {
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 600;
	color: var(--marine);
	display: block;
	line-height: 1.1;
	letter-spacing: -0.3px;
}
.stat-kachel .stat-text {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 6px;
}

.halt[id] { scroll-margin-top: 80px; }

/* === Footer === */
footer {
	background: var(--marine-tief);
	color: rgba(255,255,255,0.72);
	padding: 32px 28px;
	margin-top: 80px;
	font-size: 13px;
}
footer .footer-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
footer a { color: #c8d8e6; }
footer .muted { color: rgba(255,255,255,0.5); }

/* === Helper === */
.muted { color: var(--muted); }
.mono  { font-family: var(--font-mono); }
.serif { font-family: var(--font-serif); }
.tag {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}
.tag-empfehlung { background: var(--honig); color: #fff; }
.tag-warnung    { background: var(--rot);   color: #fff; }
.tag-info       { background: var(--marine); color: #fff; }
.tag-natur      { background: var(--petrol); color: #fff; }

.versteckt { display: none !important; }

@media print {
	.topbar, .filter-bar, footer, .karte-container { display: none !important; }
	body { font-size: 11pt; background: #fff; }
	.card, .halt, .event-karte { break-inside: avoid; }
}

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--papier-tief); }
::-webkit-scrollbar-thumb {
	background: var(--linie-stark);
	border-radius: 6px;
	border: 2px solid var(--papier-tief);
}
::-webkit-scrollbar-thumb:hover { background: var(--muted); }


/* ==========================================================================
   Sonnenfinsternis 12.08.2026 + Fahrbedingungen 5 Tage   (ergaenzt 02.08.2026)
   ========================================================================== */

/* --- Vierte Ampelstufe: Bft 4 = Charterschein-Grenze --- */
.see-ampel.orange  { background: #fbe9d6; color: #6d3d10; }
.see-ampel.orange .see-ampel-licht { background: #c98038; }

/* --- Fahrbedingungen 5 Tage --- */
.fahr-5tage {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
	gap: 10px;
	margin: 4px 0 10px;
}
.fahr-laden {
	grid-column: 1 / -1;
	padding: 14px;
	color: var(--muted);
	font-size: 14px;
}
.fahr-tag {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-top: 3px solid var(--linie-stark);
	border-radius: var(--radius);
	padding: 12px 12px 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.fahr-tag.heute { box-shadow: 0 0 0 2px var(--petrol-hell); }
.fahr-tag-kopf {
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.fahr-wt {
	font-weight: 700;
	font-size: 15px;
	color: var(--marine);
}
.fahr-datum {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--muted);
}
.fahr-licht {
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: var(--linie-stark);
}
.fahr-urteil {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.2px;
}
.fahr-werte { margin: 0; }
.fahr-werte > div {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	font-size: 12.5px;
	line-height: 1.7;
}
.fahr-werte dt { color: var(--muted); margin: 0; }
.fahr-werte dd {
	margin: 0;
	font-family: var(--font-mono);
	font-size: 12px;
	white-space: nowrap;
}
.fahr-fenster {
	font-size: 12.5px;
	font-weight: 600;
	padding-top: 6px;
	border-top: 1px solid var(--linie);
}
.fahr-zeit {
	font-size: 11.5px;
	color: var(--muted);
	font-family: var(--font-mono);
}
.fahr-gewitter { color: var(--rot); font-weight: 700; }
.fahr-fussnote { font-size: 12px; margin: -4px 0 14px; line-height: 1.55; }

.fahr-tag.stufe-gruen  { border-top-color: #4a8c5a; }
.fahr-tag.stufe-gruen  .fahr-licht  { background: #4a8c5a; }
.fahr-tag.stufe-gruen  .fahr-urteil { color: #2f6b3d; }
.fahr-tag.stufe-gelb   { border-top-color: var(--honig); }
.fahr-tag.stufe-gelb   .fahr-licht  { background: var(--honig); }
.fahr-tag.stufe-gelb   .fahr-urteil { color: #8a6216; }
.fahr-tag.stufe-orange { border-top-color: #c98038; }
.fahr-tag.stufe-orange .fahr-licht  { background: #c98038; }
.fahr-tag.stufe-orange .fahr-urteil { color: #a3591a; }
.fahr-tag.stufe-rot    { border-top-color: var(--rot); }
.fahr-tag.stufe-rot    .fahr-licht  { background: var(--rot); }
.fahr-tag.stufe-rot    .fahr-urteil { color: var(--rot); }

/* --- Teaser auf der Startseite --- */
.sofi-teaser {
	display: grid;
	grid-template-columns: 1fr minmax(240px, 330px);
	gap: 26px;
	align-items: center;
	background: linear-gradient(135deg, #0a2840 0%, #1c4e73 55%, #3c2a4d 100%);
	color: #fff;
	border-radius: var(--radius);
	padding: 26px 30px;
	text-decoration: none;
	box-shadow: var(--schatten-mittel);
	border-left: 4px solid var(--honig);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sofi-teaser:hover { transform: translateY(-2px); box-shadow: var(--schatten-gross); }
.sofi-teaser-label {
	font-size: 11px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--honig);
	font-weight: 700;
	margin-bottom: 6px;
}
.sofi-teaser-titel {
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
	border: 0;
	padding: 0;
}
.sofi-teaser-text { margin: 0 0 12px; font-size: 15px; line-height: 1.6; opacity: 0.92; }
.sofi-teaser .mehr { color: var(--honig); font-weight: 600; font-size: 14px; }
.sofi-teaser-rechts {
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: var(--radius-klein);
	padding: 14px 16px;
}
.countdown-zusatz {
	font-size: 12px;
	opacity: 0.8;
	margin-top: 6px;
	line-height: 1.45;
}

/* --- Hero der SoFi-Seite --- */
.hero-sofi { background: linear-gradient(135deg, #0a2840 0%, #1c4e73 50%, #4a2f57 100%); }
.hero-sofi .hero-inner { grid-template-columns: 1fr; }

/* --- Verlaufsgrafik --- */
.sofi-grafik {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 16px 18px 10px;
	margin: 20px 0;
	overflow-x: auto;
}
.sofi-grafik svg { width: 100%; min-width: 520px; height: auto; display: block; }
.sofi-legende { font-size: 12.5px; color: var(--muted); margin: 8px 0 4px; }
.sofi-legende .lg {
	display: inline-block;
	width: 22px;
	height: 3px;
	vertical-align: middle;
	margin-right: 4px;
}
.sofi-legende .lg-obs { background: var(--marine); }
.sofi-legende .lg-alt { background: repeating-linear-gradient(90deg, var(--honig) 0 5px, transparent 5px 9px); }

.sofi-liste { margin: 8px 0 12px; padding-left: 22px; }
.sofi-liste li { margin-bottom: 7px; line-height: 1.6; }

/* --- Erklaervideos (erst auf Klick laden) --- */
.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 18px;
	margin: 18px 0 8px;
}
.video-karte {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--linie);
	background: var(--marine-tief);
}
.video-start {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 4px;
	padding: 18px;
	background: linear-gradient(150deg, #123651 0%, #0a2840 60%, #34243f 100%);
	color: #fff;
	border: 0;
	text-align: left;
	cursor: pointer;
	font-family: var(--font-text);
	transition: filter 0.15s ease;
}
.video-start:hover { filter: brightness(1.15); }
.video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255,255,255,0.14);
	border: 2px solid var(--honig);
	color: var(--honig);
	font-size: 20px;
	line-height: 52px;
	text-align: center;
	padding-left: 4px;
}
.video-titel { font-weight: 700; font-size: 15px; line-height: 1.35; }
.video-quelle { font-size: 12.5px; opacity: 0.82; }
.video-hinweis { font-size: 11px; opacity: 0.6; margin-top: 2px; }
.video-karte.geladen { background: #000; }
.video-karte iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 780px) {
	.sofi-teaser { grid-template-columns: 1fr; padding: 22px; }
	.sofi-teaser-titel { font-size: 22px; }
	.fahr-5tage { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

/* Breite Tabellen (z. B. Paketstationen) auf schmalen Schirmen scrollen lassen,
   statt die Seite zu sprengen. */
.tabelle-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 18px 0;
}
.tabelle-scroll > .etappen-tabelle { margin: 0; min-width: 620px; }

/* --- Karte der Paketstationen (praktisch.php) --- */
.paket-karte-box { margin: 20px 0 26px; }
.paket-karte-box .karte-container { height: 460px; }

.paket-marker { background: none; border: 0; }
.paket-marker span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 11px;
	color: #fff;
	line-height: 1;
}
.paket-marker.pm-automat span { background: var(--honig); font-size: 10.5px; }
.paket-marker.pm-shop    span { background: var(--marine); font-size: 12px; }
.paket-marker.pm-hafen   span { background: #fff; color: var(--marine); border-color: var(--marine); font-size: 13px; }

.karte-container .pm-nah { color: var(--muted); font-size: 12px; }

.karten-legende {
	font-size: 12.5px;
	color: var(--muted);
	margin: 10px 0 0;
	line-height: 2;
}
.karten-legende .kl {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: var(--schatten-klein);
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 10px;
	color: #fff;
	vertical-align: middle;
	margin-right: 3px;
}
.karten-legende .kl-automat { background: var(--honig); }
.karten-legende .kl-shop    { background: var(--marine); font-size: 11px; }
.karten-legende .kl-hafen   { background: #fff; color: var(--marine); border-color: var(--marine); font-size: 12px; }

@media (max-width: 700px) {
	.paket-karte-box .karte-container { height: 360px; }
}

/* --- Reservierungs-Status in der Liegeplatz-Tabelle --- */
.res {
	display: inline-block;
	padding: 2px 9px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}
.res-ja   { background: #e6f1e0; color: #2f6b3d; }
.res-nein { background: #f7e2e2; color: #8f2020; }
.res-evtl { background: var(--honig-hell); color: #8a6216; }

/* ==========================================================================
   Charterschein-Selbsttest + Hoerdateien        (ergaenzt 02.08.2026)
   ========================================================================== */

.hero-schein { background: linear-gradient(135deg, #0a2840 0%, #17567c 55%, #1f6b52 100%); }
.hero-schein .hero-inner { grid-template-columns: 1fr; }

.audio-karte audio { width: 100%; margin-top: 6px; }

/* --- Quiz --- */
.quiz { margin: 20px 0; }
.quiz-kopf {
	position: sticky;
	top: 92px;
	z-index: 20;
	background: var(--karte);
	border: 1px solid var(--linie);
	border-radius: var(--radius);
	padding: 14px 18px;
	margin-bottom: 20px;
	box-shadow: var(--schatten-klein);
}
.quiz-stand { font-size: 15px; font-weight: 600; color: var(--marine); }
.quiz-stand .quiz-punkte { font-family: var(--font-mono); font-size: 20px; }
.quiz-stand .quiz-offen { font-weight: 400; color: var(--muted); font-size: 13px; }
.quiz-balken {
	height: 8px;
	background: var(--papier-tief);
	border-radius: 4px;
	overflow: hidden;
	margin: 8px 0 10px;
}
.quiz-balken-fuell {
	height: 100%;
	width: 0;
	background: var(--petrol);
	border-radius: 4px;
	transition: width 0.35s ease, background 0.35s ease;
}
.quiz-balken-fuell.voll { background: #4a8c5a; }
.quiz-knopfe { display: flex; gap: 8px; flex-wrap: wrap; }

.quiz-frage {
	background: var(--karte);
	border: 1px solid var(--linie);
	border-left: 3px solid var(--linie-stark);
	border-radius: var(--radius);
	padding: 18px 22px;
	margin: 0 0 14px;
}
.quiz-frage.geloest { border-left-color: #4a8c5a; }
.quiz-frage.daneben { border-left-color: var(--rot); }
.quiz-teil {
	font-size: 11px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 4px;
}
.quiz-text {
	margin: 0 0 12px;
	font-family: var(--font-serif);
	font-size: 17px;
	font-weight: 600;
	color: var(--marine);
	line-height: 1.45;
}
.quiz-nr { color: var(--muted); font-family: var(--font-mono); font-size: 14px; margin-right: 4px; }

.quiz-antworten { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.quiz-antwort {
	width: 100%;
	text-align: left;
	padding: 11px 15px;
	font-family: var(--font-text);
	font-size: 14.5px;
	line-height: 1.5;
	background: var(--papier);
	border: 1px solid var(--linie);
	border-radius: var(--radius-klein);
	color: var(--text);
	cursor: pointer;
	transition: background 0.12s ease, border-color 0.12s ease;
}
.quiz-antwort:hover { background: var(--petrol-hell); border-color: var(--petrol); }
.quiz-antwort.richtig { background: #e6f1e0; border-color: #4a8c5a; color: #28491a; font-weight: 600; }
.quiz-antwort.falsch  { background: #f7e2e2; border-color: var(--rot); color: #6c1a1a; }
.quiz-antwort.gewaehlt { box-shadow: inset 3px 0 0 currentColor; }

.quiz-erklaerung {
	display: none;
	margin-top: 12px;
	padding: 11px 15px;
	background: var(--honig-hell);
	border-left: 3px solid var(--honig);
	border-radius: var(--radius-klein);
	font-size: 14px;
	line-height: 1.6;
}
.quiz-frage.geloest .quiz-erklaerung,
.quiz-frage.daneben .quiz-erklaerung { display: block; }

@media (max-width: 700px) {
	.quiz-kopf { top: 0; }
	.quiz-frage { padding: 15px 16px; }
	.quiz-text { font-size: 16px; }
}

/* Einzelnes Video (Bootsbesichtigung) nicht ueber die volle Breite ziehen */
.video-grid-einzeln { grid-template-columns: minmax(0, 640px); margin-bottom: 24px; }

/* --- Marker der Einkaufskarte --- */
.paket-marker.pm-supermarkt span { background: var(--petrol); }
.paket-marker.pm-baecker    span { background: var(--honig); }
.paket-marker.pm-sonstiges  span { background: #4a8c5a; font-size: 13px; }

.karten-legende .kl-supermarkt { background: var(--petrol); }
.karten-legende .kl-baecker    { background: var(--honig); }
.karten-legende .kl-sonstiges  { background: #4a8c5a; font-size: 12px; }
