/* ==========================================================================
   AROMAKRAFT – Stylesheet (Design & Layout)
   --------------------------------------------------------------------------
   Texte änderst du in den .html-Dateien, NICHT hier.
   FARBEN & SCHRIFTEN stehen gesammelt ganz oben im Block ":root".

   FARBSCHEMA (deine 4 Markenfarben):
     #8B0B40  Beere (dunkles Magenta)   – Überschriften, Kopf/Fuß, farbige Flächen
     #F17E05  Orange                    – Buttons / Call-to-Action
     #D70D5F  Pink                      – kleine Highlights (Kicker, Preis-Umrandung)
     #7BA5B4  Taubenblau                – ruhige Flächen, Icon-Kreise
   Helle Abstufungen (Hintergründe/Linien) sind aus diesen Farben abgeleitet.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FARBEN & GRUNDEINSTELLUNGEN  (hier anpassen!)
   -------------------------------------------------------------------------- */
:root {
  /* --- Deine 4 Markenfarben --- */
  --farbe-primaer:        #8b0b40;  /* Beere – Überschriften, farbige Flächen */
  --farbe-primaer-dunkel: #6d0a33;  /* dunklere Beere – Hover, Fußbereich */
  --farbe-akzent:         #f17e05;  /* Orange – Buttons */
  --farbe-akzent-dunkel:  #d06d00;  /* dunkleres Orange – Button-Hover */
  --farbe-akzent-hell:    #f6b877;  /* helles Orange – Kicker auf dunklem Grund */
  --farbe-sekundaer:      #d70d5f;  /* Pink – Highlights */
  --farbe-blau:           #7ba5b4;  /* Taubenblau – Icon-Kreise, ruhige Flächen */

  /* --- Hintergrund- & Textfarben (aus den Markenfarben abgeleitet) --- */
  --farbe-creme:          #fbf7f8;  /* sehr helles Beere-Weiß – Seitenhintergrund */
  --farbe-hell:           #eef3f4;  /* zartes Blau – abwechselnde Abschnitte */
  --farbe-weiss:          #ffffff;
  --farbe-text:           #3a0a1e;  /* sehr dunkle Beere – Fließtext */
  --farbe-text-hell:      #8a6b74;  /* gedämpftes Mauve – Nebentexte */
  --farbe-linie:          #ecdde3;  /* zarte Trennlinien */

  /* --- Schriftarten --- */
  --schrift-text:   "Roboto", "Helvetica Neue", Arial, sans-serif;
  --schrift-logo:   "Aromakraft Script", "Segoe Script", "Brush Script MT", cursive;

  /* --- Layout --- */
  --breite-max:     1160px;
  --radius:         14px;
  --schatten:       0 10px 30px rgba(58, 10, 30, 0.08);
  --uebergang:      0.25s ease;
}

/* --------------------------------------------------------------------------
   2. SCHRIFTARTEN EINBINDEN (selbst gehostet = DSGVO-sicher)
   -------------------------------------------------------------------------- */
/* Roboto Condensed (selbst gehostet, als .ttf im Ordner /fonts/). */
@font-face {
  font-family: "Roboto"; font-style: normal; font-weight: 300; font-display: swap;
  src: url("../fonts/RobotoCondensed-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("../fonts/RobotoCondensed-Italic.ttf") format("truetype");
}
/* Sacreditty – die Schmuckschrift deines Logos, für den Schriftzug "Aromakraft".
   HINWEIS: Die Demo-Version enthält KEINE Umlaute (ä,ö,ü) und keine Zahlen.
   Deshalb ist sie per unicode-range auf die Grundbuchstaben begrenzt – dort,
   wo doch ein Umlaut/Zahl steht, springt automatisch Roboto ein. */
@font-face {
  font-family: "Aromakraft Script";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/sacreditty.ttf") format("truetype");
  unicode-range: U+0041-005A, U+0061-007A, U+0020;
}

/* --------------------------------------------------------------------------
   3. GRUNDGERÜST
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--schrift-text);
  color: var(--farbe-text);
  background: var(--farbe-creme);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--farbe-primaer); text-decoration: none; transition: color var(--uebergang); }
a:hover { color: var(--farbe-akzent); }

/* ÜBERSCHRIFTEN – aktuell in Roboto (gut lesbar, mit Umlauten).
   Möchtest du sie in Sacreditty? Dann ergänze bei h1, h2 einfach:
       font-family: var(--schrift-logo);
   (nur sinnvoll mit der Sacreditty-Vollversion, die Umlaute enthält). */
h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--farbe-primaer);
  font-weight: 700;
  margin-bottom: 0.5em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; color: var(--farbe-text); }
p { margin-bottom: 1rem; }

