/* ===============================
   Download pagina – Anda stijl
   =============================== */

/* Hero blok */
.hero-download {
  min-height: 45vh;
  background: #6174ab; /* consistent zacht blauw */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-download .overlay {
  color: white;
  padding: 3rem;
  border-radius: 12px;
  max-width: 850px;
}

.hero-download h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-download p {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Main secties */
main {
  text-align: center;
  padding: 0 2rem;   /* bovenruimte weg, zijkanten houden */
  max-width: var(--max-width);
  margin: auto;
}

/* Secties */
.download-section {
  margin-bottom: 4rem;
  text-align: left;
}

.download-section h2 {
  color: var(--blue);
  margin-bottom: 1rem;
  text-align: center;
}

.download-section p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.7;
}

.detail-list {
  max-width: 700px;
  margin: 1rem auto 2rem auto;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.6;
}

.detail-list li {
  margin: 0.5rem 0;
  list-style: disc;
  margin-left: 1.5rem;
}

/* Grote knoppen grid */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.big-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.2s ease, background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.big-btn:hover {
  background: var(--dark);
  transform: translateY(-4px);
}

/* Boeken dropdown */
.book-download {
  margin-bottom: 2rem;
  text-align: center;
}

.book-download label {
  margin-right: 0.5rem;
  font-weight: bold;
  color: var(--blue);
}

.book-download select {
  padding: 0.5rem 1rem;
  border: 2px solid var(--blue);
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}
