body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #f9f7f3;
}

.hero {
  text-align: center;
  background: linear-gradient(135deg, #a58e74, #4a637d);
  color: white;
  padding: 80px 20px;
}

.hero h1 {
  margin: 0;
  font-size: 2.2em;
}

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

nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  padding: 10px 18px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #ffffff;
  color: #4a637d;
  border-color: #ffffff;
  transform: scale(1.05);
}

nav a:active {
  transform: scale(0.98);
}

@media (max-width: 600px) {
  nav a {
    padding: 8px 14px;
    font-size: 0.9em;
  }
}

.info-section {
  background-color: #f0ece3; /* heller, erdiger Hintergrund */
  padding: 80px 20px 80px 20px; /* normaler Innenabstand */
  margin-top: 120px; /* Abstand von der Navigation nach unten */
  text-align: center;
}

.info-section p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.2em;
  line-height: 1.8;
  color: #4a637d; /* Akzentfarbe Blau-Grau */
}




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

.section.alt {
  background-color: #e9e6df;
}

h2 {
  color: #4a637d; /* Akzentfarbe Blau-Grau */
  font-size: 2em; /* größer als vorher */
  margin-bottom: 20px;
  /* border-bottom entfernt */
  padding-bottom: 0;
}

@media (max-width: 600px) {
  h2 {
    font-size: 1.6em;
  }
}



.button {
  display: inline-block;
  margin-top: 20px;
  background-color: #4a637d;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
}

.button:hover {
  background-color: #32485e;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 10px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1em;
}

.contact-form button {
  margin-top: 20px;
  padding: 10px;
  border: none;
  background-color: #4a637d;
  color: white;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #32485e;
}

footer {
  background-color: #333;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9em;
}

footer a {
  color: #9ab6d4;
  text-decoration: none;
}

/* Lokale Fonts einbinden */
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* Anwendung auf die Webseite */
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

