/* ============================================================
   styles.css  –  Das komplette Aussehen von "Circle of Flow"
   ============================================================
   CSS beschreibt, WIE die HTML-Elemente aussehen: Farben,
   Schriften, Abstände, Layout.

   Ganz oben stehen "Variablen" (--name). Das sind gespeicherte
   Werte, z.B. deine Farben. Wenn du eine Farbe hier EINMAL
   änderst, ändert sie sich überall auf der Seite. Praktisch!
   ============================================================ */

/* ---- Deine Design-Werte an einer zentralen Stelle ---- */
:root {
  /* Farben – abgeleitet aus deinem Logo (Creme + Altrosa) */
  --cream:        #FBF6F1;  /* Haupt-Hintergrund, sehr hell */
  --cream-soft:   #F4EAE1;  /* leicht dunklerer Beige-Ton für Abschnitte */
  --surface:      #FFFFFF;  /* Karten / Formular-Hintergrund */
  --rose:         #C98B8B;  /* Hauptakzent (Knöpfe, Linien) */
  --rose-deep:    #A9686A;  /* dunkleres Rosé für Hover & Akzenttext */
  --petal:        #E0A6A3;  /* helles Blüten-Rosa für Verläufe */
  --ink:          #4A403B;  /* dunkle, warme Textfarbe */
  --muted:        #8C7E76;  /* gedämpfte Textfarbe (Untertitel) */
  --line:         #E7DACE;  /* zarte Trennlinien / Rahmen */

  /* Schriften */
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Wiederkehrende Werte */
  --radius: 16px;                          /* Rundung von Ecken */
  --shadow: 0 12px 30px rgba(120, 85, 75, 0.10); /* weicher Schatten */
  --maxw: 1080px;                          /* maximale Inhaltsbreite */
}

/* ---- Grund-Reset: einheitliches Verhalten in allen Browsern ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }          /* sanftes Scrollen bei Menü-Klick */

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Ein zentraler "Container": hält Inhalte mittig und begrenzt die Breite */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Überschriften ---- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0.5px;
}

/* Der "eyebrow" ist die kleine gesperrte Zeile über einer Überschrift */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--rose-deep);
  margin-bottom: 10px;
}

/* ============================================================
   KNÖPFE (Buttons)
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;                 /* rund = weiche Optik */
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;           /* sanfter Übergang bei Hover */
}
.btn-primary {
  background-color: var(--rose);
  color: #fff;
}
.btn-primary:hover { background-color: var(--rose-deep); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose);
}
.btn-outline:hover { background-color: var(--rose); color: #fff; }

/* Der Buchungs-Platzhalter-Knopf wirkt bewusst "noch nicht aktiv" */
.booking-placeholder { opacity: 0.75; }

/* ============================================================
   KOPFBEREICH / NAVIGATION
============================================================ */
.site-header {
  position: sticky;                     /* bleibt oben kleben */
  top: 0;
  z-index: 100;
  background-color: rgba(251, 246, 241, 0.9);
  backdrop-filter: blur(8px);           /* leichter Milchglas-Effekt */
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.brand-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--rose-deep);
  letter-spacing: 1px;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--rose-deep); }

/* Der "Kontakt"-Link sieht aus wie ein kleiner Knopf */
.nav-cta {
  border: 1px solid var(--rose);
  border-radius: 999px;
  padding: 8px 20px;
  color: var(--rose-deep) !important;
}
.nav-cta:hover { background-color: var(--rose); color: #fff !important; }

/* Der Hamburger-Knopf – nur auf dem Handy sichtbar (siehe unten) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--ink);
  transition: all 0.3s ease;
}

/* ============================================================
   START / HERO
============================================================ */
.hero {
  /* Sanfter Farbverlauf im Hintergrund */
  background: radial-gradient(ellipse at top, #fff 0%, var(--cream) 55%, var(--cream-soft) 100%);
  text-align: center;
  padding: 60px 0 90px;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: 260px;
  max-width: 70%;
  height: auto;
  margin-bottom: 10px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);  /* wächst mit der Bildschirmgröße */
  margin-bottom: 18px;
}
.hero-text {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.1rem;
  margin-bottom: 34px;
}
.hero-text strong { color: var(--rose-deep); font-weight: 400; }

/* ============================================================
   ALLGEMEINE ABSCHNITTE
============================================================ */
.section { padding: 90px 0; }
.section-alt { background-color: var(--cream-soft); } /* leicht abgesetzt */

.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.section-sub { color: var(--muted); margin-top: 12px; }

/* ---- Über mich (zwei Spalten: Foto + Text) ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 14px; }

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;                 /* Hochformat wie ein Portraitfoto */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;                   /* Bild füllt den Rahmen, ohne verzerrt zu werden */
  object-position: center 30%;         /* Ausschnitt etwas nach oben – hält das Gesicht im Bild */
}
/* Aussehen des Foto-Platzhalters (bevor du ein echtes Foto einsetzt) */
.placeholder-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--petal), var(--cream-soft));
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* ============================================================
   ANGEBOTE / KARTEN
