/* ---------------------------------
   Gemeente West Betuwe - Complete CSS
   --------------------------------- */

/* Basisinstellingen */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f4f7f6;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column; /* Flex voor sticky footer */
}

/* Header */
header {
  background: linear-gradient(135deg, #007a40, #004d26);
  color: white;
  text-align: center;
  padding: 30px 15px;
}

header h1 {
  margin: 0;
  font-size: 2em;
  letter-spacing: 1px;
}

/* Navigatie */
nav {
  background-color: #004d26;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  display: block;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #007a40;
}

/* Hoofdcontent */
main {
  flex: 1; /* Zorgt dat main de beschikbare ruimte opvult */
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

main h2 {
  color: #007a40;
  border-bottom: 2px solid #007a40;
  padding-bottom: 8px;
}

main h3 {
  color: #004d26;
  margin-top: 20px;
}

/* Afbeeldingen */
img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Lijsten */
ul {
  list-style-type: square;
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* Knoppen */
button {
  background-color: #007a40;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

button:hover {
  background-color: #004d26;
}

/* Footer */
footer {
  text-align: center;
  background-color: #004d26;
  color: white;
  padding: 15px 0;
  font-size: 0.9em;
  margin-top: 30px;
}

/* Extra styling voor datum in footer */
#datetime {
  margin-top: 5px;
  font-size: 0.9em;
  color: #d3f0d8;
}

/* Responsieve opmaak */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5em;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #006b3f;
  }

  main {
    margin: 15px;
    padding: 15px;
  }
}
