/* Die Bruderschaft — Web-Auftritt. Gold/Dunkel-Wappen-Look, passend zur App. */
:root {
  --bg: #0d0b07;
  --panel: #1a160f;
  --panel2: #231d13;
  --line: #3a3220;
  --gold: #e0a82e;
  --gold2: #f3c969;
  --text: #f4ead2;
  --muted: #9b8f73;
  --red: #d4574e;
  --green: #5fb56a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold2); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }

/* Kopf / Navigation */
header.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13, 11, 7, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.nav .wrap { display: flex; align-items: center; gap: 12px; height: 60px; }
header.nav img { width: 34px; height: 34px; }
header.nav .brand { font-weight: 800; color: var(--gold); letter-spacing: 0.3px; }
header.nav nav { margin-left: auto; display: flex; gap: 18px; font-size: 14px; }
header.nav nav a { color: var(--muted); }
header.nav nav a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero { text-align: center; padding: 72px 0 56px; }
.hero img.crest { width: 132px; height: 132px; margin-bottom: 22px; }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 7vw, 56px); color: var(--gold); letter-spacing: 1px;
}
.hero .tag { color: var(--text); font-size: clamp(16px, 3vw, 20px); margin-top: 8px; }
.hero .sub { color: var(--muted); max-width: 540px; margin: 18px auto 0; font-size: 16px; }

/* Buttons */
.btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px; font-weight: 700; font-size: 15px;
  border: 1px solid var(--gold); background: var(--gold); color: #221a05;
}
.btn.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn.disabled { opacity: 0.55; cursor: default; }

/* Feature-Raster */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 18px 0 8px; }
.feature { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.feature .ico { font-size: 26px; }
.feature h3 { font-size: 15px; margin: 8px 0 4px; color: var(--text); }
.feature p { color: var(--muted); font-size: 13px; }

/* Sektionen */
section { padding: 30px 0; }
h2.section {
  font-size: 13px; text-transform: uppercase; letter-spacing: 1.4px;
  color: var(--muted); font-weight: 800; margin-bottom: 16px;
}

/* Inhalts-/Rechtsseiten */
.content h1 { font-family: Georgia, serif; color: var(--gold); font-size: 30px; margin: 28px 0 6px; }
.content h2 { color: var(--text); font-size: 19px; margin: 26px 0 8px; }
.content p, .content li { color: var(--text); font-size: 15px; margin-bottom: 10px; }
.content ul { padding-left: 22px; }
.content .muted { color: var(--muted); font-size: 13px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 22px; margin: 16px 0;
}

/* Reset-Formular */
.form label { display: block; color: var(--muted); font-size: 13px; margin: 14px 0 6px; }
.form input {
  width: 100%; background: var(--panel2); border: 1px solid var(--line);
  border-radius: 11px; padding: 13px; color: var(--text); font-size: 15px;
}
.note { font-size: 14px; padding: 12px 14px; border-radius: 11px; margin-top: 14px; }
.note.ok { background: rgba(95,181,106,0.12); border: 1px solid var(--green); color: var(--green); }
.note.err { background: rgba(212,87,78,0.12); border: 1px solid var(--red); color: var(--red); }

/* Fuß */
footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 28px 0 50px; }
footer .wrap { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
footer a { color: var(--muted); font-size: 13px; }
footer .sp { flex: 1; }
footer .cr { color: var(--muted); font-size: 12px; }
