/* -------------------------------------------------- */
/* Beate Maag – Emotional Dance Process / Tanztherapie */
/* Mobile-first, keine Frameworks, keine Fotos         */
/* Klassen folgen BEM (Block__Element--Modifier)       */
/* -------------------------------------------------- */

:root {
  --color-bg: #fdfaf5;
  --color-bg-muted: #f6ede1;
  --color-text: #3a3630;
  --color-text-soft: #6b6459;
  --color-accent: #c98a4b;
  --color-accent-soft: #e7c9a3;
  --color-accent-blue: #7c8ba1;
  --radius: 1rem;
  --wrap-width: 46rem;

  --font-heading: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: normal;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin: 0 0 1rem; }

a {
  color: var(--color-accent);
  text-decoration: underline;
}

a:hover { color: var(--color-text); }

/* Layout-Hilfsklasse (kein BEM-Block, seitenübergreifend genutzt) */

.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Block: site-header */

.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-accent-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-header__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}

.site-header__nav {
  display: flex;
}

.site-header__link {
  margin-left: 1.25rem;
  color: var(--color-text-soft);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-header__link:first-child { margin-left: 0; }
.site-header__link:hover { color: var(--color-accent); }

.site-header__link--current {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Block: hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--color-text-soft);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  z-index: 0;
}

.hero__blob--one {
  width: 22rem;
  height: 22rem;
  top: -8rem;
  left: -6rem;
  background: radial-gradient(circle at 30% 30%, var(--color-accent-soft), transparent 70%);
}

.hero__blob--two {
  width: 18rem;
  height: 18rem;
  bottom: -7rem;
  right: -5rem;
  background: radial-gradient(circle at 70% 70%, var(--color-accent-blue), transparent 70%);
  opacity: 0.35;
}

/* Block: button */

.button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.button:hover {
  background: var(--color-text);
  color: #fff;
}

.button--outline {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.button--outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Block: section (generisches Layout für Seitenabschnitte) */

.section {
  padding: 3rem 0;
}

.section--muted {
  background: var(--color-bg-muted);
}

/* Block: card-grid */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.card-grid__hint {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Block: card */

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-accent-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card__title {
  margin-bottom: 0.5rem;
}

.card__text {
  margin: 0;
}

/* Block: contact-list */

.contact-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.contact-list__item {
  margin-bottom: 0.5rem;
}

.contact-list__label {
  display: inline-block;
  min-width: 5rem;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

/* Block: site-footer */

.site-footer {
  background: var(--color-bg-muted);
  border-top: 1px solid var(--color-accent-soft);
  padding: 2rem 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.site-footer__legal {
  margin: 0;
}

.site-footer__copyright {
  margin: 0.5rem 0 0;
}

@media (min-width: 700px) {
  h1 { font-size: 2.5rem; }
  .section { padding: 4rem 0; }
}
