/* Algemene body- en html-instellingen */
html, body {
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  min-height: 100vh;
  z-index: 0;
  background: none; /* voorkom dubbele achtergrond */
}

/* Achtergrondafbeelding met lichte overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/backgroun_light.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
 /* background-color: rgba(255, 255, 255, 0.2);  lichte waas */
 /* background-color: #f4eee7; */
 background-color: #f8f3ec;


  z-index: -1;
}

/* Pagina-opbouw: volledige hoogte + sticky footer */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.flex-grow-1 {
  flex: 1;
}

/* Header (hero) */
header {
  padding: 60px 0;
  text-align: center;
}

/* Slogan onder de titel */
.slogan {
  font-size: 1.5rem;
  font-style: italic;
  color: #555;
}

/* Afbeelding styling */
.intro-img {
  max-width: 100%;
  border-radius: 12px;
  margin: 20px 0;
}

/* Footer transparant of licht */
footer {
  background-color: transparent;
  color: white;
}




.card {
  min-height: unset;
  height: auto;
  display: block; /* geen flex nodig hier */
  /* background-color: #f4eee7; */
  background-color: #f8f3ec;

  border: 2px solid #ccc;
  border-radius: 0.75rem;
}



.card-body {
  flex-grow: 1;
  padding-bottom: 1rem; /* standaard is 1.25rem */
}
.card-body > :last-child {
  margin-bottom: 0; /* voorkomt extra ruimte onderaan de laatste lijst */
}

.card img {
  max-height: 160px;
  object-fit: contain;
  margin-top: 0.75rem;
  border-radius: 6px;
}


.dienst-foto {
  height: 180px; /* pas eventueel aan */
  object-fit: cover;
  object-position: center;
}
.no-bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.onderrand {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.onderrand img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 350px; /* pas aan naar de hoogte die jij mooi vindt */
  margin: 0; /* GEEN extra witruimte */
  padding: 0;
    opacity: 0.96;
}

.onderrand {
  position: relative;
  width: 100%;
  margin-top: 0;
  /* background-color: #f4eee7; */
  background-color: #f8f3ec;

  text-align: center;
  padding: 2rem 0; /* optioneel */
}
