/* Basis für Tour-Unterseiten */
.tour-page{
  background: var(--bg);
  color: var(--ink);
}

/* Standardabstand für Sections */
.tour-page section{
  scroll-margin-top: 90px;
}

/* HERO für Unterseiten */
.sub-hero{
  position: relative;
  min-height: clamp(320px, 70vh, 520px);
  display: flex;
  align-items: flex-end;
  justify-content: center; /* statt flex-start */
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.7)),
    var(--hero-image);
  background-size: cover;
  background-position: center center;
  color: #fff;
  text-align: center;
}


.sub-hero-overlay{
  padding: clamp(2.5rem, 7vh, 4rem) clamp(1.5rem, 8vw, 4.5rem);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}


.sub-hero-title{
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 .5rem;
}

.sub-hero-date {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 0.5rem;
}


.sub-hero-sub{
  font-size: clamp(16px, 2.2vw, 20px);
  margin: 0 0 1.25rem;
}

.sub-hero-cta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* Buttons zentriert */
  gap: .75rem;
}

.sub-hero-cta .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 2px solid #fff;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}


.sub-hero-cta .btn-outline{
  background: #fff;
  color: var(--brand-ink);
}

.sub-hero-cta .btn-ghost{
  background: transparent;
  color: #fff;
}

.sub-hero-cta .btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

.sub-hero-cta .btn:active{
  transform: translateY(0);
  box-shadow: none;
}

/* sanfter Übergang zum Inhalt */
.sub-hero-fade{
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* Utility-Klassen (Tailwind-ähnlich), nur für diese Seite nötig */
.max-w-3xl{ max-width: 48rem; }
.max-w-2xl{ max-width: 42rem; }
.mx-auto{ margin-left: auto; margin-right: auto; }
.px-6{ padding-left: 1.5rem; padding-right: 1.5rem; }
.py-16{ padding-top: 4rem; padding-bottom: 4rem; }
.py-10{ padding-top: 2.5rem; padding-bottom: 2.5rem; }

.bg-blue-50,
.bg-green-50,
.bg-red-50{
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.06);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}



