:root {
  --primary: #6A0D00;
  --bg-color: #f9f9f9;
  --text-color: #1a1a1a;
  --card-bg: #ffffff;
  --border-color: #e5e5e5;
  --max-width: 750px;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

main {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  max-width: var(--max-width);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  text-align: center;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 0.5rem;
}

h3 {
  font-size: 1.05rem;
  margin-top: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  padding-left: 0;
}

h4 {
  font-size: 0.95rem;
  margin-top: 0.8rem;
  color: #444;
  font-weight: 600;
  text-transform: none;
  padding-left: 0;
}

p {
  line-height: 1.6;
  margin: 0.75rem 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* ✅ Listen-Styling */
ul, ol {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 1rem;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

ul li::marker,
ol li::marker {
  color: var(--primary);
  font-weight: bold;
}

/* ✅ Footer-Styling */
footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

/* ✨ Footer-Links dezent (nicht rot) */
footer a {
  color: #555; /* gleiche Farbe wie Footer-Text */
  text-decoration: none;
  margin: 0 0.25rem;
  font-weight: 500;
}

footer a:hover {
  color: #222; /* leicht dunkler beim Hover */
  text-decoration: underline;
}