============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background-color: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.25s ease;
  display: flex;              /* Inhalt untereinander anordnen … */
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); }

/* Farbige Kopf-Fläche jeder Karte (statt Foto – als Platzhalter) */
.card-media { height: 150px; }
.media-1 { background: linear-gradient(135deg, #E7B7B2, #D79490); }
.media-2 { background: linear-gradient(135deg, #E9C4B4, #D9A188); }
.media-3 { background: linear-gradient(135deg, #DCC3C8, #C79AA0); }

.card-body {
  padding: 26px 24px 30px;
  flex: 1;                    /* … damit alle Karten gleich hoch werden */
  display: flex;
  flex-direction: column;
}
.card-body .btn { margin-top: auto; align-self: flex-start; } /* Knopf ans Kartenende */
.card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card-body p { color: var(--muted); margin-bottom: 14px; }
.price { font-size: 0.9rem; color: var(--rose-deep) !important; font-weight: 400; }

/* ============================================================
   KONTAKTFORMULAR
============================================================ */
.contact { max-width: 640px; }
.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-row { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-row label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--rose);            /* Rahmen wird rosa bei Klick */
}
.form-row textarea { resize: vertical; }

.contact-form .btn { width: 100%; border: none; }

/* Kleiner Datenschutz-Hinweis unter dem Absende-Knopf */
.form-privacy {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.form-privacy a { color: var(--rose-deep); }

/* Die Rückmeldung nach dem Absenden */
.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.form-status.success { color: #5c8a5c; }
.form-status.error   { color: #b5564f; }

/* ============================================================
   FUSSBEREICH
============================================================ */
.site-footer {
  background-color: var(--ink);
  color: #f3e9e1;
  text-align: center;
  padding: 50px 0;
}
.footer-brand { font-family: var(--font-head); font-size: 1.7rem; letter-spacing: 1px; }
.footer-small { color: #cbb8ad; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { margin-bottom: 14px; }
.footer-links a { color: #f3e9e1; text-decoration: none; margin: 0 8px; }
.footer-links a:hover { color: var(--petal); }
.footer-legal { font-size: 0.8rem; color: #b7a49a; }

/* ============================================================
   RECHTSSEITEN (Impressum & Datenschutz)
============================================================ */
.legal { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 6px; }
.legal .lead { color: var(--muted); margin-bottom: 26px; }
.legal h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--rose-deep); }

/* Gelb-rosa markierte Stellen = hier musst du etwas eintragen */
.fill {
  background: #fbe7e6;
  color: var(--rose-deep);
  padding: 1px 7px;
  border-radius: 5px;
  font-weight: 500;
}

/* Hinweisbox oben auf den Rechtsseiten */
.legal-note {
  background: var(--surface);
  border: 1px dashed var(--rose);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.95rem;
}
.legal-note strong { color: var(--rose-deep); }

/* ============================================================
   HANDY-ANSICHT (Responsive Design)
   ------------------------------------------------------------
   Alles innerhalb dieser Klammer gilt NUR, wenn der Bildschirm
   schmaler als 820 Pixel ist (also Handy / kleines Tablet).
============================================================ */
@media (max-width: 820px) {
  /* Menü-Links werden erst versteckt und per Hamburger eingeblendet */
  .nav-links {
    position: fixed;
    top: 76px;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: calc(100vh - 76px);
    background-color: var(--cream);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 24px;
    transform: translateX(100%);        /* startet außerhalb des Bildschirms */
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateX(0); } /* eingeblendet */

  .nav-toggle { display: flex; }        /* Hamburger sichtbar machen */

  /* "Über mich" & Karten werden untereinander gestapelt */
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about-photo { max-width: 340px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }

  .section { padding: 64px 0; }
  .contact-form { padding: 26px; }
}
