:root {
  /* Helles Farbschema: weißer Hintergrund, rote Akzentfarbe */
  --bg-body: #ffffff;
  --bg-section-dark: #ffffff;
  --bg-section-mid: #ffffff;
  --bg-section-soft: #ffffff;
  --accent: #bd0000;       /* Glühwein-Rot */
  --accent-gold: #3D1F1F;  /* warmes Gold */
  --accent-soft: rgba(189, 0, 0, 0.12);
  --text-main: #111827;    /* fast Schwarz */
  --text-muted: #4b5563;   /* gedämpftes Grau */
  --border-soft: rgba(0, 0, 0, 0.1);
  /* Ecken eckig: globale Rundungen auf 0 setzen */
  --radius-lg: 0;
  --radius-md: 0;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.08);
}

/* Selima – lokale Schrift */
@font-face {
  font-family: "Selima";
  src: url("fonts/Selima .ttf") format("truetype"),
       url("fonts/Selima .otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
}

/* Globale Überschriften in Akzent-Rot */
h1,
h2,
h3 {
  color: var(--accent);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(0);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px; /* schlankerer Header */
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Selima";
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fee2e2, #bd0000 40%, #450a0a);
  box-shadow: 0 0 22px rgba(248, 113, 113, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fef2f2;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.logo-text span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.logo-text span:last-child {
  font-weight: 600;
  color: #fef9c3;
}

/* Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1rem; /* schlankere Abstände */
  font-size: 0.85rem; /* schlankere Typo */
}

.nav-link {
  position: relative;
  color: var(--text-muted);
  transition: color 0.2s ease;
  font-size: 1.1rem;
  margin-left: 30px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--accent-gold));
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #bd0000, #7f1d1d);
  color: #fef2f2;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 14px 30px rgba(127, 29, 29, 0.9);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(127, 29, 29, 1);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  color: var(--text-main);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--text-main);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--text-main);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.active span {
  background: transparent;
}

.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link,
.nav-mobile .nav-cta {
  width: 100%;
  text-align: left;
}

/* HERO */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: var(--text-main);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.hero-bg-image {
  position: absolute;
  inset: -10%;
  background-image: url("../images/hero.jpg"); /* eigenes Hero-Bild */
  background-size: cover;
  background-position: center center;
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05) brightness(0.9);
  transition: transform 0.2s ease-out;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
}

.hero-content {
  padding: 5.5rem 1.5rem;
  max-width: 1180px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  color: #111827;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: "Selima", "Inter", system-ui, sans-serif;
  font-size: clamp(5.4rem, 6vw + 1rem, 5rem);
  line-height: 0.95;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.hero-title span {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.9rem;
}

.hero-date {
  display: inline-block; 
  font-size: clamp(2.5rem, 1.4vw + 0.9rem, 1.8rem);
  font-weight: 800;
   color: var(--accent);
  margin-bottom: 0.9rem;
}

.hero-lead {
  font-size: 1.5rem;
  line-height: 1.4;
  color: white;
  margin-bottom: 1.4rem;
}

/* kurze Erklärung im Hero */
.hero-brief {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  color: #111827;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-gold);
  display: inline-block;
  margin-right: 0.45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-main {
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #bd0000, #7f1d1d);
  color: #fef2f2;
  box-shadow: 0 18px 48px rgba(127, 29, 29, 1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(127, 29, 29, 1);
}

.btn-ghost {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.15s ease, color 0.15s ease,
    background 0.15s ease, transform 0.15s ease;
}

.btn-ghost .icon {
  font-size: 1rem;
}

.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-1px);
}

/* Sections allgemein */
.section {
  padding: 5rem 0;
}

.section-about {
  background: var(--bg-body);
}

.section-highlights {
  background: var(--bg-body);
}

.section-route {
  background: var(--bg-body);
}

.section-stations {
  background: var(--bg-body);
}

.section-gallery {
  background: var(--bg-body);
}

.section-info {
  background: var(--bg-body);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header-wide {
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  font-weight: 600;
}

.section-title {
  font-family: "Selima", "Inter", system-ui, sans-serif;
  color: var(--accent);
  font-size: 3.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.section-title-big {
  font-family: "Selima", "Inter", system-ui, sans-serif;
  color: var(--accent);
  font-size: 2.6rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.section-desc,
.section-desc-wide {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 44rem;
}

/* About: große Bildkarten */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.about-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 1);
}

.about-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 55%);
}

/* eigene Bilder */
.about-image-one {
  background-image: url("../images/normannstein-im-winter.jpg");
}

.about-image-two {
  background-image: url("../images/gluehwein-saechsischer-hof.jpg");
}

.about-image-three {
  background-image: url("../images/familie.jpg");
}

.about-content {
  padding: 1.4rem 1.5rem 1.5rem;
}

.about-content h3 {
  font-family: "Selima", "Inter", system-ui, sans-serif;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Highlights: große Kacheln */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.highlight-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 1),
    rgba(15, 23, 42, 0.98)
  );
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.highlight-image {
  height: 230px;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.25s ease-out;
}

.highlight-card:hover .highlight-image {
  transform: scale(1.08);
}

/* eigene Bilder */
.hi-one {
  background-image: url("../images/gluehwein.jpg");
}

.hi-two {
  background-image: url("../images/180-grad-kurve.jpg");
}

.hi-three {
  background-image: url("../images/glühwein-schild.jpg");
}

.highlight-content {
  padding: 1.35rem 1.6rem 1.5rem;
}

