/* Modernes, freundliches Farbschema und Layout für die Startseite */

.modern-hero {
  background: linear-gradient(120deg, #fbeee6 0%, #e6f0fb 100%);
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
}
.modern-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3a2e2e;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.modern-hero-content h2 {
  font-size: 1.3rem;
  color: #7a5c5c;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.modern-hr {
  width: 80px;
  height: 4px;
  background: #e6b7a9;
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}

.modern-main {
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
}

.modern-section {
  margin-bottom: 2.5rem;
}

.modern-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.modern-row.reverse {
  flex-direction: row-reverse;
}
.modern-img {
  flex: 1 1 300px;
  min-width: 220px;
  max-width: 420px;
}
.modern-img img {
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(80,60,60,0.10);
}
.modern-text {
  flex: 2 1 320px;
  font-size: 1.1rem;
  color: #3a2e2e;
  line-height: 1.7;
  background: rgba(255,255,255,0.7);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(200,180,180,0.07);
}

/* Leistungsübersicht */
.modern-services {
  text-align: center;
  margin-bottom: 2.5rem;
}
.modern-services h3 {
  font-size: 2rem;
  color: #3a2e2e;
  margin-bottom: 1.5rem;
}
.service-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  justify-content: stretch;
  margin-bottom: 1.2rem;
}
.service-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(180,160,160,0.10);
  padding: 0.7rem 0.5rem 1rem 0.5rem;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(180,160,160,0.18);
}
.service-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(180,160,160,0.10);
}
.service-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #7a5c5c;
  margin-bottom: 0.5rem;
  word-break: break-word;
  text-align: center;
}
.service-more {
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.35rem 0.7rem;
  background: #e6b7a9;
  color: #3a2e2e;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.service-more:hover {
  background: #c98c7a;
}
.service-locations {
  margin-top: 0.7rem;
  color: #7a5c5c;
  font-size: 1rem;
}

/* Kontakt CTA */
.modern-contact-cta {
  background: linear-gradient(90deg, #e6f0fb 0%, #fbeee6 100%);
  border-radius: 1.2rem;
  text-align: center;
  padding: 2.2rem 1rem 2.5rem 1rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 16px rgba(180,160,160,0.10);
}
.modern-contact-cta h3 {
  font-size: 1.7rem;
  color: #3a2e2e;
  margin-bottom: 0.7rem;
}
.modern-contact-cta p {
  color: #7a5c5c;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.contact-btn {
  display: inline-block;
  background: #e6b7a9;
  color: #3a2e2e;
  padding: 0.7rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.contact-btn:hover {
  background: #c98c7a;
}

/* Responsive */
@media (max-width: 800px) {
  .intro-block p {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
@media (max-width: 480px) {
  .modern-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .service-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .service-card {
    width: 85%;
    max-width: 300px;
  }
}
