/* Grundlegendes Reset und Box-Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basis-Styling für den Body */
body {
  font-family: Helvetica, Arial, sans-serif;
  /* Hintergründe in einem dynamischen Pastell-Farbverlauf */
  background: linear-gradient(45deg, #FAD7D7, #FBCEB1, #FFC0CB);
  background-size: 600% 600%;
  animation: gradientAnimation 15s ease infinite;
  color: #333;
  line-height: 1.6;
}

/* Animation für den Farbverlauf */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header und Navigation */
header {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.main-nav {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.main-nav li a {
  text-decoration: none;
  color: #333;
  padding: 0.5rem;
  transition: color 0.3s;
}

.main-nav li a:hover {
  color: #a83258;
}

/* Hero-Bereich */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 8px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
}

/* Beispielhafter Content-Bereich */
section#dienstleistungen {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 8px;
}

section#dienstleistungen h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  text-align: center;
  border-top: 1px solid #eaeaea;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-nav li a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}

.footer-nav li a:hover {
  color: #a83258;
}
