@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: black;
  background-image: url('backgroundAbout.jpg');
  background-size: 25%;
  background-repeat: no-repeat;
  background-position: right;
  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 {
  padding-bottom: 150px;
}

.inhoud {
  position: absolute;
  text-align: left;
  font-size: 20px;
  top: 200px;
  left: 10%;
  width: 50%;
  background-color: rgba(0,0,0, 0.25);
  color: white;
  padding: 15px;
  border-radius: 10px;
  padding-right: 75px;
  z-index: 1;  
}
.inhoud h1 {
  padding: 20px;
}
.inhoud p {
  margin-bottom: 20px;
}
.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;
  z-index: 100;
}

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('backgroundAbout.jpg');
      background-repeat: no-repeat;
      background-position: left top;
      background-size: 40%; 
      min-height: 200px; 
      position: relative; 
      z-index: 0;
  }

  header {
    right: 10px;
    top: 10px;
  }

  header img {
    height: 170px;
  }

  .inhoud {
    width: 90%;
    padding-right: 0px;
    padding-top: 0px;
    padding-left: 0px;
    font-size: 16px;
    text-align: left;
    left: 20px;
  }

  .menu a{
    padding: 5px;
  }

  .quote {
    text-align: center;
    padding-top: 20px;
    margin: 0px 0px 0px 0px;
  }
  footer {
    padding: 0px 0px 2px 0px;
  }

  footer .socials {
    justify-content: center;
  }

  footer .socials img {
    width: 25px;
    height: 25px;
    transition: transform 0.2s ease;
  }


}
