/* ============ Tussy Van — Lifestyle & Reise ============
   Farbwelt: Royalblau (Bulli), Neongelb (Sticker), Armeegrün,
   Terrakotta/Camel (Dach & Boots), warmes Papier-Beige. */

@font-face {
  font-family: "Outfit"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/outfit-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/outfit-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit"; font-style: normal; font-weight: 800; font-display: swap;
  src: url("../fonts/outfit-latin-800-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Caveat"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/caveat-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Caveat"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/caveat-latin-700-normal.woff2") format("woff2");
}

:root {
  --blue: #2350b5;
  --blue-deep: #1a3a85;
  --blue-ink: #16233f;
  --neon: #ffff00;      /* Yellow #FFFF00 — Hauptakzent */
  --neon-soft: #ffffcc;
  --army: #ffff00;      /* Yellow #FFFF00 */
  --terra: #c0704f;
  --camel: #c78d7b;     /* zarte Alt-Rosé-Terrakotta */
  --paper: #e7f0fb;     /* deutliches Himmelblau */
  --paper-2: #d4e4f6;
  --ink: #2b2823;
  --muted: #7a746b;
  --white: #ffffff;
  --font: "Outfit", system-ui, sans-serif;
  --hand: "Caveat", "Segoe Script", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sticker: 0.28rem 0.28rem 0 rgba(38, 37, 31, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--neon); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
.wrap { width: min(1160px, 92vw); margin: 0 auto; }

h1, h2, h3 { font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; text-wrap: balance; }
.display-xl { font-size: clamp(2.6rem, 6.5vw, 5rem); }
.display-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.hand { font-family: var(--hand); font-weight: 700; color: var(--terra); font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.1; letter-spacing: 0; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 36em; }
.eyebrow {
  display: inline-block; font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--blue);
}

/* ---------- Buttons & Sticker ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.8em 1.5em; border-radius: 999px;
  font-family: var(--font); font-size: 0.92rem; font-weight: 800; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sticker);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  background: var(--white); color: var(--ink);
}
.btn:hover { transform: translate(-2px, -2px) rotate(-1deg); box-shadow: 0.42rem 0.42rem 0 rgba(38,37,31,0.9); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0.1rem 0.1rem 0 rgba(38,37,31,0.9); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-neon { background: var(--neon); color: var(--ink); }
.btn-terra { background: var(--terra); color: var(--white); }

.sticker {
  display: inline-block; padding: 0.35em 0.9em;
  background: var(--white); color: var(--ink); border: 3px solid var(--ink); border-radius: 999px;
  font-weight: 800; font-size: 0.85rem;
  box-shadow: var(--shadow-sticker);
  transform: rotate(-2deg);
}
.sticker.neon { background: var(--neon); }
.sticker.blue { background: var(--blue); color: var(--white); }
.sticker.army { background: var(--army); color: var(--ink); }
.sticker.terra { background: var(--terra); color: var(--white); }
.sticker.hand { font-family: var(--hand); font-size: 1.25rem; padding: 0.1em 0.8em; }
.wobble:hover { animation: wobble 0.5s ease-in-out; }
@keyframes wobble {
  0%, 100% { transform: rotate(-2deg); }
  25% { transform: rotate(3deg) scale(1.05); }
  60% { transform: rotate(-4deg); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(231, 240, 251, 0.92); backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo svg { width: 52px; height: auto; }
.logo b { font-family: var(--hand); font-weight: 700; font-size: 1.9rem; color: var(--blue); line-height: 1; }
.logo b em { font-style: normal; color: var(--terra); }
.main-nav { display: flex; gap: clamp(0.6rem, 1vw, 1.4rem); align-items: center; }
.main-nav > a {
  text-decoration: none; font-weight: 600; font-size: 0.98rem; color: var(--ink);
  border-bottom: 3px solid transparent; padding: 0.2em 0.1em;
}
.main-nav > a:hover, .main-nav > a[aria-current="page"] { border-bottom-color: var(--neon); }
.main-nav .btn { padding: 0.55em 1.1em; font-size: 0.85rem; }
.main-nav > .lang-switch {
  border: 2px solid var(--ink); border-radius: 999px; padding: 0.32em 0.65em;
  background: var(--white); box-shadow: 2px 2px 0 var(--ink); font-size: 0.8rem;
  letter-spacing: 0.04em; white-space: nowrap;
}
.main-nav > .lang-switch:hover { border-bottom-color: var(--ink); background: var(--neon); }
.nav-toggle { display: none; background: none; border: 3px solid var(--ink); border-radius: 10px; padding: 0.35em 0.6em; font-size: 1.1rem; cursor: pointer; background: var(--white); box-shadow: var(--shadow-sticker); }

/* ---------- Scroll-Bulli am Seitenrand ---------- */
.road-side {
  position: fixed; top: 0; bottom: 0; right: 26px; width: 4px; z-index: 40;
  background-image: linear-gradient(var(--ink) 55%, transparent 55%);
  background-size: 4px 26px; opacity: 0.25; pointer-events: none;
}
.road-bulli {
  position: fixed; right: 4px; top: 0; z-index: 41; width: 48px; pointer-events: none;
  transform: rotate(90deg); transform-origin: center;
  filter: drop-shadow(2px 2px 0 rgba(38,37,31,0.4));
  transition: top 0.15s linear;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 6vh, 5rem) 0 0; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.hero-copy { padding-bottom: clamp(2.5rem, 6vh, 5rem); }
