/* Voor alle paragrafen (bodytekst) */
body {
    font-family: 'Playfair Display Regular', sans-serif;
    font-weight: 400; /* normaal gewicht */
}

/* Voor alle kopteksten */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display Regular', sans-serif;
    font-weight: 400;
}

/* Optioneel: links of specifieke elementen */
a {
    font-family: 'Playfair Display Regular', sans-serif;
}
/* ===== Compacte footer met 3 kolommen + copyright onderaan ===== */

@media (max-width: 768px) {
  /* De hoofdfooter-sectie */
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  /* De container die de kolommen bevat */
  footer .wp-block-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    width: 100%;
    justify-items: center;
  }

  /* Logo + tekst bovenaan over volledige breedte */
  footer .wp-block-column:first-child {
    grid-column: span 3;
  }

  /* De 3 informatieblokken naast elkaar */
  footer .wp-block-column:nth-child(2),
  footer .wp-block-column:nth-child(3),
  footer .wp-block-column:nth-child(4) {
    grid-column: span 1;
  }

  /* Copyright-tekst onderaan, buiten de grid */
  footer > p,
  footer > small {
    margin-top: 15px;
    text-align: center;
    width: 100%;
  }

  /* Logo netjes kleiner */
  footer img {
    max-width: 140px;
    height: auto;
  }

  /* Tekst compacter */
  footer p {
    margin-bottom: 10px;
  }

  /* Links netjes onder elkaar */
  footer a {
    display: block;
    margin: 3px 0;
  }
/* Beperk de afbeeldingsgrootte binnen kolommen op mobiel */
@media (max-width: 768px) {
  .wp-block-column img {
    max-width: 80%;
    height: auto;
    margin: 0 auto 15px;
    display: block;
  }
}
@media (max-width: 768px) {
  .wp-block-column {
    height: auto !important; /* voorkomt dat tekst buiten het blok valt */
    padding: 10px 0;
    text-align: center;
  }

  .wp-block-column h2,
  .wp-block-column h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .wp-block-column p {
    margin: 0 auto 10px;
    line-height: 1.5;
    max-width: 90%;
  }

button,
.wp-block-button__link,
a.button,
a.wp-block-button__link,
.elementor-button {
  text-transform: none !important;
}

