/* =========================================================
   Die Erinnerung – Deniz Kessler
   Helles, modernes Design (nur HTML & CSS, kein JS)
   Palette: #FCFBF5 (Creme) · #B98DB9 (Mauve) · #BB1F99 (Magenta)
   ========================================================= */

:root {
  --bg: #FCFBF5;
  --bg-soft: #f6eef4;
  --surface: #ffffff;
  --surface-2: #faf4f8;
  --line: rgba(45, 25, 55, 0.12);
  --text: #3a3340;
  --text-soft: #5b5364;
  --muted: #928a99;
  --head: #2a2233;
  --mauve: #B98DB9;
  --mauve-soft: rgba(185, 141, 185, 0.16);
  --accent: #BB1F99;
  --accent-2: #9b1a80;
  --accent-soft: rgba(187, 31, 153, 0.10);
  --gold: #a86a2c;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1120px;
  --shadow: 0 20px 50px -28px rgba(90, 40, 90, 0.35);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* soft ambient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(760px 520px at 12% -8%, rgba(185, 141, 185, 0.18), transparent 60%),
    radial-gradient(680px 480px at 100% 6%, rgba(187, 31, 153, 0.08), transparent 55%),
    var(--bg);
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-2); }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: .3px; margin: 0 0 .5em; color: var(--head); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
p { margin: 0 0 1.15em; color: var(--text-soft); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1.1rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 245, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--head);
}
.brand:hover { color: var(--accent); }
.brand .brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.brand .brand-sub {
  font-size: .64rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mauve);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--text);
  font-size: .93rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--accent); background: var(--accent-soft); }
.nav-links a.active { color: var(--accent); background: var(--accent-soft); }

/* mobile menu, CSS-only (checkbox hack, kein JS) */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  color: var(--head);
  background: var(--surface);
}
.nav-burger span {
  display: block; width: 20px; height: 2px; background: currentColor;
  border-radius: 2px;
}
.nav-burger span + span { margin-top: 5px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d13fb0);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(187, 31, 153, 0.55);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(187, 31, 153, 0.65); }
.btn-ghost {
  background: transparent;
  color: var(--head);
  border-color: var(--mauve);
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-galaxy.jpeg") center 40% / cover no-repeat;
  transform: scale(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(30,10,35,.25) 0%, rgba(30,10,35,.2) 45%, rgba(252,251,245,.96) 100%),
    radial-gradient(circle at 50% 42%, transparent 32%, rgba(40,15,45,.35) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; padding: 120px 24px 90px; }
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 40px rgba(40,10,45,.55);
  margin-bottom: .35em;
}
.hero .lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #fbeffa;
  max-width: 620px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 20px rgba(40,10,45,.45);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.7); }
.hero .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.15); }

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--muted); font-size: .78rem; letter-spacing: .2em;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-alt { background: linear-gradient(180deg, #f6eef4, #f3e7f0); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.prose { max-width: 760px; margin: 0 auto; }
.prose.wide { max-width: 860px; }
.prose p { font-size: 1.08rem; }
.prose .drop::first-letter {
  font-family: var(--serif);
  font-size: 3.4rem;
  float: left;
  line-height: .8;
  padding: 6px 12px 0 0;
  color: var(--accent);
}

/* feature / theme cards */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--mauve); box-shadow: 0 26px 54px -26px rgba(120, 50, 110, 0.45); }
.card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--mauve-soft); color: var(--accent);
  font-family: var(--serif); font-size: 1.5rem;
}
.card h3 { color: var(--head); }
.card p { margin-bottom: 0; }

/* split (about) */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split .media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 62%, rgba(185,141,185,.28));
}

/* testimonials */
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px 30px;
  position: relative;
  box-shadow: var(--shadow);
}
.quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .6;
  color: var(--mauve);
  opacity: .55;
  position: absolute;
  top: 22px; left: 24px;
}
.quote .quote-body { position: relative; padding-top: 26px; }
.quote p { color: var(--text-soft); font-size: 1.02rem; }
.quote .author {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

/* contact / info */
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.info-card .big-mail {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--accent);
  display: inline-block;
  margin: 6px 0 26px;
}

