/* ── Gedeelde footer — kinderboekcreatie.nl ── */
.footer {
  background: #fff;
  border-top: 1px solid #e8d8c8;
  padding: 24px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 540px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2020;
  text-decoration: none;
}
.footer-logo svg { width: 20px; height: 20px; }
.ideeen-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f5f0eb;
  color: #3a2a20;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid #ddd0c0;
  transition: background 0.18s;
  cursor: pointer;
  font-family: inherit;
}
.ideeen-btn:hover { background: #ece5de; }
.ideeen-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-copy {
  font-size: 0.78rem;
  color: #b0988a;
  text-align: center;
  margin-top: 14px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-copy a { color: #b0988a; text-decoration: underline; }

/* ── Ideeënbus modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
}
.modal-close:hover { color: #444; }
.modal-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2020;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 0.9rem;
  color: #7a6858;
  margin-bottom: 20px;
  line-height: 1.6;
}
.modal-textarea {
  width: 100%;
  height: 100px;
  border: 1.5px solid #e2d8d0;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #2c2020;
  caret-color: #333;
  background: #fff;
  resize: vertical;
  outline: none;
  transition: border-color 0.18s;
  box-sizing: border-box;
}
.modal-hp { position: absolute; left: -9999px; }
.modal-textarea:focus { border-color: #0d9488; }
.modal-send {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: #0d9488;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.modal-send:hover { background: #0f766e; }
