/* style.css */

body {
    margin: 0;
    padding: 0;
    background-image: url('background.png');
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    font-family: Georgia;
    color: #333;
  }
  
  img.logo {
    display: block;
    margin: 30px auto 0 auto;
    width: 80%; /* standaard voor mobiel */
  }
  
  @media (min-width: 768px) {
    img.logo {
      width: 40%; /* voor tablets en desktops */
    }
  }
  
.balk {
  width: 100%;
  height: 50px;
  background: linear-gradient(to left, #D0A761, #b98a3c); /* goud links, donkerder rechts */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2.0rem;
  color: #f1e4d3;
  font-family: 'Segoe UI';
  font-weight: bold;
  border-radius: 10px;
  text-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  padding-left: 30px;
}

.balk2 {
  width: 100%;
  height: 50px;
  background: linear-gradient(to left, #D0A761, #b98a3c); /* zelfde aanpassing */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2.0rem;
  color: #f1e4d3;
  font-family: 'Segoe UI';
  font-weight: bold;
  border-radius: 10px;
  text-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  padding-left: 30px;
}
  
  .openingstijden {
    margin: 30px auto;
    max-width: 400px;
    /* background: rgba(255, 255, 255, 0.8); */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .openingstijden p {
    margin: 5px 0;
  }
  
  .openingstijden strong {
    display: inline-block;
    width: 100px;
  }
  
  .prijslijst {
    max-width: 800px;
    margin: 30px auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .kolom {
    flex: 1 1 300px;
  }
  
  .kolom p {
    margin: 6px 0;
  }
  
  .foto-galerij {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 20px;
    margin: 40px auto;
    flex-wrap: wrap;
    padding: 0 20px;
  }
  
  .foto {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    object-fit: cover;
  }
  

  .foto.portrait {
    width: 200px;
    height: 300px;
  }

  .foto.landscape {
    width: 300px;
    height: 200px;
  }
  
  .contact-info {
    margin-top: 50px;
    height: auto;
    padding: 20px 10px;
  }
  
  .contact-wrapper {
    text-align: center;
    color: #f1e4d3;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .contact-wrapper p {
    margin: 5px 0;
  }
  .whatsapp-knop,
  .maps-knop {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .maps-knop {
    top: 90px; /* afstand onder WhatsApp-icoon */
  }
  
  .whatsapp-knop img,
  .maps-knop img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  
  .whatsapp-knop img:hover,
  .maps-knop img:hover {
    transform: scale(1.1);
  }
  