/* pricing / termine */
.price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--head);
}
.price small { font-size: 1rem; font-family: var(--sans); color: var(--muted); display: block; letter-spacing: .05em; }
.slots { list-style: none; padding: 0; margin: 26px 0 6px; display: grid; gap: 12px; }
.slots li {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 20px;
  color: var(--text); font-weight: 500;
}
.slots li .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.slots li span.time { font-family: var(--serif); font-size: 1.25rem; color: var(--head); }
.slots li em { color: var(--muted); font-style: normal; font-size: .9rem; margin-left: auto; }

/* legal pages */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { margin-bottom: .6em; }
.legal h2 { font-size: 1.6rem; margin-top: 1.8em; color: var(--head); }
.legal h3 { font-size: 1.2rem; margin-top: 1.4em; color: var(--head); }
.legal h4 { font-size: 1.02rem; margin: 1.1em 0 .3em; color: var(--text); font-family: var(--sans); font-weight: 700; }
.legal p, .legal li { color: var(--text-soft); }
.legal ul { padding-left: 1.2em; }
.legal .callout {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 26px; margin: 0 0 1.4em;
}

/* page hero (inner pages) */
.page-hero { padding: clamp(90px, 12vw, 150px) 0 clamp(40px, 6vw, 70px); text-align: center; position: relative; }
.page-hero h1 { color: var(--head); }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--text-soft); font-size: 1.1rem; }

/* image banner (inner page hero with galaxy photo) */
.banner {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-galaxy.jpeg") center 42% / cover no-repeat;
}
.banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(30,10,35,.35) 0%, rgba(30,10,35,.28) 45%, rgba(252,251,245,.96) 100%),
    radial-gradient(circle at 50% 45%, transparent 35%, rgba(40,15,45,.35) 100%);
}
.banner-inner { position: relative; z-index: 2; max-width: 820px; padding: 110px 24px 70px; }

/* Themen-Banner: dunkles Bild sauber einbetten */
.banner--themen { min-height: 62vh; background: #000; }
.banner--themen .banner-bg { background-color: #000; background-size: contain; background-repeat: no-repeat; }
.banner--themen .banner-bg::after {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.2) 78%, rgba(252,251,245,.98) 100%);
}
.banner--themen .banner-inner { padding-top: 80px; padding-bottom: 40px; }

/* Nur-Bild-Banner (kein Text, kein Verlauf) */
.banner--image-only {
  display: block;
  min-height: 0;
  height: clamp(220px, 34vw, 400px);
}
.banner--image-only .banner-bg::after { display: none; }
.banner h1 { color: #fff; text-shadow: 0 4px 40px rgba(40,10,45,.55); }
.banner .eyebrow { color: #f4d9ef; }
.banner p { color: #fbeffa; text-shadow: 0 2px 20px rgba(40,10,45,.45); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }

/* CTA band */
.cta-band { text-align: center; padding: clamp(60px, 9vw, 110px) 0; }
.cta-band h2 { color: var(--head); max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #f3e7f0;
  padding: 56px 0 30px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}
.footer-grid h4 { font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); margin: 0 0 16px; }
.footer-grid a { display: block; color: var(--text-soft); padding: 4px 0; font-size: .95rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.5rem; color: var(--head); }
.footer-brand p { font-size: .95rem; margin-top: 10px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .85rem;
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a { color: var(--muted); }
.footer-bottom .legal-links a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-burger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(252, 251, 245, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-toggle:checked ~ .nav-links { max-height: 420px; }
  .nav-links a { padding: 13px 12px; border-radius: 10px; font-size: 1rem; }
  .grid-2, .grid-3, .quote-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .media { order: -1; max-height: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero { min-height: 76vh; }
  .btn { padding: 13px 24px; }
}
