/* Grundlayout */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

/* Bild */
.intro-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  margin-top: 10px; /* Platz unter der fixen Menüleiste 44 */
}

.intro-image {
  max-width: 50vw;
  height: auto;
  width: auto;
}
/* Textbereich */
.intro-text-section {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 1500px;
  margin: 0 auto;
}

.intro-text-section h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.intro-text-section p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #555;
}

.intro-description {
  max-width: 1500px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}

.intro-description h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

.site-footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #888;
  margin-top: 4rem;
}

.site-footer hr {
  border: none;
  border-top: 1px solid #eee;
  margin-bottom: 1rem;
  width: 90%;
}

.site-footer a {
  color: #666;
  text-decoration: none;
  margin: 0 8px;
}

.site-footer a:hover {
  text-decoration: underline;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
}
