@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  background: #fef8e0;
  color: #4b2e0e;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0;
}

.navbar {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background-color: #8b4513;
}

.nav-logo {
  max-height: 55px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding-left: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #69320b;
  color: #fff8f0;
}

.container {
  flex: 1;
  max-width: 900px;
  margin: 40px auto;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 15px;
}

.intro-text {
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #7a5530;
}

.image-gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.image-gallery img {
  max-width: 48%;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(139, 69, 19, 0.3);
  object-fit: cover;
  height: auto;
}

/* Responsive voor smalle schermen */
@media (max-width: 600px) {
  .image-gallery img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

footer {
  background-color: #8b4513;
  color: #b87c37;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: auto;
}
