/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== BODY ========== */
body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

/* ========== HEADER ========== */
.header {
  background: #4f46e5;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ========== SECTIONS ========== */
section {
  padding: 60px 20px;
  min-height: 100vh;
}

.content {
  position: relative;
}

/* ========== LAYOUT: HOME PAGE ========== */
.page {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Reclameblokken – KLEINER dan cards */
.reclame {
  flex-basis: 220px;        /* <<< KLEINER GEMAAKT */
  background: #000563;
  color: white;
  padding: 15px;
  border-radius: 8px;
}

.reclame img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.reclame button {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.reclame button:hover {
  background: #4338ca;
}

/* Middenkolom */
.content-container {
  flex-grow: 2;
}

.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
justify-content: space-evenly;
}

.card {
  background: white;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

/* ========== CONTACTFORMULIER ========== */
.contact-section {
  min-height: auto;
}

.contact-card {
  border-top: 6px solid #4f46e5;
}

.contact-card .form-label,
.contact-card .form-check-label {
  font-weight: 600;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.contact-card .btn-primary {
  background-color: #4f46e5;
  border-color: #4f46e5;
}

.contact-card .btn-primary:hover {
  background-color: #4338ca;
  border-color: #4338ca;
}

/* ========== FOOTER ========== */
.footer {
  min-height: auto;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
}

.footer-link:hover {
  color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .reclame,
  .content-container {
    width: 100%;
    flex-basis: auto;
  }

  .card {
    width: 100%;
  }
}

.contact-result-section {
  background: #d1d5db;
  min-height: 100vh;
}

.contact-result-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-result-list dt {
  font-weight: 700;
}

.contact-result-list dd {
  margin: 0;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
}

.uitleg-video {
  max-width: 800px;
  margin-top: 30px;
}

.uitleg-video video {
  display: block;
  border-radius: 12px;
  background: #000;
}
