body {
  margin: 0;
  padding: 0;
  background-color: #555;
  font-family: Verdana, sans-serif;
}

h1 {
  font-size: 60px;
  font-family: Brush Script MT, cursive;
  color: #BBA53D;
}

h2 {
  font-size: 30px;   
  font-family: Verdana, sans-serif;
  color: #BBA53D;
}

p {
  padding: 20px;
  font-size: 14px;
  font-family: Verdana, sans-serif;
  text-align: justify;
  line-height: 25px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  padding: 0 20px;
  height: 120px;
  border-bottom: 3px solid #BBA53D;
  position: sticky;
  top: 0;
  z-index: 20;
}

.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;
}

.info-container {
  display: flex;
  gap: 30px;
  padding: 20px 40px; 
  margin-top: 0; 
}

/* dit zorgt ervoor dat de sidebar met de verwijzingen op de informatie boxen mooi is */
.sidebar {
  min-width: 220px;
  background: #333;
  padding: 25px;
  border-radius: 14px;
  border: 2px solid #BBA53D;
  position: sticky;
  top: 140px;
  height: fit-content;
  align-self: flex-start; 
}

.sidebar h3 {
  color: #BBA53D;
  font-size: 22px;
  margin-bottom: 15px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 12px;
}

.sidebar ul li a {
  color: #6c757d;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.sidebar ul li a:hover {
  color: #BBA53D;
}

/* dit is de code voor de stijl van de informatie boxen */
.info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #e0e0e0;
  padding: 25px;
  border-radius: 20px;
  border: 2px solid #BBA53D;
  transition: all 0.3s ease;
  scroll-margin-top: 140px; 
}

.info-card h2 {
  font-size: 22px;
  font-weight: 600;
  color: #BBA53D;
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: 2px solid #BBA53D;
  padding-bottom: 5px;
}

.info-card p, .info-card ul {
  font-size: 14px;
  color: #222;
  margin: 10px 0 0;
}

.info-card ul {
  padding-left: 20px;
}

.info-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

article {
  flex: 3;
  background-color: #555;
  padding: 10px;
}

footer {
  background-color: #333;	
  padding: 5px;
  text-align: center;
  color: #BBA53D;
  margin-top: 40px;
}

header.home, header {
  position: relative;
  height: auto;
  padding: 40px 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    padding: 20px;
  }

  .sidebar {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }

  .nav-links a {
    font-size: 28px;
    margin-left: 15px;
    padding: 6px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

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