/* ===============================
   Dienstleister Section
=================================*/
.dienstleister {
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem 1rem;
  margin: 2rem auto;
  border-radius: 1rem;
  border: 2px solid #D99C5B;
  max-width: 1200px;
  text-align: center;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.dienstleister__headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1F2937;
}

/* Grid Layout */
.dienstleister__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Einzelne Dienstleister-Karten */
.dienstleister__card {
  background: linear-gradient(135deg, #FFFFFF, #EEEEEE);
  border-radius: 1rem;
  border: 1px solid #D99C5B;
  padding: 1.25rem 1rem; /* etwas kompakter */
  text-align: center;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dienstleister__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Bilder */
.dienstleister__image {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #D99C5B;
  margin-bottom: 0.75rem;
}

/* Name & Kategorie */
.dienstleister__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.dienstleister__category {
  font-size: 0.95rem;
  color: #D99C5B;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Beschreibung */
.dienstleister__description {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* Kontakt-Items als Buttons */
.dienstleister__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem; /* enger zusammen */
  margin-top: 0.5rem;
}

.dienstleister__contact-item {
  font-size: 0.85rem;
  margin: 0;
}

.dienstleister__contact-item a {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  background: #D99C5B;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}

.dienstleister__contact-item a:hover {
  background: #FCCC70;
  color: #1F2937;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .dienstleister__headline {
    font-size: 2rem;
  }

  .dienstleister__grid {
    grid-template-columns: 1fr;
  }

  .dienstleister__card {
    padding: 1rem;
  }

  .dienstleister__image {
    width: 90px;
    height: 90px;
  }

  .dienstleister__contact {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dienstleister__contact-item a {
    width: 90%;
    max-width: 250px;
    margin: 0 auto;
  }
}