/* Der Schriftzug "Aromakraft" – immer in der Schmuckschrift (Sacreditty) */
.logo-schriftzug {
  font-family: var(--schrift-logo);
  color: var(--farbe-primaer);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.container { width: 100%; max-width: var(--breite-max); margin: 0 auto; padding: 0 24px; }

section { padding: 72px 0; }
.section-hell  { background: var(--farbe-hell); }
.section-blau  { background: var(--farbe-blau); color: #fff; }
.section-blau h2, .section-blau h3 { color: #fff; }
/* Farbige Beere-Fläche (Klassenname historisch "gruen", Farbe = Beere) */
.section-gruen { background: var(--farbe-primaer); color: var(--farbe-creme); }
.section-gruen h2, .section-gruen h3 { color: #fff; }

.text-zentriert { text-align: center; }
.abschnitt-intro { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.abschnitt-intro p { color: var(--farbe-text-hell); font-size: 1.1rem; }

.kicker {
  display: inline-block;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--farbe-sekundaer);
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: all var(--uebergang); text-align: center;
}
.btn-primaer { background: var(--farbe-akzent); color: #fff; }
.btn-primaer:hover { background: var(--farbe-akzent-dunkel); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--farbe-primaer); }
.btn-outline:hover { background: var(--farbe-primaer); color: #fff; }
.section-gruen .btn-outline, .section-blau .btn-outline { color: #fff; }
.section-gruen .btn-outline:hover { background: #fff; color: var(--farbe-primaer); }
.section-blau .btn-outline:hover  { background: #fff; color: var(--farbe-blau); }

/* --------------------------------------------------------------------------
   5. KOPFBEREICH / NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--farbe-linie);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--breite-max); margin: 0 auto;
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo .logo-schriftzug { font-size: 2rem; line-height: 1; }

.hauptnav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.hauptnav a { color: var(--farbe-text); font-weight: 500; position: relative; padding: 6px 0; }
.hauptnav a:hover, .hauptnav a.aktiv { color: var(--farbe-primaer); }
.hauptnav a.aktiv::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--farbe-akzent);
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span {
  display: block; width: 26px; height: 3px; background: var(--farbe-primaer);
  margin: 5px 0; border-radius: 3px; transition: var(--uebergang);
}

/* --------------------------------------------------------------------------
   6. HERO (Kopfbereich der Startseite): Logo-Banner + Text
   -------------------------------------------------------------------------- */
/*.hero-banner { background: var(--farbe-primaer-dunkel); }*/
.hero-banner img { width: 100%; max-height: 600px; object-fit: cover; }
.hero-intro { text-align: center; padding: 60px 24px 72px; }
.hero-intro h1 { max-width: 900px; margin: 0 auto 18px; }
.hero-intro p { font-size: 1.2rem; max-width: 640px; margin: 0 auto 30px; color: var(--farbe-text-hell); }
.btn-gruppe { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   7. KARTEN (Kurse / Workshops / Vorteile)
   -------------------------------------------------------------------------- */
.karten-raster { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.karte {
  background: var(--farbe-weiss); border: 1px solid var(--farbe-linie);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten);
  transition: transform var(--uebergang), box-shadow var(--uebergang);
  display: flex; flex-direction: column;
}
.karte:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(58,10,30,0.16); }
.karte img { width: 100%; height: 200px; object-fit: cover; }
.karte-inhalt { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.karte-inhalt h3 { color: var(--farbe-primaer); }
.karte-meta {
  font-size: 0.9rem; color: var(--farbe-text-hell); margin-bottom: 12px;
  display: flex; flex-wrap: wrap; gap: 6px 16px;
}
.karte-meta span { display: inline-flex; align-items: center; gap: 6px; }
.karte .btn { margin-top: auto; align-self: flex-start; }
.preis { font-weight: 700; color: var(--farbe-akzent); font-size: 1.15rem; }

.vorteil { text-align: center; padding: 20px; }
.vorteil .icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--farbe-blau); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem;
}

/* --------------------------------------------------------------------------
   8. ZWEISPALTIG (Über-mich / Bild+Text)
   -------------------------------------------------------------------------- */
.zwei-spalten { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.zwei-spalten img { border-radius: var(--radius); box-shadow: var(--schatten); }

/* --------------------------------------------------------------------------
   9. ABLAUF / SCHRITTE
   -------------------------------------------------------------------------- */
.schritte { counter-reset: schritt; display: grid; gap: 24px; }
.schritt { display: flex; gap: 20px; align-items: flex-start; }
.schritt::before {
  counter-increment: schritt; content: counter(schritt);
  flex: 0 0 auto; width: 46px; height: 46px;
  background: var(--farbe-akzent); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. ZITATE / STIMMEN
   -------------------------------------------------------------------------- */
.zitat {
  background: var(--farbe-weiss); border-left: 4px solid var(--farbe-sekundaer);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--schatten);
}
.zitat p { font-style: italic; color: var(--farbe-text); }
.zitat .autor { font-style: normal; font-weight: 700; color: var(--farbe-primaer); margin-top: 8px; }

/* --------------------------------------------------------------------------
   11. FORMULAR
   -------------------------------------------------------------------------- */
.formular { max-width: 620px; margin: 0 auto; }
.feld { margin-bottom: 20px; }
.feld label { display: block; font-weight: 500; margin-bottom: 6px; }
.feld input, .feld textarea, .feld select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--farbe-linie);
  border-radius: 10px; font-family: inherit; font-size: 1rem;
  background: #fff; color: var(--farbe-text);
}
.feld input:focus, .feld textarea:focus, .feld select:focus {
  outline: none; border-color: var(--farbe-primaer);
  box-shadow: 0 0 0 3px rgba(139,11,64,0.15);
}
.feld textarea { min-height: 140px; resize: vertical; }
.formular-hinweis { font-size: 0.85rem; color: var(--farbe-text-hell); }

/* --------------------------------------------------------------------------
   12. FUSSBEREICH
   -------------------------------------------------------------------------- */
.site-footer { background: var(--farbe-primaer-dunkel); color: rgba(251,247,248,0.85); padding: 56px 0 28px; }
.footer-raster { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: 1.05rem; }
.site-footer a { color: rgba(251,247,248,0.85); }
.site-footer a:hover { color: var(--farbe-akzent-hell); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.footer-logo .logo-schriftzug { color: #fff; font-size: 2.2rem; }
.footer-unten {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 22px;
  text-align: center; font-size: 0.85rem; color: rgba(251,247,248,0.6);
}
.site-footer .footer-unten a { color: rgba(251,247,248,0.75); }

/* --------------------------------------------------------------------------
   13. RESPONSIVE / SMARTPHONE
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .hauptnav {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: var(--farbe-creme); box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    padding: 90px 30px 30px; transition: right var(--uebergang);
  }
  .hauptnav.offen { right: 0; }
  .hauptnav ul { flex-direction: column; gap: 8px; align-items: flex-start; }
  .hauptnav a { font-size: 1.2rem; padding: 10px 0; display: block; width: 100%; }

  .zwei-spalten { grid-template-columns: 1fr; gap: 32px; }
  .zwei-spalten .bild-zuerst { order: -1; }
  .footer-raster { grid-template-columns: 1fr; gap: 28px; }
  section { padding: 52px 0; }
  .hero-banner img { max-height: 300px; }
  .hero-intro { padding: 44px 20px 52px; }
}

/* --------------------------------------------------------------------------
   14. KURSE-SEITE: Aufklappbare Kursliste (Akkordeon)
   --------------------------------------------------------------------------
   Diese Klassen werden NUR auf kurse.html verwendet – alle anderen Seiten
   bleiben unberührt. Aufbau: .kurs-liste enthält mehrere .kurs-item; jedes
   Item hat eine anklickbare Kopfzeile (.kurs-kopf) und einen aufklappbaren
   Bereich (.kurs-panel) mit den Paket-Karten.

   NEUEN KURS HINZUFÜGEN? In kurse.html einen bestehenden .kurs-item-Block
   kopieren – siehe Kommentar "KURS-VORLAGE" dort.
   -------------------------------------------------------------------------- */
.kurs-liste { display: grid; gap: 16px; max-width: 1000px; margin: 0 auto; }
.kurs-gruppe-titel { max-width: 1000px; margin: 44px auto 8px; }
.kurs-gruppe-titel:first-child { margin-top: 0; }

.kurs-item {
  position: relative;
  isolation: isolate;
  background-color: var(--farbe-weiss);
  /* Deckblatt des Flyers als Hintergrund. WELCHES Bild steht pro Kurs in
     kurse.html:  style="background-image:url('assets/kurs-bg-…jpg')"
     (Der Pfad muss dort stehen, nicht hier – sonst wird er falsch aufgelöst.) */
  background-repeat: no-repeat;
  background-position: center 30%;   /* trifft das farbige Motiv des Deckblatts */
  background-size: cover;
  border: 1px solid var(--farbe-linie);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  overflow: hidden;
}
/* Weißer Schleier legt das Deckblatt zart in den Hintergrund (Wasserzeichen).
   Blasser/kräftiger? -> die 0.84 ändern: höher = blasser, niedriger = kräftiger. */
.kurs-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 248, 0.84);
  z-index: 0;
  pointer-events: none;
}
/* Inhalt liegt über dem Schleier */
.kurs-kopf-wrap, .kurs-panel { position: relative; z-index: 1; }

/* Kopfzeile (immer sichtbar, zum Aufklappen) */
.kurs-kopf-wrap { margin: 0; }
.kurs-kopf {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px; text-align: left; font-family: inherit;
  transition: background var(--uebergang);
}
.kurs-kopf:hover { background: var(--farbe-creme); }
.kurs-kopf-text { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.kurs-titel  { font-size: 1.3rem; font-weight: 700; color: var(--farbe-primaer); line-height: 1.2; }
.kurs-teaser { font-size: 0.98rem; color: var(--farbe-text-hell); }
.kurs-preis-ab {
  flex: 0 0 auto; font-weight: 700; color: var(--farbe-akzent);
  font-size: 1.15rem; white-space: nowrap; text-align: right; line-height: 1.1;
}
.kurs-preis-ab small { display: block; font-size: 0.7rem; font-weight: 400; color: var(--farbe-text-hell); }
.kurs-pfeil {
  flex: 0 0 auto; width: 12px; height: 12px;
  border-right: 2px solid var(--farbe-primaer); border-bottom: 2px solid var(--farbe-primaer);
  transform: rotate(45deg); transition: transform var(--uebergang); margin-left: 2px;
}
.kurs-item.offen .kurs-pfeil { transform: rotate(-135deg); }

/* Aufklappbarer Bereich */
.kurs-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.kurs-item.offen .kurs-panel { max-height: 6000px; }
.kurs-panel-innen { padding: 4px 24px 30px; border-top: 1px solid var(--farbe-linie); }
.kurs-intro { max-width: 780px; margin: 22px 0 28px; }
.kurs-aktionen { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Einzel-Angebot (nur eine Karte) mittig und schmaler */
.paket-solo { max-width: 540px; margin: 0 auto; }

/* Paket-Karten – sorgen dafür, dass „Preise pro Person" auf gleicher Höhe
   beginnt. Die min-height-Werte reservieren gleich viel Platz in allen Karten.
   Passt bei Bedarf hier zentral an (gilt dann für ALLE Kurse). */
.paket-name    { color: var(--farbe-primaer); margin-bottom: 6px; font-size: 1.2rem; line-height: 1.2; font-weight: 700; }
.paket-sub     { color: var(--farbe-text-hell); margin-bottom: 12px; min-height: 52px; }
.paket-vorteile{ padding-left: 20px; margin-bottom: 16px; min-height: 200px; }
.paket-preise  { list-style: none; padding: 0; margin-bottom: 18px; }
.paket-preise strong { color: var(--farbe-text); }

/* Anklickbare Kurs-Teaser-Karten (z. B. auf der Startseite) – gleiche Optik
   wie die Kursliste (Deckblatt-Wasserzeichen), aber als Karte, die direkt zum
   passenden Kurs führt. In ein normales .karten-raster setzen. */
.kurs-teaser-karte {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 24px 24px;
  min-height: 190px;
  color: var(--farbe-text);
  text-decoration: none;
  transition: transform var(--uebergang), box-shadow var(--uebergang);
}
.kurs-teaser-karte > * { position: relative; z-index: 1; }   /* über den Schleier */
.kurs-teaser-karte:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(58, 10, 30, 0.16);
  color: var(--farbe-text);
}
.kurs-teaser-karte .kurs-preis-ab { text-align: left; margin-top: 2px; }
.kurs-teaser-karte .teaser-mehr {
  margin-top: auto;
  padding-top: 12px;
  color: var(--farbe-primaer);
  font-weight: 700;
}
.kurs-teaser-karte:hover .teaser-mehr { color: var(--farbe-akzent); }

@media (max-width: 600px) {
  .paket-sub, .paket-vorteile { min-height: 0; }   /* am Handy keine Leerräume */
  .kurs-kopf { padding: 18px 16px; gap: 12px; }
  .kurs-panel-innen { padding: 4px 16px 26px; }
  .kurs-titel { font-size: 1.12rem; }
  .kurs-preis-ab { font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   15. ZENTRIERTES ICON-RASTER (z. B. Zielgruppen auf der Firmen-Seite)
   --------------------------------------------------------------------------
   Wie .karten-raster, aber die Karten werden zentriert. So sitzt eine nicht
   ganz volle letzte Reihe mittig, statt rechts eine große Lücke zu lassen –
   egal ob 4, 5 oder mehr Karten. */
.zielgruppen-raster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.zielgruppen-raster .vorteil {
  flex: 0 1 300px;   /* je Karte ca. 300px; wächst nicht, schrumpft am Handy */
}
