/* ---- Event-Detailseiten: passend zur Geschenk-PDF ---- */
/* Quelle: wird von build_web.py nach web/_shared.css kopiert. */
:root {
  --ink:    #2f2f33;
  --cream:  #faf8f3;
  --card:   #ffffff;
  --taupe:  #c9b8a8;
  --taupe-soft: #ece3d8;
  --rose:   #e8b7b0;
  --muted:  #7c756c;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}
.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}
header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--taupe);
  margin-bottom: 24px;
}
header .dog { width: 120px; height: auto; }
header .kicker {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 8px 0 4px;
}
header h1 {
  font-size: 2rem;
  margin: 0;
}
header .verein { color: var(--muted); margin-top: 4px; }

.status {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}
.status.ready {
  background: #e7f4ec;
  color: #2f7d4f;
  border: 1px solid #b6ddc4;
}
.status.pending {
  background: #fff4ec;
  color: #b5675e;
  border: 1px dashed var(--rose);
}

.gutschein {
  display: block;
  margin-top: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: #b5675e;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 4px 16px rgba(181,103,94,0.25);
}
.gutschein:hover { background: #a1584f; }

.card {
  background: var(--card);
  border: 1.5px solid var(--taupe-soft);
  border-radius: 18px;
  padding: 8px 24px;
  box-shadow: 0 4px 16px rgba(47,47,51,0.05);
}
dl { margin: 0; }
.row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--taupe-soft);
  align-items: baseline;
}
.row:last-child { border-bottom: none; }
dt {
  flex: 0 0 130px;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}
dd { margin: 0; flex: 1; }
dd a { color: #b5675e; }

.tbd {
  display: inline-block;
  background: #fff4ec;
  color: #b5675e;
  border: 1px dashed var(--rose);
  border-radius: 8px;
  padding: 1px 10px;
  font-size: 0.85rem;
}
.note {
  margin-top: 20px;
  background: #fffaf8;
  border: 1px solid var(--rose);
  border-radius: 14px;
  padding: 14px 18px;
  color: #8a6b64;
}
footer {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.85rem;
}
footer a { color: var(--muted); }
