:root {
  --bg-color: #f9f1d2;
  --text-color: #3a1e0d;
  --accent-color: #821f17;
  --border-color: #4a2a16;
  --font-family: 'Raleway', sans-serif;
}

/* Global */
body {
  background-color: var(--bg-color);
  font-family: var(--font-family);
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Header */
header h1 {
  font-size: 2.2rem;
  margin: 20px 0;
  color: var(--text-color);
  font-weight: bold;
}
header h1 a {
  color: inherit;
  text-decoration: none;
}

/* Trenner */
header hr {
  width: 100%;
  height: 10px;
  background-color: var(--border-color);
  border: none;
  margin: 20px 0 30px;
}

/* Bereichstitel */
h2 {
  font-size: 1.4rem;
  color: #000;
  font-weight: bold;
  margin: 10px auto 5px;
  text-transform: uppercase;
}

/* Text */
p {
  font-size: 1.05rem;
  font-weight: bold;
  margin: 0 0 12px;
  line-height: 1.4;
}

/* Bilder */
img {
  width: 80%;
  max-width: 300px;
  border: 5px solid var(--border-color);
  margin: 10px 0;
  border-radius: 8px;
}

/* Buttons */
.button {
  display: block;
  width: fit-content;
  margin: 10px auto 30px;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.button:hover {
  background-color: #a52a1f;
  transform: scale(1.05);
}

/* Sektionen */
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
