@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.mobile-background-header {
  display: none;
}
html, body {
  height: 100%;
}

body {
  background-image: url('backgroundF.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position:  bottom left;
  background-size:contain;
  background-color:black;
  font-family: 'Questrial', Arial, sans-serif;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

header {
  position: absolute;
  top: 20px;
  right: 20px;
}

header img {
  height: 250px;
  width: auto;
}
main {
}

.inhoud {
  position: absolute;
  text-align: left;
  font-size: 20px;
  top: 200px;
  left: 30%;
  right: 17%;
  color: white;
  background-color: rgba(0,0,0, 0.25);
  padding: 15px;
  border-radius: 10px;
}
.inhoud h1 {
  padding: 20px;
}
.inhoud h2 {
  font-size: 22px;
  padding: 10px;
}

.inhoud ul {
  list-style: none;
  padding-top: 5px;
}
.inhoud a {
  color: white;
  text-decoration: none;
}
.inhoud a:hover {
  font-weight: bold;
}

.menu ul{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
}

.menu a{
  color: white;
  text-decoration: none;
  padding: 15px;
  display: block;
}

.menu a:hover{
  font-weight: bold;
}

.menu li{
  float: left;
}

.quote{
  text-align: right;
  padding-top: 50px;
  margin-right: -100px;
  font-style: italic;
  color: #527672;
  padding-bottom: 75px;
}

footer {
  padding: 20px;
  width: 100%;
  position: fixed;
  background: black;
  right: 0px;
  bottom: 0px;
}
footer .socials {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

footer .socials img {
  width: 40px;
  height: 40px;        /* gelijke hoogte forceren */
  object-fit: contain; /* behoud verhoudingen */
  transition: transform 0.2s ease;
}

footer .socials img:hover {
  transform: scale(1.1);
}




/* Responsive voor mobiel */
@media (max-width: 768px) {
  body{
    background-image: none;
  }

  .mobile-background-header {
      display: block; 
      width: 100%; 
      background-image: url('backgroundF.jpg');
      background-repeat: no-repeat;
      background-position: top left;
      background-size: 120%; 
      min-height: 250px; 
      position: relative; 
      z-index: 0;
  }
  header {
    right: 10px;
    top: 10px;
  }

  header img {
    height: 170px;
  }

  .inhoud {
    padding-right: 0px;
    padding-top: 0px;
    padding-left: 0px;
    font-size: 16px;
    text-align: left;
    left: 20px;
    width: 90%;
  }

  .menu a{
    padding: 5px;
  }

  .quote {
    text-align: center;
    padding-top: 20px;
    margin: 0px 0px 0px 0px;
  }
  footer {
    padding: 0px 0px 2px 0px;
    text-align: center;
  }

footer .socials{
        justify-content: center;
  }

  footer .socials img {
    width: 25px;
    height: 25px;
    transition: transform 0.2s ease;
  }

}
