:root {
  --bg: #ffffff;
  --text: #1f2933;
  --accent: #8b0000;
  --accent-dark: #6f0000;
  --line: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-image: url("/img/hintergrund.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: clamp(600px, 60vw, 1200px) auto;
  background-attachment: fixed;
}
.logo {
  width: 110px;
  height: auto;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}


h1, h2 {
  font-family: "Liberation Serif", Georgia, serif;
  letter-spacing: 0.3px;
}

h1 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 33vh 1.5rem 3rem;
  text-align: center;
}

.hero h1 {
  margin-bottom: 3rem;
}

.subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1.8rem;
  letter-spacing: 0.5px;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.section {
  margin-top: 4rem;
  text-align: left;
}

.section h2 {
  margin-bottom: 0.5rem;
}

.section ul {
  padding-left: 1.2rem;
}

.section ul {
  padding-left: 1.2rem;
}

.section li {
  margin-bottom: 0.5rem;
}

.section + .section {
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

footer a {
  color: var(--text);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

