body {
  margin: 0;
  padding: 0;
  background-color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* dit zijn de verschillende lettertypen die ik heb gemaakt */
h1 {
  font-size: 40px;
  font-family: Brush Script MT, cursive;
  margin: 0; /* voorkomt extra ruimte */
}

h2 {
  font-size: 30px;   
  font-family: Verdana, sans-serif;
  margin: 0;
}

h3 {
  font-size: 20px;
  font-family: Verdana, sans-serif;
  color: #333;
  margin: 0;
} 

p {
  padding: 20px;
  font-size: 20px;
  font-family: Verdana, sans-serif;
  text-align: justify;
  line-height: 25px;
  color: #333;
  margin: 0; /* voorkomt extra ruimte boven en onder p */
}

/* dit is hoe de knop eruit gaat zien die in een van de boxen is geschreven */
.btn {
  background-color: #BBA53D;
  color: black;
  font-size: 13px;
  padding: 4px;
  text-align: center;
  text-decoration: none;
  border: #BBA53D;
  border-radius: 5px;
  cursor: pointer;
}

/* dit is de animatie van de knop als je erover heen hovert met je muis */
.btn:hover {
  background-color: #660708;
}

/* dit is de code voor de boxen waar de grote lappen tekst in zitten */
.container {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 20px 0;
}

.box {
  width: 400px;
  height: 320px;
  background: #e0e0e0;
  padding: 20px;
  border-radius: 20px;
  border-color: #BBA53D;
  border-style: solid;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.box:hover {
  transform: scale(1.05);
}

/* css voor de header, hier komt alles om de header op maat te maken */
header.home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

header {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  z-index: -1;
}

.header-content {
  position: relative;
  color: #BBA53D;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.header-content h1 {
  font-size: 60px;
  margin: 0;
}

.content {
  padding: 50px;
}

/* css voor de navbar, hier is alles om het mooi te maken */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  padding: 0 20px;
  height: 120px;
  border-bottom: 3px solid #BBA53D;
}

.logo img {
  height: 90px;
  width: auto;
}

.nav-links a {
  color: #BBA53D;
  text-decoration: none;
  margin-left: 25px;
  font-size: 40px;
  padding: 10px;
  transition: 0.3s;
  font-family: Brush Script MT, cursive;
}

.nav-links a:hover {
  background: #111;
  border-radius: 8px;
}

/* dit is het gebied waar de boxen en de tekst zitten */
article {
  flex: 1; 
  margin: 0;
  padding: 0;
  background-color: #555;
}

/* dit maakt de footer mooi */
footer {
  height: 50px;
  bottom: 0;
  background-color: #333;	
  padding: 5px;
  text-align: center;
  color: #BBA53D;
}

/* dit is wat de tabel mooi maakt en opmaat maakt in het gegeven gebied */
.info-block {
  display: flex;
  background-color: #e0e0e0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-radius: 20px;
  border-color: #BBA53D;
  border-style: solid;
  overflow: hidden;
  width: 900px;
  height: auto;
  margin: 20px auto;
}

.info-block .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.info-block .column:first-child {
  padding-left: 40px;
}

.info-block .column p {
  margin: 5px 0;
  color: #555;
}

.info-block table {
  width: 100%;
  border-collapse: collapse;
}

.info-block table tr:nth-child(even) {
  background-color: #e0e0e0;
}

.info-block table tr:nth-child(odd) {
  background-color: #f5f5f5;
}

.info-block table td {
  padding: 10px;
  text-align: center;
  transition: transform 0.2s, background-color 0.2s;
  cursor: default;
  font-family: Verdana, sans-serif;
}

/* dit is de animatie die gebeurd als je erover hovert met je muis */
.info-block table td:hover {
  transform: scale(1.05);
  background-color: #BBA53D;
}

/* dit zorgt vopr de responsiveness van de website */
@media (max-width: 768px) {
  .info-block {
    flex-direction: column;
    width: 90%;
  }
  .info-block .column {
    padding: 15px;
  }
	h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 12px;
    padding: 10px;
  }
}