/* ============================================================
   reiki-akzent.css – Reikischule Baumann
   ------------------------------------------------------------
   Ergaenzung zu global.css. WICHTIG:

   global.css ist die unveraenderte Kopie aus dem Massageschul-
   Projekt. Bitte dort NICHTS aendern -- Aenderungen entstehen
   drueben und werden hier einfach drueberkopiert. Alles, was die
   Reiki-Seite anders macht, steht ausschliesslich in dieser Datei.

   Einbindung, immer in dieser Reihenfolge:
       <link rel="stylesheet" href="/global.css">
       <link rel="stylesheet" href="/reiki-akzent.css">

   Das Gestaltungsprinzip
   ----------------------
   Aufbau, Schriften, Abstaende und das Gold bleiben identisch mit
   der Massageschule -- so bleibt der Weg von hier zur Buchung
   drueben ohne Bruch. Getauscht wird nur der dunkle Grundton:
   aus dem Waldgruen wird ein tiefes Aubergine. Beide Seiten wirken
   verwandt, sind aber auf den ersten Blick auseinanderzuhalten.

   Der Grundton haengt an genau zwei Werten (--dark, --dark2).
   Wenn Dir das Aubergine nicht gefaellt: hier aendern, fertig.
   ============================================================ */

:root {
  --dark:  #2b2030;   /* tiefes Aubergine statt Waldgruen  (Massageschule: #1c2b1e) */
  --dark2: #372a3c;   /* eine Stufe heller, fuer abgesetzte Flaechen */

  /* Gold bleibt unveraendert (#e8b86d) -- es ist die gemeinsame
     Klammer zwischen beiden Auftritten. */

  /* Sanftes Lila, sparsam fuer kleine Auszeichnungen. */
  --reiki: #c4a9dc;
}

/* global.css Zeile 609 traegt den Gruenton als festen rgba-Wert und
   kommt deshalb nicht ueber die Variablen mit. Hier nachgezogen. */
.angebot-feature { background: rgba(43,32,48,0.6); }

/* Abschnittsbezeichner bekommen den Reiki-Ton statt Gold -- das ist
   der einzige Ort, an dem das Lila regelmaessig auftaucht. */
.section-label { color: var(--reiki); }
.reviews .section-label { color: rgba(196,169,220,0.75); }

/* Sehr dezenter Farbverlauf im Kopfbereich, damit das Aubergine
   nicht flaechig wirkt. */
.hero { background-image: linear-gradient(160deg, #2b2030 0%, #241c2b 60%, #1f1826 100%); }

/* Die Fusszeile traegt den Gruenton ebenfalls fest im global.css. */
footer { background: #16101a; }

.reiki-video-preview {
  margin: 34px 0 38px;
}
.reiki-preview-head {
  margin-bottom: 18px;
}
.reiki-preview-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--dark);
  margin: 6px 0 0;
}
.reiki-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.reiki-preview-card {
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
}
.reiki-preview-card video {
  display: block;
  width: 100%;
  max-height: 430px;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #16101a;
  border-radius: 4px;
}
.reiki-preview-card figcaption {
  color: #4a4237;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 12px;
}
.klarooo-path {
  background: linear-gradient(135deg, #2b2030 0%, #201826 100%);
  color: #fff;
}
.klarooo-path .section-label { color: rgba(196,169,220,0.86); }
.klarooo-path .section-title { color: #fff; max-width: 760px; }
.klarooo-path .section-desc { color: rgba(255,255,255,0.78); max-width: 720px; }
.klarooo-path-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
}
.klarooo-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.klarooo-path .btn-outline {
  border-color: rgba(255,255,255,0.42);
  color: #fff;
}
.klarooo-path-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.22);
}
.klarooo-day {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.klarooo-path-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
}
.klarooo-path-panel p {
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
  margin: 0;
}
.klarooo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.klarooo-points span {
  border: 1px solid rgba(232,184,109,0.38);
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 820px) {
  .klarooo-path-layout { grid-template-columns: 1fr; }
  .klarooo-path-panel { padding: 22px; }
}