body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #5a5a5a;
}

.navbar {
  background-color: #b0bfaa;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #5a5a5a;
}

.header {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.header-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

/* Logo */
.logo-bereich {
  text-align: center;
  padding: 20px 0;
}

.logo {
  max-width: 250px;
  height: auto;
}

/* About-Me */
.about-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

.profilbild {
  width: 250px;
  height: auto;
  border-radius: 8px;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  color: #5a5a5a;
  margin-top: 0;
}

.about-text p {
  line-height: 1.6;
}

.impressionen-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.impressionen-section h2 {
  color: #5a5a5a;
  margin-bottom: 20px;
}

.impressionen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 180px;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.impressionen-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.leistungen-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.leistungen-section h2 {
  color: #5a5a5a;
  margin-bottom: 20px;
}

.leistungen-liste {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.leistungen-liste li {
  position: relative;
  padding: 10px 20px;
  margin-bottom: 15px;
  border-left: 3px solid #b0bfaa;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s;
}

.leistungen-liste li:hover {
  background-color: #eef0ed;
}

.bullet {
  width: 10px;
  height: 10px;
  background-color: #5a5a5a;
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 22px;
}

.leistungen-liste span {
  font-weight: bold;
  color: #5a5a5a;
}

.leistungstext {
  display: none;
  margin-top: 8px;
  color: #333;
  line-height: 1.5;
}

.kontakt-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.kontakt-section h2 {
  color: #5a5a5a;
  margin-bottom: 20px;
}

.kontakt-formular {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.kontakt-formular label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #5a5a5a;
}

.kontakt-formular input,
.kontakt-formular textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.kontakt-formular button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #b0bfaa;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.kontakt-formular button:hover {
  background-color: #9aaa97;
}

.footer {
  background-color: #5a5a5a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  flex-wrap: wrap;
}

.footer-spalte {
  flex: 1 1 30%;
  text-align: center;
  margin-bottom: 10px;
}

.footer-logo {
  max-height: 60px;
  filter: brightness(0) invert(1); /* Entferne diesen Filter, falls Logo negativ wirkt */
}

.kontakt-info a {
  color: #fff;
  text-decoration: none;
}

.kontakt-info a:hover {
  text-decoration: underline;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-button {
  background-color: #b0bfaa;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.footer-button:hover {
  background-color: #9aaa97;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
}

