:root {
	--bg-0: #04111f;
	--bg-1: #0a1f33;
	--ink: #e8f1f8;
	--ink-dim: #9fb6c8;
	--accent: #ffc857;
	--accent-2: #4cc9f0;
	--ok: #6bcf7f;
	--radius: 14px;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
	--max-w: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	background:
		radial-gradient(1200px 600px at 80% -10%, rgba(13, 60, 140, 0.25), transparent 60%),
		radial-gradient(900px 500px at -10% 110%, rgba(13, 43, 92, 0.35), transparent 60%),
		linear-gradient(180deg, #0d2b5c, #04111f);
	color: var(--ink);
	min-height: 100vh;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
h1 { font-size: clamp(1.4rem, 5vw + 0.5rem, 3.6rem); margin: 0 0 0.5rem; }
h2 { font-size: clamp(1.1rem, 2vw + 0.8rem, 2.2rem); margin-top: 0; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 600px) { .container { padding: 0 1.25rem; } }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
	position: sticky; top: 0; z-index: 50;
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	background: rgba(4, 17, 31, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 0.6rem 1rem; max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 820px) {
	.nav-inner { padding: 1.25rem 2.5rem; }
}

.brand {
	display: flex; align-items: center; gap: 0.5rem;
	color: var(--ink); text-decoration: none; flex-direction: row;
}
.brand-picto {
	height: 40px; width: auto; object-fit: contain;
}
@media (min-width: 820px) {
	.brand-picto { height: 64px; }
}
.brand-name {
	font-weight: 800; font-size: 0.95rem; letter-spacing: 0.01em; line-height: 1.2;
}
@media (min-width: 820px) {
	.brand-name { font-size: 1.25rem; }
}
.brand-yellow { color: var(--accent); }
.brand-white { color: var(--ink); }
.brand-mark {
	display: none;
}

/* Mobile: burger visible, links hidden until .open */
.burger {
	display: block; background: none; border: 0;
	color: var(--ink); font-size: 1.5rem; cursor: pointer;
	min-width: 44px; min-height: 44px;
	display: grid; place-items: center;
}
.nav-links {
	display: none;
	position: absolute; top: 100%; left: 0; right: 0;
	flex-direction: column; align-items: stretch;
	background: rgba(4, 17, 31, 0.97);
	padding: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	list-style: none; margin: 0;
}
.nav-links.open { display: flex; }
.nav-links a {
	color: var(--ink-dim); padding: 0.75rem 1rem;
	border-radius: 8px; font-weight: 500; font-size: 1rem;
	display: block;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.nav-links a.active { color: #0a1f33; background: var(--accent); }

/* Desktop: burger hidden, links inline */
@media (min-width: 820px) {
	.burger { display: none; }
	.nav-links {
		display: flex !important;
		position: static;
		flex-direction: row; align-items: center;
		background: transparent;
		padding: 0; gap: 0.25rem; flex-wrap: wrap;
		border: 0;
	}
	.nav-links a {
		padding: 0.5rem 0.85rem;
		border-radius: 999px; font-size: 0.95rem;
	}
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
	position: relative;
	padding: 4rem 0 3.5rem;
	text-align: center;
	overflow: hidden;
}
.hero-slides {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 2s ease-in-out;
}
.hero-slide.active {
	opacity: 1;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(8, 20, 35, 0.55), rgba(8, 20, 35, 0.85));
	z-index: 1;
}
@media (min-width: 600px) { .hero { padding: 6rem 0 5rem; } }
@media (min-width: 1024px) { .hero { padding: 7rem 0 6rem; } }
.hero-inner { position: relative; z-index: 2; }
.hero p.lead {
	font-size: 1rem; color: var(--ink-dim);
	max-width: 720px; margin: 1rem auto 2rem;
}
@media (min-width: 600px) { .hero p.lead { font-size: 1.2rem; } }
.cta-row { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
	display: inline-block;
	padding: 0.85rem 1.4rem;
	min-height: 44px;
	border-radius: 999px;
	font-weight: 600; border: 1px solid transparent; cursor: pointer;
	transition: transform 0.15s ease, background 0.2s ease; font-size: 1rem;
}
.btn-primary { background: var(--accent); color: #0a1f33; }
.btn-primary:hover { transform: translateY(-1px); color: #0a1f33; }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(255, 255, 255, 0.18); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); color: var(--ink); }

/* ── Sections ─────────────────────────────────────────────── */
section.block { padding: 2.5rem 0; }
@media (min-width: 600px) { section.block { padding: 3rem 0; } }
@media (min-width: 1024px) { section.block { padding: 4rem 0; } }
section.block + section.block { border-top: 1px solid rgba(255, 255, 255, 0.05); }

.bg-blue {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding-left: max(1rem, calc(50vw - var(--max-w) / 2 + 1rem));
	padding-right: max(1rem, calc(50vw - var(--max-w) / 2 + 1rem));
	background: linear-gradient(180deg, #04111f 0%, #0d2b5c 20%, #071b36 50%, #0d2b5c 80%, #04111f 100%);
	border-top: none !important;
	position: relative;
}
.bg-blue::before {
	content: '';
	position: absolute;
	inset: 0;
	-webkit-mask: url('assets/Cookie_Yachting_WEISS_no_bg.png') center center / 85vw auto no-repeat;
	mask: url('assets/Cookie_Yachting_WEISS_no_bg.png') center center / 85vw auto no-repeat;
	background-color: #06182F;
}
.bg-blue::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(7, 27, 54, 0.45);
	pointer-events: none;
	z-index: 0;
}
.bg-blue > * {
	position: relative;
	z-index: 1;
}

.eyebrow {
	display: inline-block; font-size: 0.8rem;
	text-transform: uppercase; letter-spacing: 0.18em;
	color: var(--accent); margin-bottom: 0.6rem;
}

/* ── Grid & Cards ─────────────────────────────────────────── */
.grid {
	display: grid; gap: 1rem;
	grid-template-columns: 1fr;
}
@media (min-width: 480px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.card {
	background: rgba(4, 12, 32, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 1.25rem 1rem;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	transition: transform 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 600px) { .card { padding: 2rem 1.75rem; } }
.card:hover { transform: translateY(-3px); border-color: rgba(255, 200, 87, 0.4); }
.card h3 { margin: 0.75rem 0 0.5rem; font-size: 1.1rem; color: var(--accent); }
.card p { color: var(--ink-dim); margin: 0; }
.card-icon {
	width: 64px; height: 64px; border-radius: 14px;
	background: rgba(76, 201, 240, 0.1);
	display: grid; place-items: center; font-size: 2.2rem;
}
.card-picto {
	width: 48px; height: 48px; object-fit: contain;
	transition: transform 0.25s ease;
}
@media (min-width: 820px) {
	.card-icon { width: 80px; height: 80px; }
	.card-picto { width: 64px; height: 64px; }
}
.card:hover .card-picto {
	transform: scale(1.7) translateY(-6px);
}

/* ── Onlinegame Card ──────────────────────────────────────── */
.desktop-only { display: none; }
@media (min-width: 820px) { .desktop-only { display: block; } }

.btn-leinen {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.6rem 1.6rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	color: #fff;
	border: 2px solid #2ecc71;
	background: rgba(46, 204, 113, 0.12);
	box-shadow: 0 0 10px rgba(46, 204, 113, 0.5), 0 0 24px rgba(46, 204, 113, 0.2);
	animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
	0%, 100% { box-shadow: 0 0 8px rgba(46, 204, 113, 0.5), 0 0 20px rgba(46, 204, 113, 0.2); }
	50%       { box-shadow: 0 0 18px rgba(46, 204, 113, 0.9), 0 0 40px rgba(46, 204, 113, 0.4); }
}
.card-game { display: flex; flex-direction: column; }

/* ── Adventures sail-away ─────────────────────────────────── */
.card-adventures { overflow: visible; }
.card-adventures .card-picto {
	transition: transform 0.25s ease;
	transform-origin: center bottom;
}
@keyframes sail-away {
	0%   { transform: scale(1.7) translateY(-6px)  translateX(0)     rotate(0deg);  opacity: 1; }
	40%  { transform: scale(1.9) translateY(-14px) translateX(80px)  rotate(-8deg); opacity: 1; }
	70%  { transform: scale(2.1) translateY(-6px)  translateX(200px) rotate(5deg);  opacity: 0.7; }
	100% { transform: scale(2.2) translateY(-12px) translateX(150vw) rotate(-4deg); opacity: 0; }
}
@keyframes sail-in {
	0%   { transform: scale(0.5) translateX(-40px); opacity: 0; }
	100% { transform: scale(1)   translateX(0);     opacity: 1; }
}
.picto-sailing {
	animation: sail-away 2.2s cubic-bezier(0.4, 0, 0.8, 1) forwards;
}
.picto-arriving {
	animation: sail-in 0.4s ease-out forwards;
}

.media {
	border-radius: var(--radius); overflow: hidden;
	background: #000; aspect-ratio: 16 / 9;
	display: grid; place-items: center; color: var(--ink-dim);
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.media iframe { width: 100%; height: 100%; border: 0; }

/* ── Forms ────────────────────────────────────────────────── */
form.stack { display: grid; gap: 0.9rem; width: 100%; }
@media (min-width: 600px) { form.stack { max-width: 560px; } }
label { display: grid; gap: 0.3rem; font-size: 0.9rem; color: var(--ink-dim); }
input, select, textarea {
	font: inherit; color: var(--ink);
	background: rgba(7, 20, 45, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	padding: 0.75rem 0.9rem;
	min-height: 44px;
	width: 100%;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}
input:focus, select:focus, textarea:focus {
	outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent;
}
textarea { resize: vertical; min-height: 110px; }
.form-status { min-height: 1.2em; font-size: 0.95rem; }

/* ── Calendar ─────────────────────────────────────────────── */
.calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-top: 1rem; }
@media (min-width: 400px) { .calendar { gap: 4px; } }
.cal-head, .cal-day {
	text-align: center;
	padding: 0.5rem 0.1rem;
	border-radius: 8px; font-size: 0.8rem;
}
@media (min-width: 400px) {
	.cal-head, .cal-day { padding: 0.55rem 0.25rem; font-size: 0.9rem; }
}
.cal-head { color: var(--ink-dim); font-weight: 600; }
.cal-day { background: rgba(255, 255, 255, 0.04); }
.cal-day.empty { background: transparent; }
.cal-day.event {
	background: rgba(76, 201, 240, 0.18); color: var(--ink); cursor: pointer;
	border: 1px solid rgba(76, 201, 240, 0.5);
}
.cal-day.event:hover { background: rgba(76, 201, 240, 0.35); }
.cal-day.today { outline: 2px solid var(--accent); }
.cal-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.cal-controls button {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--ink); border-radius: 8px;
	padding: 0.5rem 1rem;
	min-height: 44px;
	cursor: pointer;
}

/* ── Module Modal ─────────────────────────────────────────── */
.module-list { display: flex; flex-direction: column; gap: 0.75rem; }
.module-card { cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.module-card-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.module-card-arrow { font-size: 1.6rem; color: var(--accent); opacity: 0.7; flex-shrink: 0; }
.module-card:hover { transform: translateY(-3px); border-color: rgba(255,200,87,0.4); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }

.module-overlay {
	position: fixed; inset: 0; z-index: 200;
	background: rgba(4, 12, 32, 0.82);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: flex; align-items: center; justify-content: center;
	padding: 1rem;
	animation: fadeIn 0.2s ease;
}
.module-overlay[hidden] { display: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.module-modal {
	background: linear-gradient(160deg, #0d2b5c, #071b36);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 20px;
	width: 100%; max-width: 900px;
	max-height: 92vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 24px 64px rgba(0,0,0,0.6);
	animation: slideUp 0.25s ease;
}

/* Slideshow inside modal */
.modal-slides {
	position: relative;
	width: 100%;
	height: clamp(200px, 40vw, 420px);
	overflow: hidden;
	border-radius: 20px 20px 0 0;
	background: #020c1a;
}
.modal-slides[hidden] { display: none; }

.modal-slides-track { position: absolute; inset: 0; }

.modal-slide-img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.modal-slide-img.active { opacity: 1; }

.modal-slide-btn {
	position: absolute; top: 50%; transform: translateY(-50%);
	background: rgba(4,12,32,0.55);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 50%;
	width: 40px; height: 40px;
	color: #fff; font-size: 1.4rem;
	cursor: pointer; display: grid; place-items: center;
	transition: background 0.15s;
	z-index: 2;
	line-height: 1;
}
.modal-slide-btn:hover { background: rgba(4,12,32,0.85); }
.modal-slide-prev { left: 0.75rem; }
.modal-slide-next { right: 0.75rem; }

.modal-slide-dots {
	position: absolute; bottom: 0.6rem; left: 50%; transform: translateX(-50%);
	display: flex; gap: 0.4rem; z-index: 2;
}
.modal-dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: rgba(255,255,255,0.35);
	border: none; cursor: pointer; padding: 0;
	transition: background 0.2s, transform 0.2s;
}
.modal-dot.active { background: var(--accent); transform: scale(1.3); }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.module-close {
	position: sticky; top: 1rem; float: right;
	margin: 1rem 1rem 0 0;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 50%;
	width: 36px; height: 36px;
	color: var(--ink); font-size: 1rem;
	cursor: pointer; display: grid; place-items: center;
	transition: background 0.15s;
	z-index: 1;
}
.module-close:hover { background: rgba(255,255,255,0.18); }

.module-modal-inner { padding: 1.5rem 2rem 2rem; }
.module-modal-header { margin-bottom: 1.5rem; }
.module-modal-header h2 { color: var(--accent); margin: 0.5rem 0 0.75rem; font-size: clamp(1.3rem, 3vw, 2rem); }
.module-modal-header p { color: var(--ink-dim); line-height: 1.7; margin: 0; }

.module-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-top: 1.5rem;
}
@media (min-width: 600px) { .module-specs { grid-template-columns: repeat(3, 1fr); } }

.spec-item {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 0.85rem 1rem;
	display: flex; flex-direction: column; gap: 0.3rem;
}
.spec-item--wide {
	grid-column: 1 / -1;
}
.spec-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ink-dim);
}
.spec-value {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ink);
}

.kontakt-goat {
	position: absolute;
	bottom: 0;
	right: max(1rem, calc(50vw - var(--max-w) / 2 + 1rem));
	width: 105px; height: 119px;
	pointer-events: none; z-index: 2;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
	padding: 4rem 0 2rem; color: var(--ink-dim);
	text-align: center; font-size: 0.9rem;
	border-top: 1px solid rgba(13, 60, 140, 0.35); margin-top: 2rem;
	background: linear-gradient(180deg, rgba(13, 43, 92, 0.25), rgba(13, 60, 140, 0.45));
	position: relative; overflow: hidden;
	display: flex; align-items: flex-end;
}
footer > .container { width: 100%; }
footer::before {
	content: '';
	position: absolute;
	top: 50%; transform: translateY(-50%);
	left: max(1rem, calc(50% - var(--max-w) / 2 + 1rem));
	height: 55%;
	width: auto;
	aspect-ratio: 2842 / 858;
	background: url('assets/Logo_GWC_s_w.png') left center / contain no-repeat;
	filter: invert(1) contrast(2) brightness(1.5);
	opacity: 1;
	pointer-events: none;
}
@media (min-width: 600px) { footer { padding: 5rem 0; margin-top: 3rem; } }
.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 0.3rem;
	min-height: 100%;
	height: 100%;
}
.footer-copy-top { color: var(--ink-dim); font-size: 0.9rem; }
.footer-copy-bottom { color: var(--ink-dim); font-size: 0.78rem; opacity: 0.55; }
.footer-legal {
	display: flex; gap: 1.5rem; justify-content: flex-end;
	padding-top: 1rem;
	border-top: 1px solid rgba(255,255,255,0.07);
	margin-top: 0.75rem;
}
.footer-legal a {
	font-size: 0.78rem; color: var(--ink-dim); opacity: 0.55;
	text-decoration: none; transition: opacity 0.15s;
}
.footer-legal a:hover { opacity: 1; color: var(--accent); }

/* ── Legal pages */
.legal-content { max-width: 760px; }
.legal-content h2 { color: var(--accent); font-size: 1.1rem; margin: 2rem 0 0.5rem; }
.legal-content p, .legal-content ul { color: var(--ink-dim); line-height: 1.75; margin: 0 0 0.75rem; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.35rem; }
.legal-content a { color: var(--accent-2); }
.legal-content a:hover { color: var(--accent); }
.footer-gwc-logo { display: none; }
.footer-pageby {
	display: flex; align-items: flex-end; gap: 0.6rem;
	text-decoration: none; opacity: 0.85;
}
.footer-pageby img { height: 64px; width: auto; flex-shrink: 0; }
.footer-pageby-text { display: flex; flex-direction: column; gap: 0.1rem; padding-bottom: 0.15rem; }
.footer-pageby-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.footer-pageby-name { font-size: 1.2rem; font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: 0.01em; }
.footer-pageby-ch { color: #b43b2e; }
.footer-pageby:hover { opacity: 1; }

.form-submit-row {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.form-submit-row .footer-pageby { opacity: 0.65; align-self: center; }
.form-submit-row .footer-pageby img { height: 40px; }

/* ── Helpers ──────────────────────────────────────────────── */
/* Mobile-first: single column, two columns from 820px */
.two-col { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 820px) { .two-col { grid-template-columns: 1.1fr 0.9fr; } }

/* ── Yachttraining Intro ──────────────────────────────────── */
.yt-intro {
	position: relative;
	overflow: hidden;
}
.yt-boat-bg {
	position: absolute;
	right: -4%;
	bottom: -5%;
	width: clamp(300px, 55%, 680px);
	height: auto;
	opacity: 0.5;
	-webkit-mask-image: radial-gradient(ellipse 80% 85% at 60% 55%, black 35%, transparent 100%);
	mask-image: radial-gradient(ellipse 80% 85% at 60% 55%, black 35%, transparent 100%);
	pointer-events: none;
	z-index: 0;
}
.yt-intro-text {
	position: relative;
	z-index: 1;
	max-width: 640px;
}
.yt-lead {
	font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem) !important;
	color: var(--ink-dim);
	max-width: 100% !important;
	margin: 0.75rem 0 0 !important;
}
.yt-body {
	font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
	color: var(--ink-dim);
	margin-top: 0.85rem;
}
.yt-note {
	font-size: 0.9rem;
	color: var(--ink-dim);
	margin-top: 0.6rem;
	font-style: italic;
	opacity: 0.75;
}
.yt-anfrage-intro {
	font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
	color: var(--ink-dim);
	max-width: 720px;
	margin: 0.5rem 0 2rem;
}
.yt-anfrage-grid { align-items: start; }
@media (min-width: 820px) { .yt-anfrage-grid { grid-template-columns: 1.1fr 0.7fr; } }
.yt-contact-aside {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 0.25rem;
}
.yt-contact-btn {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.8rem 1.2rem;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.04);
	color: var(--ink);
	transition: background 0.2s, border-color 0.2s;
}
.yt-contact-btn:hover { background: rgba(255,255,255,0.09); color: var(--ink); border-color: rgba(255,255,255,0.22); }
.yt-contact-wa { border-color: rgba(37,211,102,0.35); color: #25d366; }
.yt-contact-wa:hover { background: rgba(37,211,102,0.08); color: #25d366; }
.yt-contact-note { font-size: 0.8rem; color: var(--ink-dim); opacity: 0.6; margin: 0.25rem 0 0; font-style: italic; }
.yt-address {
	font-style: normal;
	font-size: 0.9rem;
	color: var(--ink-dim);
	line-height: 1.7;
	margin: 0.5rem 0 0;
	padding: 0.75rem 1rem;
	border-left: 2px solid rgba(255,255,255,0.1);
}

	position: relative;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding-left: max(1rem, calc(50vw - var(--max-w) / 2 + 1rem));
	padding-right: max(1rem, calc(50vw - var(--max-w) / 2 + 1rem));
	background: transparent;
	border-top: none !important;
}
.section-kontakt::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('assets/Picto_COOKIE2_no_bg.png') center center / 25% auto no-repeat;
	opacity: 0.5;
	pointer-events: none;
}
.section-kontakt > .container {
	position: relative;
	z-index: 1;
}
.section-kontakt::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(180, 190, 200, 0.08);
	pointer-events: none;
}
.badge {
	display: inline-block; font-size: 0.75rem;
	padding: 0.15rem 0.55rem; border-radius: 999px;
	background: rgba(255, 200, 87, 0.18);
	color: var(--accent);
	border: 1px solid rgba(255, 200, 87, 0.35);
}

.tile-link { color: inherit; display: block; }
.tile-link:hover h3 { color: var(--accent); }

/* ── Sonderfahrten ────────────────────────────────────────── */
.hero-sonder {
	background-image: linear-gradient(rgba(4, 17, 31, 0.45), rgba(4, 17, 31, 0.88)),
		url('assets/TitelbildFB.png');
}

/* Mobile-first: single column, sidebar from 900px */
.event-hero-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
	margin-top: 1.5rem;
	background: linear-gradient(135deg, rgba(255, 200, 87, 0.06), rgba(76, 201, 240, 0.04));
	border: 1px solid rgba(255, 200, 87, 0.25);
	border-radius: var(--radius);
	padding: 1.25rem;
}
@media (min-width: 600px) { .event-hero-card { padding: 1.75rem; gap: 2rem; } }
@media (min-width: 900px) {
	.event-hero-card {
		grid-template-columns: 1fr 340px;
		gap: 2.5rem;
		padding: 2rem;
		margin-top: 2rem;
	}
}

.event-meta-row {
	display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
	margin-bottom: 1rem;
}

.event-date-badge {
	display: inline-block; font-size: 0.85rem; font-weight: 700;
	padding: 0.2rem 0.7rem; border-radius: 999px;
	background: rgba(255, 200, 87, 0.18);
	color: var(--accent);
	border: 1px solid rgba(255, 200, 87, 0.45);
	letter-spacing: 0.05em;
}
.badge-gold {
	background: linear-gradient(90deg, rgba(255, 200, 87, 0.28), rgba(255, 140, 50, 0.20));
	color: var(--accent);
	border-color: rgba(255, 200, 87, 0.5);
}

.event-title {
	font-size: clamp(1.15rem, 2vw + 0.8rem, 1.75rem);
	margin: 0 0 1rem;
}

.event-details {
	list-style: none; padding: 0; margin: 1.25rem 0;
	display: grid; gap: 0.85rem;
}
.event-details li {
	display: flex; gap: 0.85rem; align-items: flex-start;
}
.detail-icon {
	width: 36px; height: 36px; flex-shrink: 0;
	background: rgba(76, 201, 240, 0.12);
	border-radius: 8px;
	display: grid; place-items: center; font-size: 1.1rem;
}

.event-cta-row {
	display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
	margin-top: 1.5rem;
}
.spots-indicator {
	display: flex; align-items: center; gap: 0.5rem;
	font-size: 0.9rem; color: var(--ok);
}
.spots-dot {
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--ok);
	animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.5; transform: scale(0.7); }
}

.event-hero-cal {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--radius);
	padding: 1.25rem;
}

