/* Body */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #f8f5f0;
  color: #333;
  line-height: 1.6;
}

.inbo {
  background-color: #444;
}

/* Alle pagina's tekst */
ul {
  margin-left: 10px;
  list-style-type: square;
  padding: 15px 20px;
  background-color: #fff;
  max-width: 600px;
  border-left: 5px solid #d2b48c;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
}

li {
  margin-left: 20px;
  margin-bottom: 10px;
}

h2 {
  margin-left: 10px;
}

p {
  margin-left: 10px;
}

/* Historische content styling */
.dep {
  max-width: 800px;
  background-color: #fff;
  padding: 15px;
  border-left: 5px solid #d2b48c;
}

.lijntjevoorh2 {
  color: #6b3e26;
  border-bottom: 2px solid #d2b48c;
  padding-bottom: 5px;
  margin-top: 0;
  font-size: 1.4em;
}

/* Header nav bar*/

header {
  background-color: #333;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000; 
  border: none;
  box-shadow: none;
  background: linear-gradient(45deg, #484646, #000000);
}

nav {
  display: flex;
  gap: 1rem;
  border: none;
  box-shadow: none;
}

nav a.active { 
  /* zorgt ervoor dat er als je op een pagina komt door op een ding in nav te klikken dat je dan ziet waar je bent */
  color: #d2b48c;
  font-weight: 600;
  text-decoration: underline;
}

.logo {
  font-size: 1.5rem;
}
  
nav a {
  color: white;
  text-decoration: none;
}
  
nav a:hover {
  color: #fff;
  text-decoration: underline;
}
  
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* grote foto gedeelte */
.Voorfoto {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.Voorfoto img {
  width: 100%;
  height: 140vh;
  object-fit: cover;
  object-position: top; /* zorgt ervoor dat de foto altijd bovenaan staat */
  display: block;
}

.hero {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparant zwart */
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
}

.hero h1 {
  font-size: 3em;
  margin: 0;
}


.lijntje {
  border-bottom: 2px solid #d2b48c;
  /* geeft lijn onder de titel */
}

.hometekst {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparant zwart */
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 1.3em;
  z-index: 20;
  max-width: 80%;
  text-align: center;
}



.button-container {
  display: flex;
  gap: 20px;
  justify-content: center; /* Dit centreert de buttons horizontaal */
  align-items: center; /* Dit centreert de buttons verticaal als nodig */
}

.button {
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  background-color: #d2b48c; /* Beige kleur die harmonieert met de rest van het palet */
  color: white;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #bfa47c; /* Een subtiele, donkerdere beige tint voor hover */
}

/* review gedeelte */
.review-box {
  background-color: #fff;
  margin: 20px;
  padding: 15px;
  border: 2px solid #d2b48c;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.review-text {
  flex: 1;
}

.review-text ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.review-text li {
  margin-bottom: 10px;
}

.koppenmens {
  max-width: 100px;
  height: auto;
  border: 2px solid #d2b48c;
  padding: 5px;
}

.koppenmens {
  border-radius: 50%;
}

/* footer  */
footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 7px 0;
}

footer p {
  font-size: 0.9em;
}

/* media queries */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 999;
  }

  nav.show {
    display: flex;
  }

  nav a {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #444;
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: block;
  }

  .Voorfoto img {
    height: 100vh;
    object-position: center;
  }

  .hero h1 {
    font-size: 2em;
    -webkit-text-stroke: 1px black;
  }

  .hometekst {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    font-size: 1em;
    margin: 20px auto;
    width: 90%;
    padding: 15px 20px;
    border-radius: 12px;
  }

  .review-content {
    flex-direction: column;
    align-items: center;
  }

  .koppenmens{
    max-width: 150px;
    margin-bottom: 15px;
  }

  h2 {
    font-size: 1.2em;
  }

  .review-box {
    margin: 15px;
    padding: 12px;
  }

  .logo {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5em;
    -webkit-text-stroke: 0.5px black;
  }

  .hometekst {
    font-size: 0.95em;
    padding: 12px 16px;
    border-radius: 10px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .koppenmens {
    float: none;
    margin-left: 2.5%;
    width: 40%;
    max-height: 200px;
  }

  .Voorfoto img {
    height: auto;
    max-height: 90vh;
  }

  footer p {
    font-size: 0.8em;
  }

  .dep,
  ul {
    padding: 10px;
    font-size: 0.95em;
  }

  h2 {
    font-size: 1em;
  }

  .review-box {
    margin: 10px;
    padding: 10px;
  }

  .review-text {
    font-size: 0.9em;
  }

  li {
    font-size: 0.95em;
  }
}