:root {
  --color-primary: #226d27;     /* Waldgrün */
  --color-accent: #f4b200;      /* Goldgelb */
  --color-secondary: #8b2b2b;   /* Dunkelrot */
  --color-bg: #f4f2ed;          /* Hellbeige */
  --color-text: #2e2a25;        /* Dunkelbraun */
}

body {
  margin: 0;
  font-family: sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

header {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

nav {
  background: white;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: bold;
}

.hero {
  position: relative;
  background: url('hero.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero .content {
  position: relative;
  z-index: 1;
}

.button {
  background: var(--color-accent);
  color: white;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.button:hover {
  background: #d69e00;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

footer {
  background: var(--color-secondary);
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}
