/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; background: #fff; color: #333; font-size: 16px; line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; }

/* ── NAV ── */
nav { background: #2c3e50; position: sticky; top: 0; z-index: 100; width: 100%; }
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1rem; flex-wrap: wrap; min-height: 56px;
}
.nav-brand { color: #fff; text-decoration: none; font-weight: bold; font-size: 1.05rem; padding: 0.75rem 0; white-space: nowrap; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 0.75rem 0; background: none; border: none;
}
.nav-toggle span { display: block; width: 25px; height: 2px; background: #fff; border-radius: 2px; }
.nav-links { list-style: none; display: flex; flex-wrap: wrap; }
.nav-links a {
  display: flex; align-items: center;
  color: #ecf0f1; text-decoration: none;
  padding: 1rem 0.85rem; font-size: 0.9rem;
  min-height: 44px; white-space: nowrap;
  transition: background 0.2s;
}
.nav-links a:hover { background: #34495e; }
.nav-links a.active { background: #1a252f; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; flex-direction: column; width: 100%; border-top: 1px solid #34495e; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 1.2rem; border-bottom: 1px solid #34495e; }
}

/* ── CONTACT SECTIE ── */
.contact-sectie { background: #2c3e50; color: #fff; padding: 3.5rem 1.5rem; }
.contact-inner  { max-width: 1100px; margin: 0 auto; }
.contact-inner h2 { font-size: clamp(1.2rem, 3vw, 1.7rem); margin-bottom: 0.4rem; }
.contact-inner h2 a { color: #fff; text-decoration: none; }
.contact-inner h2 a:hover { text-decoration: underline; }
.contact-details { margin: 1rem 0 1.8rem; display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.95rem; color: #b0c4d8; }
.contact-details a { color: #8ecfef; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

.openings-wrap h3 { font-size: 1rem; color: #ecf0f1; margin-bottom: 0.8rem; }
.openings-table { border-collapse: collapse; width: 100%; max-width: 340px; }
.openings-table tr { border-bottom: 1px solid rgba(255,255,255,0.1); }
.openings-table tr:last-child { border-bottom: none; }
.openings-table td { padding: 0.5rem 0; font-size: 0.88rem; color: #b0c4d8; }
.openings-table td:first-child { width: 50%; color: #ecf0f1; font-weight: 500; }
.gesloten { color: #e87474 !important; }

/* ── FOOTER ── */
footer { background: #1a252f; color: #888; text-align: center; padding: 1.2rem 1rem; font-size: 0.82rem; }
footer a { color: #aaa; text-decoration: underline; cursor: pointer; margin-left: 0.5rem; }
footer a:hover { color: #fff; }

/* ── MODAL VOORWAARDEN ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 9999; align-items: flex-start; justify-content: center; padding: 2rem 1rem; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: 8px; max-width: 800px; width: 100%; padding: 2rem; position: relative; color: #333; margin: auto; }
.modal-close { position: absolute; top: 0.8rem; right: 1rem; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: #555; line-height: 1; }
.modal-close:hover { color: #000; }
.modal-box h2 { font-size: 1.3rem; margin-bottom: 1rem; color: #2c3e50; }
.modal-box h3 { font-size: 0.95rem; margin: 1.2rem 0 0.3rem; color: #2c3e50; }
.modal-box p  { font-size: 0.8rem; line-height: 1.75; color: #555; }