.hero-copy h1 { margin: 1rem 0 0.6rem; }
.hero-copy h1 .u-blue { color: var(--blue); }
.hero-copy h1 .u-neon { background: linear-gradient(transparent 62%, var(--neon) 62%); }
.hero-copy .hand { display: block; margin-bottom: 0.4rem; }
.hero-copy .lead { margin: 1.1rem 0 1.8rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem 0.9rem; }
.hero-badges { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-photo { position: relative; align-self: end; }
.hero-photo .frame {
  border: 6px solid var(--white); border-radius: 14px;
  outline: 3px solid var(--ink);
  box-shadow: 0.6rem 0.6rem 0 rgba(38, 37, 31, 0.85);
  transform: rotate(2deg);
  overflow: hidden;
}
.hero-photo .frame img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.hero-photo .caption {
  position: absolute; bottom: -1.1rem; left: 8%;
  transform: rotate(-3deg);
}
.hero-photo .deco { position: absolute; z-index: 2; }
.deco-peace { top: -1.6rem; right: -0.9rem; transform: rotate(12deg); }
.deco-route { bottom: 22%; left: -2.2rem; transform: rotate(-8deg); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--blue); color: var(--white);
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  overflow: hidden; padding: 0.65rem 0; position: relative; z-index: 2;
}
.marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.95rem; white-space: nowrap; }
.marquee-track em { font-style: normal; color: var(--neon); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vh, 7rem) 0; position: relative; }
.section-head { margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.section-head .hand { display: block; margin-top: 0.5rem; }
.section-head .lead { margin-top: 0.9rem; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- YouTube ---------- */
.yt-section { background: var(--blue-ink); color: var(--paper); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.yt-section .eyebrow { color: var(--neon); }
.yt-section .lead { color: #b9c2dd; }
.yt-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: start; }
.yt-player {
  position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden;
  border: 3px solid var(--ink); box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}
.yt-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-consent {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 1.5rem;
}
.yt-consent .inner { max-width: 30em; display: grid; gap: 1rem; justify-items: center; }
.yt-consent p { font-size: 0.92rem; color: #ccd4ea; }
.yt-side { display: grid; gap: 1rem; }
.yt-side .card {
  background: rgba(255, 255, 255, 0.06); border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px; padding: 1.3rem 1.4rem;
}
.yt-side .card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.yt-side .card p { font-size: 0.9rem; color: #b9c2dd; }
.yt-side .stat { font-family: var(--hand); font-size: 2rem; color: var(--neon); line-height: 1; }

/* ---------- Karte ---------- */
.map-section { background: var(--paper-2); border-bottom: 3px solid var(--ink); overflow: hidden; }
.map-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.map-copy .hint { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.4rem; color: var(--muted); font-size: 0.92rem; }
.map-stage { position: relative; }
.euromap { width: 100%; height: auto; display: block; }
.euromap .countries path { fill: #ffffff; stroke: #b9c4d4; stroke-width: 0.7; }
.euromap .countries path.visited { fill: #cdddf6; stroke: var(--blue); stroke-width: 1; }
.euromap .route {
  fill: none; stroke: var(--terra); stroke-width: 4; stroke-dasharray: 2 10;
  stroke-linecap: round;
}
.euromap .stop { cursor: pointer; }
.euromap .stop circle { fill: var(--neon); stroke: var(--ink); stroke-width: 2.5; transition: r 0.2s; }
.euromap .stop:hover circle, .euromap .stop.active circle { fill: var(--terra); }
.euromap .map-bulli { pointer-events: none; }
.map-card {
  position: absolute; bottom: 4%; left: 0;
  background: var(--white); border: 3px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow-sticker); padding: 1rem 1.2rem; max-width: 300px;
  opacity: 0; transform: translateY(10px) rotate(-1deg); transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.map-card.show { opacity: 1; transform: rotate(-1deg); pointer-events: auto; }
.map-card h3 { font-size: 1.05rem; }
.map-card p { font-size: 0.88rem; color: var(--muted); margin: 0.3rem 0 0.6rem; }
.map-card a { font-weight: 800; font-size: 0.85rem; color: var(--blue); }

/* ---------- Reiseziele Karten ---------- */
.dest-filter { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.2rem; }
.chip {
  display: inline-block; text-decoration: none;
  border: 3px solid var(--ink); background: var(--white); border-radius: 999px;
  font-family: var(--font); font-weight: 800; font-size: 0.85rem; padding: 0.45em 1.1em;
  cursor: pointer; box-shadow: 0.2rem 0.2rem 0 rgba(38,37,31,0.85);
  transition: transform 0.15s var(--ease);
}
.chip:hover { transform: translateY(-2px) rotate(-1deg); }
.chip.active { background: var(--blue); color: var(--white); }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ---------- Polen-Serie ---------- */
.pl-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.pl-mapwrap { position: sticky; top: 90px; }
.pl-map-stage { position: relative; overflow: hidden; border-radius: 12px; }
.pl-map { width: 100%; height: auto; display: block; filter: drop-shadow(0.4rem 0.4rem 0 rgba(38,37,31,0.12)); }
.pl-map .countries path { fill: #e2e9f3; stroke: #c4cede; stroke-width: 0.7; }
.pl-map .countries path.pl { fill: #eaf2fd; stroke: var(--blue); stroke-width: 1.4; }
.pl-pin { cursor: pointer; }
.pl-pin .pl-pin-bg { stroke: var(--ink); stroke-width: 2; transition: fill 0.2s; }
.pl-pin.ziel .pl-pin-bg { fill: #cdd7e6; }
.pl-pin.sehenswert .pl-pin-bg { fill: #7fb2ff; }
.pl-pin.bericht .pl-pin-bg { fill: var(--neon); transform-box: fill-box; transform-origin: center; animation: plpulse 2.6s ease-in-out infinite; }
.pl-pin:hover .pl-pin-bg, .pl-pin.active .pl-pin-bg { fill: var(--terra); }
.pl-pin .pl-icon { font-size: 8.5px; pointer-events: none; }
.pl-pin.dim { opacity: 0.28; }
.pl-pin.pl-off { display: none; }
.pl-pin .pl-lbl { font-family: var(--font); font-weight: 800; font-size: 6px; fill: var(--ink); paint-order: stroke; stroke: #ffffff; stroke-width: 1.6px; pointer-events: none; }
.pl-map-cluster circle { fill: var(--neon); stroke: var(--ink); stroke-width: 2; }
.pl-map-cluster text { fill: var(--ink); font-family: var(--font); font-size: 5px; font-weight: 900; pointer-events: none; }
.pl-map-zoom {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3;
  display: grid; grid-template-columns: repeat(3, auto); align-items: center;
  overflow: hidden; border: 2px solid var(--ink); border-radius: 10px;
  background: var(--white); box-shadow: 0.18rem 0.18rem 0 rgba(38,37,31,0.82);
}
.pl-map-zoom button {
  width: 2.2rem; height: 2.2rem; border: 0; border-right: 1px solid #c4cede;
  background: var(--white); color: var(--ink); font: 800 1.15rem/1 var(--font); cursor: pointer;
}
.pl-map-zoom button:hover, .pl-map-zoom button:focus-visible { background: var(--neon); }
.pl-map-zoom output { min-width: 3.3rem; padding: 0 0.45rem; text-align: center; font-size: 0.7rem; font-weight: 800; }
.pl-map-zoom [data-zoom="reset"] { grid-column: 1 / -1; width: 100%; height: 1.8rem; border-top: 1px solid #c4cede; border-right: 0; font-size: 1rem; }
@keyframes plpulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.16); } }

/* Kategorie-Filter-Chips */
.chip-kat { font-size: 0.8rem; padding: 0.4em 0.9em; }
.chip-kat.active { background: var(--terra); color: var(--white); }
.pl-filterlabel { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0.2rem 0 0.6rem; }

/* Legende */
.pl-legende { margin-top: 1rem; border: 3px solid var(--ink); border-radius: 14px; background: var(--white); box-shadow: 0.25rem 0.25rem 0 rgba(38,37,31,0.85); padding: 0.6rem 1rem; }
.pl-legende > summary { cursor: pointer; font-weight: 800; font-size: 0.95rem; list-style: none; }
.pl-legende > summary::-webkit-details-marker { display: none; }
.pl-legende > summary::before { content: "🗺️ "; }
.pl-legende[open] > summary { margin-bottom: 0.5rem; }
.pl-legende-status { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; margin: 0.2rem 0 0.7rem; font-size: 0.78rem; font-weight: 700; }
.pl-legende-hint { margin: 0.2rem 0 0.7rem; color: var(--muted); font-size: 0.78rem; font-weight: 700; }
.pl-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--ink); vertical-align: -2px; margin-right: 0.15rem; }
.pl-dot.bericht { background: var(--neon); } .pl-dot.sehenswert { background: #7fb2ff; } .pl-dot.ziel { background: #cdd7e6; }
.pl-legende-grp { margin-top: 0.5rem; font-size: 0.82rem; }
.pl-legende-grp b { font-size: 0.85rem; }
.pl-legende-grp ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem 0.8rem; margin: 0.35rem 0 0; padding: 0; }
.pl-legende-grp li { display: block; }
.pl-lg-icon { width: 1.3em; text-align: center; flex-shrink: 0; }
.pl-legend-filter {
  display: inline-flex; align-items: baseline; gap: 0.35rem; max-width: 100%;
  border: 2px solid transparent; border-radius: 8px; background: transparent;
  color: var(--ink); font: inherit; font-weight: 700; line-height: 1.35;
  padding: 0.22rem 0.35rem; text-align: left; cursor: pointer;
}
.pl-legende-grp .pl-legend-filter { width: 100%; }
.pl-legend-filter:hover { background: var(--paper); border-color: #c4cede; }
.pl-legend-filter.active { background: var(--neon); border-color: var(--ink); box-shadow: 0.12rem 0.12rem 0 rgba(38,37,31,0.8); }
.pl-legend-filter:focus-visible, .pl-legend-reset:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.pl-legend-reset {
  margin: 0.85rem 0 0.25rem; border: 0; background: transparent; color: var(--blue-deep);
  font: inherit; font-size: 0.78rem; font-weight: 800; text-decoration: underline; cursor: pointer;
}
.pl-search { position: relative; margin-bottom: 1.4rem; }
.pl-search input {
  width: 100%; font-family: var(--font); font-size: 1rem; padding: 0.75em 1em 0.75em 2.6em;
  border: 3px solid var(--ink); border-radius: 999px; background: var(--white) no-repeat 0.9em center;
  box-shadow: 0.2rem 0.2rem 0 rgba(38,37,31,0.85);
}
.pl-search::before { content: "🔍"; position: absolute; left: 1em; top: 50%; transform: translateY(-50%); font-size: 1rem; }
.pl-count { font-size: 0.85rem; color: var(--muted); margin: 0 0 1.2rem; font-weight: 600; }
.pl-grid { display: grid; gap: 1.3rem; }
.pl-live-tools {
  margin-top: 0.8rem; padding: 0.9rem 1rem; border: 2px solid var(--ink); border-radius: 12px;
  background: rgba(255,255,255,0.86); box-shadow: 0.16rem 0.16rem 0 rgba(38,37,31,0.72);
}
.pl-live-tools > strong { display: block; font-size: 0.92rem; }
.pl-live-tools p { margin: 0.25rem 0 0.65rem; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.pl-live-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.pl-live-actions a, .pl-card-action {
  display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--white); color: var(--ink); padding: 0.42rem 0.7rem; box-shadow: 0.1rem 0.1rem 0 rgba(38,37,31,0.75);
  font-size: 0.75rem; font-weight: 800; line-height: 1.2; text-decoration: none;
}
.pl-live-actions a:hover, .pl-card-action:hover { background: var(--neon); transform: translateY(-1px); }
.pl-more { display: block; margin: 1.25rem auto 0; }
.pl-more[hidden] { display: none; }
.post-card.flash { animation: cardflash 1.7s ease; }
@keyframes cardflash { 0%, 100% { box-shadow: var(--shadow-sticker); } 25%, 60% { box-shadow: 0 0 0 4px var(--neon), var(--shadow-sticker); } }
.post-card.hide { display: none; }
.pl-soon { align-self: flex-start; font-family: var(--hand); font-size: 1.05rem; color: var(--terra); }
.pl-empty { color: var(--muted); font-style: italic; padding: 1rem 0; }
@media (max-width: 820px) {
  .pl-layout { grid-template-columns: 1fr; }
  .pl-mapwrap { position: static; max-width: 460px; margin: 0 auto; }
}
.dest-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-sticker);
  transition: transform 0.3s var(--ease); display: flex; flex-direction: column;
}
.dest-card:hover { transform: translateY(-5px) rotate(-0.5deg); }
.dest-card .head {
  padding: 1.6rem 1.4rem 1.2rem; color: var(--white); position: relative;
  border-bottom: 3px solid var(--ink);
}
.dest-card .head .flag { font-size: 1.9rem; line-height: 1; }
.dest-card .head h3 { font-size: 1.35rem; margin-top: 0.4rem; }
.dest-card .head .region { font-family: var(--hand); font-size: 1.25rem; opacity: 0.9; }
/* Dark text on light-coloured headers (yellow/camel) so they stay readable */
.dest-card .head.bg-army, .dest-card .head.bg-camel { color: var(--ink); }
.dest-card .head.bg-army .region, .dest-card .head.bg-camel .region { opacity: 0.8; }
.dest-card .body { padding: 1.2rem 1.4rem 1.5rem; display: grid; gap: 0.8rem; flex: 1; }
.dest-card .body p { font-size: 0.93rem; color: var(--muted); }
.dest-tips { display: grid; gap: 0.5rem; font-size: 0.88rem; }
.dest-tips li { display: flex; gap: 0.6rem; align-items: baseline; }
.dest-tips li b { flex-shrink: 0; }
.bg-blue { background: var(--blue); } .bg-army { background: var(--army); }
.bg-terra { background: var(--terra); } .bg-deep { background: var(--blue-deep); }
.bg-camel { background: var(--camel); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: 16px;
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sticker);
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.3s var(--ease); text-decoration: none;
}
.post-card:hover { transform: translateY(-5px) rotate(0.5deg); }
.post-card .cat { align-self: flex-start; }
.post-card h3 { font-size: 1.25rem; }
.post-card p { font-size: 0.93rem; color: var(--muted); flex: 1; }
.post-card .meta { font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.pl-card-facts { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pl-card-facts span { padding: 0.26rem 0.5rem; border-radius: 999px; background: var(--paper); color: var(--ink); font-size: 0.7rem; font-weight: 750; line-height: 1.25; }
.pl-card-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.15rem; }
.pl-card-action.primary { background: var(--blue); color: var(--white); }
.pl-card-action.report { border-style: dashed; color: var(--blue-deep); }

.prose { max-width: 46em; margin: 0 auto; }
.prose h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 0.6rem; }
.prose h2 { font-size: 1.5rem; margin: 2.2rem 0 0.8rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.3rem; }
.prose ol { list-style: decimal; }
.prose ul { list-style: disc; }
.prose .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.prose .box {
  background: var(--neon-soft); border: 3px solid var(--ink); border-radius: 14px;
  padding: 1.2rem 1.4rem; margin: 1.6rem 0; box-shadow: var(--shadow-sticker);
}
.prose .box b { display: block; margin-bottom: 0.3rem; }
.prose details.kurzfassung summary { cursor: pointer; list-style: none; }
.prose details.kurzfassung summary::before { content: "▸ "; }
.prose details.kurzfassung[open] summary::before { content: "▾ "; }
.prose details.kurzfassung summary b { display: inline; }
.prose details.kurzfassung[open] summary { margin-bottom: 0.8rem; }
.prose details.kurzfassung h2 { font-size: 1.15rem; margin: 1.2rem 0 0.5rem; }
.prose figure { margin: 1.8rem 0; }
.prose figure img {
  width: 100%; display: block; border: 3px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow-sticker);
}
.prose figure figcaption {
  font-family: var(--hand); font-size: 1.15rem; color: var(--terra);
  margin-top: 0.7rem; text-align: center;
}
.prose .photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.8rem 0; }
.prose .photo-duo figure { margin: 0; }
@media (max-width: 640px) { .prose .photo-duo { grid-template-columns: 1fr; } }

/* ---------- Camper-Wissen: Gasadapter ---------- */
.gas-adapter-guide { max-width: 54em; }
.gas-adapter-guide .lead { max-width: 46em; color: var(--ink); font-size: 1.08rem; }
.gas-adapter-guide .warning-box { background: #fff3c7; border-left: 10px solid var(--terra); }
.adapter-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}
.adapter-card {
  min-width: 0; background: var(--white); border: 3px solid var(--ink); border-radius: 14px;
  padding: 1rem; box-shadow: 0.2rem 0.2rem 0 rgba(38, 37, 31, 0.82);
}
.adapter-card > span {
  display: inline-grid; place-items: center; width: 2.4rem; height: 2.4rem;
  border: 2px solid var(--ink); border-radius: 50%; background: var(--neon);
  font-weight: 800; line-height: 1;
}
.adapter-card h3 { margin: 0.75rem 0 0.4rem; font-size: 1.08rem; overflow-wrap: anywhere; }
.adapter-card p { margin: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.45; }
.adapter-d2 > span { background: var(--terra); color: var(--white); }
.adapter-d3 > span { background: var(--blue); color: var(--white); }
.adapter-d4 > span { background: var(--paper-2); }
.country-table-wrap {
  margin: 1.5rem 0 0.85rem; overflow-x: auto; background: var(--white);
  border: 3px solid var(--ink); border-radius: 14px; box-shadow: var(--shadow-sticker);
  scrollbar-color: var(--blue) var(--paper-2);
}
.country-table-wrap:focus-visible { outline: 4px solid var(--blue); outline-offset: 4px; }
.country-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 0.93rem; }
.country-table th, .country-table td { padding: 0.78rem 0.9rem; text-align: left; vertical-align: top; border-bottom: 1px solid #c5cfda; }
.country-table th { position: sticky; top: 0; z-index: 1; background: var(--blue-deep); color: var(--white); font-weight: 800; }
.country-table th:nth-child(1) { width: 28%; }
.country-table th:nth-child(2) { width: 24%; }
.country-table tbody tr:nth-child(even) { background: #edf5fd; }
.country-table tbody tr:last-child td { border-bottom: 0; }
.country-table td:first-child { font-weight: 700; white-space: nowrap; }
.country-table td:nth-child(2) strong {
  display: inline-block; padding: 0.12rem 0.48rem; border: 2px solid var(--ink);
  border-radius: 999px; background: var(--neon); line-height: 1.35;
}
.gas-adapter-guide .table-note { color: var(--muted); font-size: 0.9rem; }
.gas-adapter-guide .source-box {
  margin: 2.3rem 0 1.5rem; padding: 1.2rem 1.4rem; background: var(--paper-2);
  border: 3px solid var(--blue-deep); border-radius: 14px;
}
.gas-adapter-guide .source-box h2 { margin: 0 0 0.75rem; font-size: 1.25rem; }
.gas-adapter-guide .source-box p, .gas-adapter-guide .source-box ul { margin-bottom: 0.7rem; }
.gas-adapter-guide .source-box a { color: var(--blue-deep); font-weight: 700; }
@media (max-width: 820px) { .adapter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .adapter-grid { grid-template-columns: 1fr; } }

/* ---------- Camper-Wissen: Gasmelder ---------- */
.gas-alarm-guide { max-width: 54em; }
.gas-alarm-guide .lead { max-width: 46em; color: var(--ink); font-size: 1.08rem; }
.gas-alarm-guide .warning-box { background: #fff3c7; border-left: 10px solid var(--terra); }
.alarm-risk-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem;
  margin: 1.5rem 0 2rem;
}
.alarm-risk-card {
  min-width: 0; background: var(--white); border: 3px solid var(--ink); border-radius: 14px;
  padding: 1.1rem; box-shadow: 0.2rem 0.2rem 0 rgba(38, 37, 31, 0.82);
}
.alarm-risk-card .alarm-icon {
  display: inline-grid; place-items: center; min-width: 2.6rem; height: 2.6rem; padding: 0 0.55rem;
  border: 2px solid var(--ink); border-radius: 999px; background: var(--neon); font-weight: 800;
}
.alarm-risk-card:nth-child(2) .alarm-icon { background: var(--blue); color: var(--white); }
.alarm-risk-card:nth-child(3) .alarm-icon { background: var(--terra); color: var(--white); }
.alarm-risk-card h3 { margin: 0.8rem 0 0.45rem; font-size: 1.1rem; }
.alarm-risk-card p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.gas-alarm-guide .result-badge {
  display: inline-block; padding: 0.12rem 0.52rem; border: 2px solid var(--ink);
  border-radius: 999px; background: var(--neon); font-weight: 800; white-space: nowrap;
}
.gas-alarm-guide .result-badge.caution { background: #fff3c7; }
.gas-alarm-guide .test-note { color: var(--muted); font-size: 0.9rem; }
.gas-alarm-guide .alarm-actions {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.5rem 0;
}
.gas-alarm-guide .alarm-actions .box { margin: 0; }
.gas-alarm-guide .source-box {
  margin: 2.3rem 0 1.5rem; padding: 1.2rem 1.4rem; background: var(--paper-2);
  border: 3px solid var(--blue-deep); border-radius: 14px;
}
.gas-alarm-guide .source-box h2 { margin: 0 0 0.75rem; font-size: 1.25rem; }
.gas-alarm-guide .source-box p, .gas-alarm-guide .source-box ul { margin-bottom: 0.7rem; }
.gas-alarm-guide .source-box a { color: var(--blue-deep); font-weight: 700; }
.gas-alarm-guide details.faq {
  background: var(--white); border: 2px solid var(--ink); border-radius: 12px;
  margin: 0 0 0.8rem; padding: 0.85rem 1rem;
}
.gas-alarm-guide details.faq summary { cursor: pointer; font-weight: 800; }
.gas-alarm-guide details.faq p { margin: 0.75rem 0 0; }
@media (max-width: 760px) {
  .alarm-risk-grid, .gas-alarm-guide .alarm-actions { grid-template-columns: 1fr; }
}

/* ---------- Über mich teaser ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.about-photo { position: relative; }
.about-photo .frame {
  border: 6px solid var(--white); border-radius: 14px; outline: 3px solid var(--ink);
  box-shadow: -0.6rem 0.6rem 0 rgba(38,37,31,0.85); transform: rotate(-2deg); overflow: hidden;
}
.about-photo .frame img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 60% 40%; }
.about-photo .caption { position: absolute; top: -1rem; right: 6%; transform: rotate(3deg); }
.about-facts { margin-top: 1.4rem; display: grid; gap: 0.6rem; }
.about-facts li { display: flex; gap: 0.7rem; align-items: baseline; font-size: 0.98rem; }
.about-facts b { color: var(--blue); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--army); color: var(--ink);
  border-top: 3px solid var(--ink);
}
.newsletter .inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.newsletter form { display: grid; gap: 0.9rem; }
.newsletter .row { display: flex; gap: 0.8rem; }
.newsletter input[type="email"] {
  flex: 1; font-family: var(--font); font-size: 1rem; padding: 0.8em 1.2em;
  border: 3px solid var(--ink); border-radius: 999px; background: var(--white); color: var(--ink);
  box-shadow: var(--shadow-sticker);
}
.newsletter input[type="email"]:focus { outline: 3px solid var(--blue); }
.newsletter label.check { display: flex; gap: 0.6rem; font-size: 0.82rem; color: #5c5233; align-items: flex-start; }
.newsletter label.check input { margin-top: 0.25em; accent-color: var(--blue); }
.newsletter .note { font-size: 0.8rem; color: #6b5f3a; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-ink); color: #c3cbe3; border-top: 3px solid var(--ink); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.site-footer .logo b { color: var(--white); }
.site-footer .logo b em { color: var(--neon); }
.site-footer p { font-size: 0.9rem; max-width: 26em; }
.site-footer h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { display: grid; gap: 0.5rem; }
.site-footer ul a { color: #c3cbe3; text-decoration: none; font-size: 0.95rem; }
.site-footer ul a:hover { color: var(--neon); }
.social-icons { display: flex; gap: 0.7rem; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.18);
  color: #e9edf8; transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.social-icons a:hover { background: var(--neon); border-color: var(--neon); color: var(--blue-ink); transform: translateY(-3px) rotate(-4deg); }
.social-icons svg { width: 22px; height: 22px; fill: currentColor; }
.social-icons.compact a { width: 30px; height: 30px; }
.social-icons.compact svg { width: 15px; height: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.6rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem;
}
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom a { color: #c3cbe3; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 90;
  max-width: 560px; margin: 0 auto;
  background: var(--white); border: 3px solid var(--ink); border-radius: 16px;
  box-shadow: var(--shadow-sticker); padding: 1.3rem 1.5rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.cookie-banner p { font-size: 0.86rem; color: var(--muted); margin-bottom: 1rem; }
.cookie-banner .row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.cookie-banner .btn { padding: 0.55em 1.2em; font-size: 0.85rem; }

/* ---------- Shop (vorbereitet) ---------- */
.shop-soon { text-align: center; padding: 2rem 0 0; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.shop-card {
  background: var(--white); border: 3px dashed var(--ink); border-radius: 16px;
  padding: 2rem 1.5rem; text-align: center; display: grid; gap: 0.6rem; justify-items: center;
  color: var(--muted);
}
.shop-card .ph { font-size: 3rem; line-height: 1; }
.shop-card h3 { color: var(--ink); font-size: 1.15rem; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap, .yt-grid, .map-grid, .about-grid, .newsletter .inner { grid-template-columns: 1fr; }
  .dest-grid, .post-grid, .shop-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo { max-width: 480px; }
  .road-side, .road-bulli { display: none; }
}
@media (max-width: 680px) {
  .dest-grid, .post-grid, .shop-grid { grid-template-columns: 1fr; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 3px solid var(--ink);
    flex-direction: column; padding: 1.2rem 4vw 1.6rem; align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .wobble:hover { animation: none; }
}

/* Europa-Entsorgungskarte */
.europa-stations {
  margin: 1.8rem 0 4rem; padding: clamp(1rem, 2.5vw, 2rem);
  background: var(--white); border: 3px solid var(--ink); border-radius: 18px;
  box-shadow: var(--shadow-sticker);
}
.europa-stations > p:first-child { max-width: 58rem; margin: 0 auto 1.5rem; text-align: center; }
.europa-stations .dest-filter { justify-content: center; margin-bottom: 1.4rem; }
.europa-stations .eu-results { margin-bottom: 1.2rem; }
.subsection-head { margin-top: 4rem; }
.eu-mapwrap { max-width: 760px; margin: 1.2rem auto; }
.pl-map .countries path.eu-land { fill: #eaf2fd; stroke: var(--blue); stroke-width: 0.9; }
.eu-pin { cursor: pointer; }
.eu-pin circle { fill: #7fb2ff; stroke: var(--ink); stroke-width: 1.2; transition: fill 0.2s; }
.eu-pin:hover circle { fill: var(--terra); }
.eu-cluster { cursor: pointer; }
.eu-cluster circle { fill: var(--neon); stroke: var(--ink); stroke-width: 2.2; filter: drop-shadow(2px 2px 0 rgba(38,37,31,0.65)); transition: fill 0.2s, transform 0.2s; }
.eu-cluster:hover circle, .eu-cluster:focus circle { fill: #7fb2ff; transform: scale(1.08); }
.eu-cluster:focus { outline: none; }
.eu-cluster text { fill: var(--ink); font-family: var(--font); font-size: 7px; font-weight: 800; pointer-events: none; }
.eu-count { font-weight: 700; color: var(--muted); margin: 0.6rem 0 0.2rem; text-align: center; }
.eu-source { color: var(--muted); font-size: 0.75rem; text-align: center; margin: 0.15rem 0 0; }
.eu-searchbox { display: grid; gap: 0.45rem; max-width: 42rem; margin: 1.5rem auto 1rem; }
.eu-searchbox label { font-size: 0.9rem; color: var(--blue-ink); }
.eu-searchbox input {
  width: 100%; font-family: var(--font); font-size: 1rem; padding: 0.75em 1.1em;
  border: 3px solid var(--ink); border-radius: 999px; background: var(--white);
  color: var(--ink); box-shadow: 0.2rem 0.2rem 0 rgba(38,37,31,0.85);
}
.eu-searchbox input:focus { outline: 3px solid var(--blue); outline-offset: 2px; }
.eu-results { max-width: 48rem; margin: 0 auto 2.4rem; }
.eu-results-empty, .eu-results-summary { color: var(--muted); text-align: center; }
.eu-results-summary { font-size: 0.88rem; font-weight: 800; margin-bottom: 0.7rem; }
.eu-station-list { display: grid; gap: 0.55rem; margin: 0; padding: 0; }
.eu-station-list li { background: var(--white); border: 2px solid var(--ink); border-radius: 10px; padding: 0.65rem 0.8rem; line-height: 1.35; }
.eu-station-list a { color: var(--blue-deep); font-weight: 700; overflow-wrap: anywhere; }
.eu-station-meta { display: block; color: var(--muted); font-size: 0.76rem; font-weight: 700; margin-top: 0.2rem; }
.eu-more { display: block; margin: 1rem auto 0; }

@media (max-width: 680px) {
  .europa-stations { padding: 0.85rem; border-radius: 14px; }
  .pl-legende-grp ul { grid-template-columns: 1fr; }
  .eu-mapwrap { width: 100%; }
  .eu-cluster text { font-size: 8px; }
  .eu-station-list li { font-size: 0.9rem; }
}
