/* Algemene stijlen */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
 background: #93c6d9;
    color: #fff;
    padding: 5px;
    text-align: center;
    border-top: 10px solid #e67764;
}

/* Flexbox container voor logo en titel */
.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stijl voor het logo */
.logo {
  max-height: 80px;
  margin-right: 20px;
  padding-top: 6px;
}

header h1 {
  margin: 0;
}

/* Main content */
main {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

/* Fotogalerij */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.gallery img {
  width: 300px;
  height: auto;
  margin: 10px;
  border-radius: 19px;
  border: 2px solid #e67764;
}

/* Taalsecties */
.content {
  margin-bottom: 30px;
}

.lang-section {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.lang-section h2 {
  color: #e67764;
}

/* Contactsectie */
.contact {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.contact h2 {
  color: #999B69;
}

.contact ul {
  list-style-type: none;
  padding: 0;
}

.contact li {
  margin: 10px 0;
}

/* Footer */
footer {
  background: #93c6d9;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-bottom: 10px solid #e67764;
}
