@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #fef8e0;
  color: #4b2e0e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigatiebalk */
.navbar {
  height: 60px; /* Behoud vaste hoogte voor de balk */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background-color: #8b4513;
}

.nav-logo {
  max-height: 55px; /* Iets groter, maar past binnen de balk */
  height: auto;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 5px 10px;
  border-radius: 3px;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #69320b;
  color: #fff8f0;
}

/* Hoofdinhoud */
.page-logo {
  width: 200px; /* Groter formaat dan in de navbar */
  margin: 20px auto 30px;
  display: block;
}

.container {
  flex: 1;
  max-width: 600px;
  margin: 60px auto 40px;
  text-align: center;
  padding: 0 20px;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 10px;
}

p.tagline {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-style: italic;
  color: #7a5530;
}

a.button {
  background-color: #8b4513;
  color: #fff;
  text-decoration: none;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: inline-block;
  font-size: 1.1rem;
}

a.button:hover {
  background-color: #69320b;
}

/* Footer */
footer {
  background-color: #8b4513;
  color: #b87c37;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: auto;
}
