
/* === DIENSTEN.CSS (GECOMBINEERD) === */

/* Hero sectie bovenaan de dienstenpagina */
.services-hero {
  background: linear-gradient(180deg, #eaddd0 0%, #f6f1ec 100%);
  text-align: center;
  padding: 100px 20px 60px;
  margin-top: 60px;
}

.services-hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: #5A7D57;
  margin-bottom: 10px;
}

.services-hero p {
  font-size: 20px;
  color: #4a3f35;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards container */
.services-cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Eén horizontale kaart */
.service-card-horizontal {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Afbeelding links */
.service-card-horizontal img {
  width: 100%;
  max-width: 400px;
  object-fit: scale-down;
  transition: transform 0.3s ease;
}

.service-card-horizontal img:hover {
  transform: scale(1.02);
}

/* Tekstgedeelte */
.service-text {
  flex: 1;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-text h2 {
  font-size: 28px;
  color: #5A7D57;
  margin-bottom: 18px;
}

.service-text p {
  font-size: 18px;
  color: #4a3f35;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-text li {
  font-size: 17px;
  color: #4a3f35;
  margin-bottom: 10px;
}

/* Italic afsluiter */
.coaching-focus {
  font-style: italic;
  color: #4a3f35;
  font-size: 17px;
}

/* Fade-in animatie */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease-in-out forwards;
}
.contact-button {
  display: inline-block;
  width: 25%;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background-color: #5A7D57;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #013f19;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsief gedrag */
@media (max-width: 900px) {
  .service-card-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .service-card-horizontal img {
    max-width: 100%;
    height: auto;
  }

  .service-text {
    padding: 25px;
  }

  .service-text h2 {
    font-size: 24px;
  }

  .service-text p,
  .service-text li,
  .coaching-focus {
    font-size: 16px;
  }
}
