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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f7f7f7;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(178, 216, 178, 0.95); /* Pastellgrün leicht durchsichtig */
  padding: 15px 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
}

.logo {
  color: #2d5d2d; /* etwas dunkleres Grün für den Text */
  font-weight: 700;
  font-size: 1.5em;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #2d5d2d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #66bb66; /* kräftigeres Grün beim Hover */
}

.hero {
  margin-top: 70px;
  background-image: url('background.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 90vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
  margin-bottom: 50px;
}

section h2 {
  color: #2d5d2d;
  margin-bottom: 15px;
  font-size: 2em;
}

section h3 {
  margin-top: 20px;
  font-weight: 600;
}

ul {
  list-style: disc inside;
  margin-top: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  background: #b2d8b2;
  color: #2d5d2d;
  margin-top: 40px;
}

.kontakt-formular {
  display: flex;
  flex-direction: column;
}

.kontakt-formular label {
  margin: 10px 0 5px;
  font-weight: 600;
}

.kontakt-formular input,
.kontakt-formular textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.kontakt-formular button {
  margin-top: 15px;
  padding: 12px;
  background-color: #66bb66;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

.kontakt-formular button:hover {
  background-color: #55aa55;
}