/* Algemene body styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #2b2b2b;
  color: #f0f0f0;
  padding-bottom: 120px; /* ruimte zodat content niet achter bottom-block valt */
}

/* Bottom block basis */
.bottom-block {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;              
  background-color: #2b2b2b;
  border-top: 2px solid #ccc;
  display: flex;              
  flex-direction: row;        /* standaard: img links, tekst rechts */
  align-items: center;        
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 9999;
}

.bottom-block.reverse {
  flex-direction: row-reverse; /* omgedraaid: tekst links, img rechts */
}

.bottom-block img {
  max-height: 75%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.bottom-block .bottom-text {
  font-size: 1.2em;
  color: #f0f0f0;
}



/* 📏 Tablet */
@media (max-width: 768px) {
  body {
    padding-bottom: 100px;
  }

  .bottom-block {
    height: 100px;
  }
}

/* 📱 Telefoon */
@media (max-width: 480px) {
  body {
    padding-bottom: 80px;
  }

  .bottom-block {
    height: 80px;
    padding: 5px; /* iets meer ademruimte */
  }

  .bottom-block img {
    max-width: none; /* laat afbeelding breder worden dan container */
    height: 100%;    /* schaalt mee in hoogte */
  }
  
  }
.bottom-block {
  justify-content: space-between; /* afbeelding links, tekst rechts */
  padding: 0 20px;
}

.bottom-block .bottom-text {
  font-size: 1.2em;
  color: #f0f0f0;
}

  /* speciaal voor about */
  .above-bottom-block {
  text-align: center;
  padding: 20px;
  color: #f0f0f0;
}

.above-bottom-block h2 {
  margin: 0 0 10px;
  font-size: 1.5em;
}

.above-bottom-block p {
  margin: 0;
  width: 100%;
  line-height: 1.8;
}
.above-bottom-block p img {
  vertical-align: middle;
  margin-right: 8px;
}





