/*
 * Stijlen voor de Lousberg familie website.
 * Dit stylesheet definieert de kleuren, typografie en lay‑out
 * voor de verschillende pagina's binnen de site. Het ontwerp is
 * warm en uitnodigend en gebruikt tinten die passen bij het logo.
 */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f6f0e8; /* zacht beige als achtergrondkleur */
  color: #333;
}

header {
  background-color: #2b5250; /* hoofdtoon gebaseerd op het logo */
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
}

header .logo img {
  height: 60px;
  margin-right: 20px;
}

/* Maak een grote versie van het logo zichtbaar in de hero wanneer de site
 * nog in aanbouw is. Deze klasse kan worden gebruikt om het logo prominent
 * naar voren te brengen zonder de navigatie te beïnvloeden. */
.logo-large img {
  height: 160px;
  width: auto;
  display: block;
  margin: 0 auto 20px auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin-right: 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

nav ul li a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.hero {
  background-color: #e8dfd1; /* lichtere tint voor hero sectie */
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #2b5250;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

section {
  padding: 40px 20px;
}

section h2 {
  color: #2b5250;
  margin-bottom: 20px;
}

section p {
  line-height: 1.6;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1 1 calc(33% - 40px);
  min-width: 220px;
}

.card h3 {
  margin-top: 0;
  color: #2b5250;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table th, table td {
  border: 1px solid #ddd;
  padding: 8px;
}

table th {
  background-color: #2b5250;
  color: #fff;
  text-align: left;
}

footer {
  background-color: #2b5250;
  color: #fff;
  padding: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  nav ul li {
    margin: 10px 0;
  }
  .cards {
    flex-direction: column;
  }
}