/* ==========================================================================
   Amorazza - pages/reise.css (V151)
   ==========================================================================
   Styles fuer die Reise-Seite /reise.php. Variante A Layout: vertikale
   Herzen-Kette mit Status-Badges. Alle Farben aus tokens.css.
   ========================================================================== */

body.page-reise {
  background: var(--bg);
}

.reise-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 16px 64px;
}

.reise-header {
  text-align: center;
  margin: 0 0 32px;
}
.reise-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--rose-600);
  font-size: clamp(28px, 6vw, 38px);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.reise-header .reise-sub {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink-700);
  font-style: italic;
  font-size: clamp(15px, 3.5vw, 18px);
  margin: 0;
  line-height: 1.4;
}

.reise-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl, 20px);
  padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow-md);
}

.reise-timeline {
  position: relative;
  padding-left: 52px;
}
.reise-timeline::before {
  content: "";
  position: absolute;
  left: 17px; /* V153: auf Herz-Achse (Herzmitte 18px, Linie 2px breit -> left 17) */
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--rose-200);
  border-radius: 1px;
}

.reise-item {
  position: relative;
  padding: 10px 0 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reise-heart {
  position: absolute;
  left: -48px;
  top: 10px;
  width: 28px;
  height: 26px;
  display: block;
}
.reise-heart svg {
  width: 100%;
  height: 100%;
  display: block;
}
.reise-heart--fill1 svg { fill: var(--rose-400); }
.reise-heart--fill2 svg { fill: var(--rose-600); }
.reise-heart--outline-warn svg {
  fill: none;
  stroke: var(--warn);
  stroke-width: 2;
}
.reise-heart--outline-rose svg {
  fill: none;
  stroke: var(--rose-600);
  stroke-width: 2;
}

.reise-text {
  flex: 1;
  min-width: 0;
}
.reise-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.3;
  margin: 0;
}
.reise-sub-text {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: var(--fs-meta);
  color: var(--ink-700);
  margin: 2px 0 0;
  line-height: 1.4;
}
.reise-termin {
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 12px;
  color: var(--warn);
  margin: 6px 0 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.reise-status {
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding-top: 4px;
}
.reise-status--done       { color: var(--ok); }
.reise-status--in-arbeit  { color: var(--warn); }
.reise-status--steht-bevor { color: var(--rose-600); }

.reise-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.reise-status--in-arbeit .reise-dot {
  animation: reisePulse 2s ease-in-out infinite;
}
@keyframes reisePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.3); }
}

.reise-closing {
  margin: 32px 0 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--rose-600);
  font-size: var(--fs-body);
}

/* ----------------- Mobile (Schmalbildschirm) ---------------- */
@media (max-width: 540px) {
  .reise-timeline { padding-left: 38px; }
  .reise-timeline::before { left: 12px; } /* V153: Herzmitte mobil 13px */
  .reise-heart { left: -36px; width: 22px; height: 20px; top: 12px; }

  .reise-item {
    flex-wrap: wrap;
  }
  .reise-status {
    /* auf Mobile unter den Text statt rechts daneben */
    margin-top: 4px;
    padding-top: 0;
    width: 100%;
    justify-content: flex-start;
  }
}
