/* Taskanker – gemeinsames Stylesheet fuer die oeffentlichen Seiten unter
   taskanker.de (Landing, Datenschutz, Impressum). Farben/Prinzipien
   gespiegelt aus taskanker/tailwind.config.js - ruhige, warme Palette,
   grosszuegiger Weissraum, kein Alarm-Rot (BRIEFING.md Abschnitt 2). */

:root {
  --background: #faf8f5;
  --surface: #ffffff;
  --brand: #3f7d66;
  --brand-dark: #28503f;
  --brand-light: #e7f2ed;
  --accent: #d9825c;
  --text: #292524;
  --text-muted: #78716c;
  --border: #e7e3dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

header.site {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

header.site .mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

header.site a {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

p,
li {
  color: var(--text);
  font-size: 1rem;
}

p.muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

a {
  color: var(--brand);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: white !important;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-weight: 600;
}

.placeholder {
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  font-weight: 600;
}

footer.site {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

footer.site a {
  color: var(--text-muted);
  text-decoration: none;
}