.highlight-content h3 {
  font-family: "Selima", "Inter", system-ui, sans-serif;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.highlight-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Route */
.route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.route-visual {
  position: relative;
}

.route-image {
  height: 320px;
  border-radius: var(--radius-lg);
  background-image: url("../images/normannstein2.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.route-overlay-card {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.6);
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
}

.route-overlay-card h3 {
  font-family: "Selima", "Inter", system-ui, sans-serif;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.route-overlay-card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.route-overlay-card ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.route-overlay-card li::before {
  content: "•";
  color: var(--accent-gold);
  margin-right: 0.35rem;
}

/* Timeline im Route-Block */
.timeline {
  position: relative;
  margin-top: 1rem;
  padding-left: 1.9rem;
  border-left: 2px solid rgba(148, 163, 184, 0.4);
}

.step {
  position: relative;
  margin-bottom: 1.6rem;
}

.step-marker {
  position: absolute;
  left: -14px;
  top: 0.2rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #f97316, #bd0000);
  border: 2px solid #020617;
  box-shadow: 0 0 16px rgba(248, 113, 113, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #020617;
}

.step-meta {
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.15rem;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Stationen */
/* Stations – Slider */
.stations-slider {
  position: relative;
}

.stations-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: thin; /* Firefox */
  padding-bottom: 0.5rem;
}

.stations-track::-webkit-scrollbar {
  height: 8px;
}

.stations-track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--text-main);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.slider-btn.prev { left: -50px; }
.slider-btn.next { right: -50px; }

.station-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 min(85vw, 360px);
  scroll-snap-align: start;
}

.station-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 1);
}

.station-image {
  height: 285px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.station-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 55%);
}

.vereine-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Logos untereinander auf kleinen Screens */
.vereine-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* einzelne Logo-Kacheln */
.verein-logo-item {
  text-align: center;
  font-size: 0.85rem;
  color: #f9fafb; /* heller Text, falls dunkler Hintergrund */
}

.verein-logo-item img {
  max-height: 85px;
  width: auto;
  display: block;
  margin: 0 auto 0.35rem;
}

/* Auf Desktop: Text links, Logos rechts */
@media (min-width: 900px) {
  .vereine-wrap {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
  
  
  .vereine-wrap .section-desc-wide {
    flex: 2;
    margin: 0;
  }

  .vereine-logos {
    flex: 1;
    justify-content: flex-end;
  }
}


/* eigene Stationsbilder */
.si-one {
  background-image: url("../images/saechsischer-hof.jpg");
  background-position: bottom;
}

.si-two {
  background-image: url("../images/180-grad-kurve.jpg");
}

.si-three {
  background-image: url("../images/aussicht-treffurt-werratal.jpg");
}

.si-four {
  background-image: url("../images/wanderhuette-hand-glueweinwanderweg.jpg");
}

.si-five {
  background-image: url("../images/normannstein-im-winter.jpg");
}

.station-body {
  padding: 1.3rem 1.45rem 1.5rem;
}

.station-tag {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}

.station-body h3 {
  font-family: "Selima", "Inter", system-ui, sans-serif;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.station-body p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 0.8rem;
}

/* Rundweg-Karte */
.map-wrap {
  border: 1px solid var(--border-soft);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

#routeMap {
  width: 100%;
  height: 520px;
}

/* Leaflet: Stations-Hüttenmarker mit Nummer */
.station-marker {
  position: relative;
  width: 28px;
  height: 20px; /* Körperhöhe ohne Dach */
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}

.station-marker::before { /* Dach */
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 12px solid var(--accent);
}

.station-marker::after { /* Hütte (Körper) */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 2px solid var(--accent);
}

.station-marker .num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  color: var(--accent);
}

.gallery-item {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
  transform: scale(1);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 55%);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 1);
}

/* eigene Galerie-Bilder */
.gi-one {
  grid-row: span 2;
  background-image: url("../images/hero.jpg");
}

.gi-two {
  background-image: url("../images/180-grad-kurve.jpg");
}

.gi-three {
  background-image: url("../images/normannstein-im-winter.jpg");
}

.gi-four {
  background-image: url("../images/gluehwein-saechsischer-hof.jpg");
}

.gi-five {
  grid-row: span 2;
  background-image: url("../images/familie.jpg");
}

.gi-six {
  background-image: url("../images/saechsischer-hof.jpg");
  background-position:0 -20px;
}

/* Info / FAQ */
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.faq-item {
  margin-bottom: 1.6rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: var(--accent);
}

.faq-item p {
  font-size: 1rem;
  color: var(--text-muted);
}

.hint-box {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(189, 0, 0, 0.04);
  font-size: 1rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-soft);
}

.hint-box h3 {
  font-family: "Selima", "Inter", system-ui, sans-serif;
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.hint-box ul {
  list-style: none;
}

.hint-box li {
  margin-bottom: 0.45rem;
}

.hint-box li::before {
  content: "•";
  color: var(--accent-gold);
  margin-right: 0.4rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2.2rem;
  background: #682323;
  
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: white;
}

.footer-meta {
  max-width: 40rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }
  
  .nav-link {
  
  margin-left: 0px;
}

  
  .hero-lead {
  font-size: 1.3rem;
  
}

  .hero-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .route-grid,
  .info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .route-overlay-card {
    position: static;
    margin-top: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
  }
  #routeMap { height: 360px; }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-meta {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 180px;
  }
  #routeMap { height: 300px; }
  
  
  .hero-title {
  
  font-size: clamp(2.8rem, 6vw + 1rem, 5rem);
}

.logo {
  
  font-size: 1.2rem;

}
.hero-date {
  
  font-size: clamp(1.9rem, 1.4vw + 0.9rem, 1.8rem);
  
}

.section-title {
  
  font-size: 2.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.slider-btn.next{
	right:-20px;top:110%;
}

.slider-btn.prev {
  left: -20px;top:110%;
}
.section-title-big {
  line-height: 1.3;
}

}


.impressum-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .impressum-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
}

.impressum-block h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
