/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange:   #f08103;
  --dark:     #2b2b2b;
  --grey-bg:  #f2f2f2;
  --border:   #ddd;
  --white:    #ffffff;
  --text:     #333333;
  --radius:   6px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--grey-bg);
  line-height: 1.6;
}

a { text-decoration: none; color: var(--orange); }
a:hover { text-decoration: underline; }

/* ============================================
   TOPBAR
============================================ */
.topbar {
  background: #888;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2px;
  position: sticky;
  top: 0;
  z-index: 500;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.topbar.topbar-hidden {
  transform: translateY(-100%);
}

.topbar-inner {
  width: 100%;
  padding: 0 24px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.topbar-link {
  color: var(--white);
}
.topbar-link:hover {
  color: var(--orange);
  text-decoration: none;
}

.topbar-sep {
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.topbar-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Legal links + Social icons rechts */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.topbar-legal {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 6px;
}
.topbar-legal a {
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.topbar-legal a:hover {
  color: var(--orange);
}
.topbar-legal-sep {
  color: rgba(255,255,255,0.25);
  font-size: 10px;
}

.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  cursor: pointer;
}
.topbar-social svg {
  width: 15px;
  height: 15px;
}
.topbar-social:hover {
  color: var(--orange);
  text-decoration: none;
}

.topbar-social--inactive {
  color: rgba(255,255,255,0.25);
  cursor: default;
  pointer-events: none;
}

/* Topbar auf Mobil: zwei Zeilen */
@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    height: auto;
    padding: 6px 16px;
    gap: 4px;
    align-items: center;
  }
  .topbar-left {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .topbar-right {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
  .topbar-legal {
    margin-right: 4px;
  }
  .topbar-hide-mobile {
    display: none;
  }
}

/* ============================================
   HEADER
============================================ */
header {
  background: var(--white);
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}

.header-inner {
  width: 100%;
  padding: 14px 24px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 90px;
  transition: height 0.3s ease, padding 0.3s ease;
}

header.scrolled .header-inner {
  height: 62px;
  padding: 8px 24px 12px;
}

.header-logo {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: height 0.3s ease;
}

header.scrolled .header-logo {
  height: 40px;
}

.header-logo-link { display: flex; align-items: center; }

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  color: #555;
  font-size: 13px;
  font-weight: 400;
  padding: 6px 12px;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}

/* Aktiver Nav-Link */
.nav a.nav-active { color: var(--orange); }
.nav a.nav-active::after { transform: scaleX(1); }

.nav-mini-logo {
  height: 14px;
  width: auto;
  vertical-align: middle;
  margin-right: 4px;
  display: inline-block;
}

/* Externe Nav-Links – grauer + SVG-Icon */
.nav a.nav-extern {
  color: #999;
}

.nav a.nav-extern::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  vertical-align: middle;
  position: static;
  background-color: #999;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: background-color 0.2s;
  transform: none;
}

.nav a.nav-extern:hover {
  color: var(--orange);
}

.nav a.nav-extern:hover::after {
  background-color: var(--orange);
  transform: none;
}

/* Filigrane Unterlinie beim Hover */
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav a:hover {
  color: var(--orange);
  text-decoration: none;
}

.nav a:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav-toggle-input {
  position: fixed;
  top: -100px;
  left: -100px;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle-input:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-input:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   TITELBALKEN
============================================ */
.title-bar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* ============================================
   HERO BILD
============================================ */
.hero-bg {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: url('Images/back_gruppen.png') center center / cover no-repeat;
  animation: bgFloat 10s ease-in-out infinite;
}

@keyframes bgFloat {
  0%   { transform: scale(1.06) translate(0px,   0px); }
  25%  { transform: scale(1.08) translate(-8px, -10px); }
  50%  { transform: scale(1.07) translate(6px,  -18px); }
  75%  { transform: scale(1.09) translate(-4px,  -8px); }
  100% { transform: scale(1.06) translate(0px,   0px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg::before { animation: none; }
  .scroll-hidden { opacity: 1; transform: none; transition: none; }
  body { transition: none; }
}

/* ============================================
   PAGE TRANSITIONS
============================================ */
body.js-loading {
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.page-loaded {
  opacity: 1;
}

.scroll-hidden {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-hidden.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   HAUPT-GRID
============================================ */
.main-grid {
  position: relative;
  margin-top: calc(-100vh + 28px);
  margin-bottom: 0;
  padding: 0 24px 32px;
  min-height: calc(100vh - 28px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  z-index: 10;
}

.main-grid > * {
  position: relative;
  z-index: 2;
}

.col {
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.col-inner {
  background: rgba(255, 255, 255, 0.92);
  padding: 28px 24px;
}

/* ============================================
   SPALTE 1 – TEXT-BOTSCHAFT
============================================ */
.col-hero {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 420px;
  background: transparent;
  box-shadow: none;
}

.col-hero-content {
  padding: 36px 24px 36px 28px;
  width: 100%;
}

/* Keyframes */
@keyframes fromLeft {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes dropBounce {
  0%   { opacity: 0; transform: translateY(-120px) scale(0.6); }
  65%  { opacity: 1; transform: translateY(14px)   scale(1.08); }
  80%  { transform: translateY(-6px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0)       scale(1); }
}


/* ── DESKTOP: nebeneinander ── */
.hero-text-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-claim-top {
  color: var(--orange);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2), 0 3px 14px rgba(0,0,0,0.35);
  animation: slideInZoom 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes slideInZoom {
  from { opacity: 0; transform: translateX(-140px) scale(0.65); }
  to   { opacity: 1; transform: translateX(0)       scale(1); }
}

.hero-claim-bottom {
  color: var(--white);
  font-size: clamp(15px, 1.6vw, 20px);
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* Großes ? – Desktop: fällt von oben, steht mittig */
.hero-qmark {
  font-size: clamp(140px, 17vw, 280px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 6px 30px rgba(240,129,3,0.45), 0 2px 8px rgba(0,0,0,0.35);
  animation: dropBounce 0.9s cubic-bezier(0.22,1,0.36,1) 0.8s both;
  user-select: none;
}


/* ============================================
   SPALTE 2 – INFO
============================================ */
.col-info .col-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.info-city {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.info-block {
  margin-bottom: 4px;
}

.info-block p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
}

.info-block a {
  color: var(--text);
  font-weight: 600;
}
.info-block a:hover { color: var(--orange); text-decoration: none; }

.info-gap { margin-top: 10px; }

.info-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}


.group-time {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
  margin: 12px 0 10px;
  letter-spacing: 0.3px;
}

.group-time-sub {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0;
}

.group-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 5px;
}

.group-desc--caps {
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Anfahrt Link + Tooltip */
.anfahrt-wrap {
  position: relative;
  display: block;
  margin-top: 4px;
  margin-bottom: 4px;
}

.anfahrt-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.anfahrt-btn {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s;
  user-select: none;
}
.anfahrt-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.anfahrt-toggle-input:checked ~ .anfahrt-btn {
  color: #999;
}
.anfahrt-toggle-input:checked ~ .anfahrt-btn svg {
  stroke: #999;
}

.anfahrt-tooltip {
  display: none;
  position: absolute;
  cursor: pointer;
  left: 0;
  top: calc(100% + 6px);
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 11px;
  line-height: 1.7;
  padding: 10px 14px 10px 14px;
  border-radius: var(--radius);
  white-space: normal;
  width: 240px;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.anfahrt-toggle-input:checked ~ .anfahrt-tooltip {
  display: block;
}

.anfahrt-close {
  float: right;
  margin: -2px -4px 4px 8px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #aaa;
  font-weight: 700;
  transition: color 0.2s;
}
.anfahrt-close:hover {
  color: var(--orange);
}
body.page-loaded .anfahrt-close {
  display: none;
}
.anfahrt-tooltip strong {
  color: var(--orange);
}
.anfahrt-tooltip a {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 5px 8px;
  background: var(--white);
  border: 1px solid var(--orange);
  border-radius: 4px;
  color: var(--orange);
  font-weight: 700;
  font-size: 11px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.anfahrt-tooltip a svg {
  stroke: var(--orange);
}
.anfahrt-tooltip a:hover {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
}
.anfahrt-tooltip a:hover svg {
  stroke: var(--white);
}
.anfahrt-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 14px;
  border: 6px solid transparent;
  border-bottom-color: var(--border);
}
.anfahrt-tooltip::after {
  content: '';
  position: absolute;
  bottom: calc(100% - 1px);
  left: 14px;
  border: 6px solid transparent;
  border-bottom-color: var(--white);
}

/* Partnergruppe Accordion */
.partner-accordion {
  margin: 10px 0 4px;
  border: 1px solid rgba(240,129,3,0.3);
  border-radius: var(--radius);
  overflow: hidden;
}

.partner-summary {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  padding: 8px 12px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.partner-summary::-webkit-details-marker { display: none; }
.partner-summary::after {
  content: '▸';
  font-size: 11px;
  transition: transform 0.2s;
}
.partner-accordion[open] .partner-summary::after {
  transform: rotate(90deg);
}

.partner-body {
  padding: 10px 12px 12px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
  border-top: 1px solid rgba(240,129,3,0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.partner-body a {
  color: var(--orange);
}

.group-welcome {
  font-size: 14px;
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.5;
  border-left: 3px solid var(--orange);
  padding-left: 10px;
}

/* ============================================
   SPALTE 3 – KONTAKTFORMULAR
============================================ */
.col-contact .col-inner {
  display: flex;
  flex-direction: column;
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

/* Honeypot – unsichtbar */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.form-row .form-field { margin-bottom: 0; }

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #777;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: #fafafa;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(240,129,3,0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #fafafa;
  padding-right: 32px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 80px; }

/* Datenschutz-Checkbox */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.checkbox-row input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.checkbox-row a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkbox-row a:hover { color: #c06a00; }

/* Absende-Button */
.btn-send {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(240,129,3,0.30);
}

.btn-send:hover {
  background: #d06e00;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(240,129,3,0.40);
}

.btn-send:active { transform: translateY(0); }
.btn-send:disabled { background: #ccc; box-shadow: none; cursor: not-allowed; transform: none; }

/* Rückmeldungen */
.form-message {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 500;
}
.form-message.success { background: #ecfdf5; color: #16a34a; border: 1px solid #bbf7d0; }
.form-message.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ============================================
   FOOTER
============================================ */
footer {
  position: relative;
  z-index: 15;
  background: #888;
  padding: 18px 24px;
  text-align: center;
  margin-top: 20px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  transition: background 0.2s, color 0.2s;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  background: var(--orange);
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.footer-links li span { color: rgba(255,255,255,0.4); }

.footer-links a {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}
.footer-links a:hover { color: var(--orange); text-decoration: none; }

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}

/* ============================================
   RESPONSIVE
============================================ */
/* ── TABLET + NAV HAMBURGER ── */
@media (max-width: 900px) {
  .hero-bg { height: 100vh; }
  .main-grid { margin-top: calc(-100vh + 20px); }

  /* Nav zu Hamburger */
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 400;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(240,129,3,0.3);
    border-bottom: 1px solid rgba(240,129,3,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
  }
  .nav-toggle-input:checked ~ .nav { display: flex; }
  .nav a {
    padding: 13px 28px;
    border-radius: 0;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav a::after { display: none; }
  .nav a.nav-extern::after { display: inline-block; }
  .nav-toggle { display: flex; }

  /* Grid: 2 Spalten */
  .main-grid {
    grid-template-columns: 1fr 1fr;
    background-attachment: scroll;
  }
  .main-grid::before {
    inset: 0;
    animation: none;
    background-size: cover;
    background-position: center center;
  }
  .col-hero {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .hero-text-group {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    min-height: auto;
    padding: 20px 0;
  }

  .hero-qmark {
    position: static;
    font-size: clamp(80px, 18vw, 140px);
    opacity: 1;
    top: auto;
    left: auto;
    transform: none;
    filter: none;
    text-shadow: 0 6px 30px rgba(240,129,3,0.45), 0 2px 8px rgba(0,0,0,0.35);
    animation: dropBounce 0.9s cubic-bezier(0.22,1,0.36,1) 0.8s both;
  }

  .hero-left {
    position: static;
    z-index: auto;
    text-align: left;
    align-items: flex-start;
  }

  .hero-claim-top  { font-size: clamp(26px, 5vw, 40px); }
  .hero-claim-bottom { font-size: clamp(16px, 2.5vw, 20px); }
}

/* ── MOBIL ── */
@media (max-width: 640px) {
  .anfahrt-tooltip {
    width: calc(100vw - 80px);
    left: 0;
  }

  .hero-bg { height: 100vh; }
  .main-grid { margin-top: calc(-100vh + 16px); }

  .main-grid {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }
  .col-hero-content { padding: 24px 16px; }
  .hero-text-group  { min-height: auto; gap: 4px; }
  .hero-claim-top   { font-size: clamp(22px, 7vw, 32px); }
  .hero-claim-bottom { font-size: clamp(14px, 4vw, 18px); }
  .hero-qmark       { font-size: clamp(70px, 22vw, 110px); }

  .main-grid::before {
    inset: 0;
    animation: none;
    background-size: cover;
    background-position: center top;
  }

  .form-row { grid-template-columns: 1fr; }
  .title-bar { font-size: 10px; letter-spacing: 1px; padding: 8px 12px; }
}

/* ============================================
   INHALTSSEITEN (Impressum / Datenschutz)
============================================ */
.page-main {
  max-width: 860px;
  margin: 40px auto 60px;
  padding: 0 24px;
}

.page-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
}

.page-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ffb347);
}

.page-card-body {
  padding: 40px 44px 48px;
}

.page-card-body h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.3px;
}

.page-card-body h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 28px 0 8px;
}

.page-card-body p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.page-card-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-card-body a:hover { color: #c06a00; }

.page-card-body ul {
  margin: 8px 0 12px 20px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.8;
}

.page-card-body address {
  font-style: normal;
  font-size: 13.5px;
  color: #555;
  line-height: 1.9;
  background: #f9f9f9;
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 10px 0 16px;
}

@media (max-width: 640px) {
  .page-card-body { padding: 24px 20px 32px; }
  .page-card-body h1 { font-size: 18px; }
}

/* ============================================
   SUCCESS MODAL
============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.modal-overlay.modal-visible {
  display: flex;
  animation: modalFadeIn 0.25s ease both;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px 36px;
  max-width: 380px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.3s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-check {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: checkPop 0.4s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

@keyframes checkPop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.modal-check svg {
  width: 34px;
  height: 34px;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.modal-text {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-close {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 32px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.8px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.modal-close:hover {
  background: #d06e00;
  transform: translateY(-1px);
}

/* ============================================
   SPENDEN-SEITE
============================================ */
.spenden-intro {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.spenden-box {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.spenden-konto {
  flex: 1;
  min-width: 220px;
}

.spenden-konto h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.spenden-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13.5px;
}

.spenden-table td {
  padding: 6px 10px 6px 0;
  vertical-align: top;
  line-height: 1.5;
}

.spenden-table td:first-child {
  color: #888;
  white-space: nowrap;
  padding-right: 16px;
  font-size: 12px;
}

.spenden-table tr {
  border-bottom: 1px solid var(--border);
}

.spenden-table tr:last-child {
  border-bottom: none;
}

.spenden-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.spenden-qr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}

.spenden-qr-img {
  width: 140px;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  background: var(--white);
}

.spenden-quittung {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: #f9f9f9;
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.spenden-danke {
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .spenden-box { flex-direction: column; gap: 24px; }
  .spenden-qr { align-items: flex-start; }
}

/* ============================================
   ROBOTER-CHECKBOX
============================================ */
.roboter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9f9f9;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.roboter-row:hover {
  border-color: #bbb;
}

.roboter-row.roboter-error {
  border-color: #dc2626;
  background: #fef2f2;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.10);
}

/* echte Checkbox verstecken */
.roboter-row input[type="checkbox"] {
  display: none;
}

.roboter-row label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  width: 100%;
}

/* Eigene Checkbox-Box */
.roboter-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

/* Haken wenn checked */
#kein_roboter:checked + label .roboter-box {
  background: var(--orange);
  border-color: var(--orange);
}

#kein_roboter:checked + label .roboter-box::after {
  content: '';
  width: 5px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