.border-l-2{ border-left-width: 4px; border-style: solid; }
.border-yellow-500{ border-color: #eab308; }

.rounded-lg{ border-radius: 0.75rem; }

.shadow-sm{
  box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
}

.mb-12{ margin-bottom: 3rem; }
.mb-8{ margin-bottom: 2rem; }
.mb-10{ margin-bottom: 2.5rem; }
.mb-4{ margin-bottom: 1rem; }
.mb-3{ margin-bottom: .75rem; }

.text-3xl{ font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl{ font-size: 1.5rem; line-height: 2rem; }
.text-xl{ font-size: 1.25rem; line-height: 1.75rem; }
.text-sm{ font-size: .875rem; }
.text-base{ font-size: 1rem; }

.font-bold{ font-weight: 700; }
.font-semibold{ font-weight: 600; }

.text-center{ text-align: center; }
.text-gray-500{ color: #6b7280; }
.text-gray-700{ color: #374151; }
.text-gray-800{ color: #1f2937; }

.text-blue-900{ color: #1e3a8a; }
.text-green-900{ color: #14532d; }
.text-red-900{ color: #7f1d1d; }
.text-yellow-800{ color: #854d0e; }

.uppercase{ text-transform: uppercase; }
.tracking-wide{ letter-spacing: .08em; }

/* Listenabstände */
.list-disc{ list-style-type: disc; }
.list-inside{ padding-left: 1.1rem; }
.space-y-1 > * + *{ margin-top: .25rem; }

/* Flex-Hilfsklassen für Icon + Titel */
.flex{ display: flex; }
.items-center{ align-items: center; }
.mr-2{ margin-right: .5rem; }

/* Icon-Grösse (SVGs) */
.h-6{ height: 1.5rem; }
.w-6{ width: 1.5rem; }

/* Info-Karten im blauen Abschnitt */
.info-card{
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 1.25rem 1.4rem 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,.04);
}

.info-card h3{
  margin: 0 0 .4rem;
  font-size: 1.1rem;
}

/* Formularbereich */
.tour-form{
  display: grid;
  gap: .75rem;
}

.tour-form input[type="text"],
.tour-form input[type="email"],
.tour-form textarea{
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: .65rem .85rem;
  font-size: .95rem;
  width: 100%;
  background: var(--paper);
}

.tour-form textarea{
  min-height: 140px;
  resize: vertical;
}

.tour-form button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--focus);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.tour-form button:hover{
  background: #111827;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transform: translateY(-1px);
}

.tour-form button:active{
  transform: translateY(0);
  box-shadow: none;
}

/* Admin-Link unauffällig */
.admin-link a{
  font-size: .8rem;
  color: #555;
  text-decoration: underline;
}

/* Einfacher Footer */
.simple-footer{
  background: #111827;
  color: #f9fafb;
  padding: 1.5rem 0 1.8rem;
  margin-top: 2rem;
}

.simple-footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
}

.simple-footer a{
  text-decoration: underline;
}

.simple-footer-links{
  display: flex;
  gap: 1rem;
}

/* Mobile-Anpassungen */
@media (max-width: 720px){
  .sub-hero-overlay{
    padding-inline: 1.5rem;
    padding-bottom: 2.5rem;
  }
  .simple-footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Ablauf-Tabelle ===== */

.tour-section {
  padding: 3.5rem 0;
}

.tour-subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
  color: #222;
}

/* Ablauf – Fliesstext (Mobile & Desktop) */
.tour-flow-mobile{
  display: block;
}

.tour-flow-mobile .flow-day{
  margin-bottom: 2.5rem;
}

.tour-flow-mobile h3{
  font-size: 1.25rem;
  margin-bottom: .25rem;
}

.tour-flow-mobile .flow-meta{
  font-size: .9rem;
  color: #555;
  margin-bottom: .75rem;
}

.tour-flow-mobile .flow-details{
  font-size: .95rem;
  color: #333;
}

@media (max-width: 768px){
  .tour-flow-mobile .flow-day{
    margin-bottom: 3rem;
  }
}

/* --- Utility Spacing (damit die verwendeten Klassen wirklich wirken) --- */
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem;  padding-bottom: 4rem;  }

.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.p-6   { padding: 1.5rem; }

.px-6  { padding-left: 1.5rem; padding-right: 1.5rem; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Tour-Sections etwas harmonisieren */
.tour-section { padding: 3.5rem 0; }  /* statt 4rem */

/* Ablauf-Karten etwas ruhiger als normale info-cards */
.info-card.flow-day{
  box-shadow: 0 2px 6px rgba(0,0,0,.03);
}

.tour-page{
  --callout-bg:#f6f4ef;
  --callout-title:#2b2b2b;
  --callout-text:#2f2f2f;
  --b-gear:#9fb3c8;
  --b-incl:#9fbfa7;
  --b-excl:#b9b0a4;
}

.tour-page .callout{
  background: var(--callout-bg);
  border-left: 2px solid transparent;
  border-radius: 12px;
}

.tour-page .callout h3{ color: var(--callout-title); }
.tour-page .callout li, .tour-page .callout p{ color: var(--callout-text); }

.tour-page .callout--gear{ border-left-color: var(--b-gear); }
.tour-page .callout--incl{ border-left-color: var(--b-incl); }
.tour-page .callout--excl{ border-left-color: var(--b-excl); }

.tour-page .callout svg{
  color: var(--callout-icon);
}

/* =========================================================
   CALLOUT-BOXEN – finale, ruhige Premium-Version
   ========================================================= */

.tour-page{
  --callout-bg:#f6f4ef;        /* ruhiger Naturton */
  --callout-title:#2b2b2b;
  --callout-text:#2f2f2f;
  --callout-icon:#4a4a4a;

  --b-gear:#9fb3c8;    /* gedecktes Blau-Grau */
  --b-incl:#9fbfa7;    /* gedecktes Grün */
  --b-excl:#b9b0a4;    /* Stein-Grau statt Rot */
}

/* Grundstil aller Boxen */
.tour-page .callout{
  background: var(--callout-bg) !important;
  border-left: 4px solid transparent;
  border-radius: 16px;
}

/* Titel & Text neutralisieren */
.tour-page .callout h3{
  color: var(--callout-title) !important;
}
.tour-page .callout li,
.tour-page .callout p{
  color: var(--callout-text) !important;
}

/* Linke Linie – einzige Differenzierung */
.tour-page .callout--gear{ border-left-color: var(--b-gear) !important; }
.tour-page .callout--incl{ border-left-color: var(--b-incl) !important; }
.tour-page .callout--excl{ border-left-color: var(--b-excl) !important; }

/* Icons beruhigen (WICHTIG – sonst bleibt Rot/Grün sichtbar!) */
.tour-page .callout svg{
  color: var(--callout-icon) !important;
}

/* =========================
   Tour-Form Premium Controls
   ========================= */

.tour-form{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tour-form .form-block{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.75);
  padding: 16px 16px 12px;
}

.tour-form .form-block legend{
  font-weight: 700;
  padding: 0 .35rem;
}

.tour-form .form-hint{
  margin: 6px 0 10px;
  font-size: .95rem;
  opacity: .85;
}

.tour-form .form-subtitle{
  margin-top: 10px;
  font-weight: 650;
  font-size: .98rem;
}

/* Radio als “Cards” */
.choice-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

@media (max-width: 640px){
  .choice-grid{ grid-template-columns: 1fr; }
}

.choice-card{
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  border-radius: 12px;
  padding: 12px 12px;
  cursor: pointer;
  user-select: none;
}

.choice-card input{
  margin: 0;
  transform: translateY(1px);
}

/* Checkbox Zeile */
.check-line{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  line-height: 1.35;
}

.check-line input{
  margin-top: 3px;
}

/* Link ruhig, aber klar */
.tour-form a{
  text-decoration-thickness: .08em;
  text-underline-offset: 3px;
}

/* ===== Form-Module (premium, kompakt, aligned) ===== */
.tour-form .form-block{
  margin: .25rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.tour-form .form-block legend{
  font-weight: 500;        /* leichter */
  letter-spacing: .01em;   /* ruhiger */
}

.tour-form .form-hint{
  margin: .35rem 0 .85rem;
  color: rgba(0,0,0,.7);
  font-size: .92rem;
  line-height: 1.35;
}

.tour-form .choice-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.25rem;
}

@media (max-width: 720px){
  .tour-form .choice-grid{ grid-template-columns: 1fr; }
}

.tour-form .choice-title{
  font-weight: 500;
  opacity: .85;
}

.tour-form .choice{
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem .2rem;
  line-height: 1.25;
}

.tour-form .choice--single{
  padding: .1rem .2rem;
}

.tour-form .choice input{
  width: 18px;
  height: 18px;
  accent-color: var(--focus);
  flex: 0 0 auto;
}

.tour-form .choice a{
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tour-form .choice span{
  font-weight: 400;
  letter-spacing: .005em;
}

.tour-form .check-line span,
.tour-form .choice--single span{
  font-weight: 400;
  opacity: .9;
}

/* Organisatorische Hinweise – ruhig & sekundär */
.tour-form .form-hint{
  font-size: .88rem;
  line-height: 1.4;
  color: rgba(0,0,0,.55);
  font-weight: 400;
  margin-bottom: .9rem;
}

.tour-form .form-hint strong{
  font-weight: 500;
  color: rgba(0,0,0,.7);
}

/* Teilnahmebedingungen – bewusst zurückgenommen */
.tour-form fieldset:last-of-type{
  background: rgba(0,0,0,.02);
  border-color: rgba(0,0,0,.12);
}

.tour-form fieldset:last-of-type legend{
  font-weight: 500;
  opacity: .75;
}

.tour-form fieldset:last-of-type .choice span{
  font-weight: 400;
  opacity: .85;
}

.tour-form fieldset:last-of-type a{
  font-weight: 500;
}


