/* Hero Banner Basis */
.hero-banner {
  display: flex;
  flex-direction: column; /* tekst boven afbeelding */
  align-items: center;    /* horizontaal centreren */
  justify-content: center; /* verticaal centreren (indien parent fullscreen is) */
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

/* Koptekst */
.hero-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff; /* wit */
}

/* Afbeelding */
.hero-banner img {
  max-width: 400px; /* afbeelding kleiner maken */
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px; /* optioneel, afgeronde hoeken */
}

/* Omschrijving */
.hero-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.6;
  color: #fff; /* wit */
}

/* Hero Container Basis */
.hero-container {
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

/* Omschrijving */
.hero-container-text {
  margin-bottom: 40px;
}

.hero-container-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Galerij */
.hero-container-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.hero-container-gallery .gallery-item {
  flex: 1 1 200px;
  max-width: 250px; /* max breedte per item */
}

.hero-container-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  justify-items: center; /* inhoud centreren in grid */
  text-align: center;    /* tekst centreren */
}

/* Grid item */
.content-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* alles horizontaal in het midden */
  background: transparent; /* geen achtergrond */
  color: #fff; /* tekst wit */
}

/* Image */
.content-grid-image img {
  max-width: 300px;  /* maak de afbeelding wat kleiner */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Body */
.content-grid-body {
  max-width: 600px;
}

.content-grid-body h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff; /* witte titel */
}

.content-grid-body p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff; /* witte tekst */
}