/* Algemene body en tekst */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #e6f4f6;
  color: #5b757c;
  margin: 0;
  padding: 0;
}

/* Header / Hero sectie */
header.bg-primary {
  background: linear-gradient(135deg, #4aaac0 0%, #6c919e 100%);
  color: #e6f4f6;
  padding: 4rem 1rem;
  text-align: center;
}

header .container {
  max-width: 1140px;
  margin: 0 auto;
}

header .row.align-items-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

header .col-md-6.text-md-start {
  text-align: left;
  padding: 0 1rem;
  flex: 1 1 45%;
  min-width: 300px;
}

header h1.display-5.fw-bold {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #e6f4f6;
}

header p.lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #e6f4f6;
  line-height: 1.5;
}

a.btn-light {
  display: inline-block;
  background-color: #5b757c;
  color: #e6f4f6;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(75, 108, 124, 0.3);
}

a.btn-light:hover,
a.btn-light:focus {
  background-color: #4aaac0;
  color: white;
  box-shadow: 0 6px 12px rgba(74, 170, 192, 0.6);
  outline: none;
}


/* Afbeelding in header */
header .col-md-6.mt-4.mt-md-0 {
  flex: 1 1 45%;
  min-width: 300px;
  padding: 0 1rem;
  text-align: center;
}

header img.img-fluid.rounded.shadow {
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Andere elementen */
blockquote {
  font-size: 0.95rem;
  color: #5b757c;
  font-style: italic;
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid #4aaac0;
}

footer {
  font-size: 0.85rem;
  color: #5b757c;
  padding: 1rem;
  text-align: center;
  background-color: #e6f4f6;
}

/* Icon box styling */
.icon-box {
  font-size: 2rem;
  color: #4aaac0;
  margin-bottom: 0.75rem;
}

/* Light blue background utility class */
.bg-light-blue {
  background-color: #4aaac0;
  color: #e6f4f6;
  padding: 1rem;
  border-radius: 0.25rem;
}

/* Section title styling */
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #5b757c;
  margin-bottom: 1rem;
}


/* Navbar background wit met subtiele schaduw */
nav.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(90, 117, 124, 0.15);
}

/* Brand styling */
nav .navbar-brand {
  color: #4aaac0;
  font-weight: 700;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
nav .navbar-brand:hover,
nav .navbar-brand:focus {
  color: #6c919e;
  text-decoration: none;
}

/* Nav links */
nav .nav-link {
  color: #5b757c;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav .nav-link:hover,
nav .nav-link:focus,
nav .nav-link.active {
  color: #4aaac0;
}

/* Buttons */
nav .btn-primary {
  background-color: #4aaac0;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
nav .btn-primary:hover,
nav .btn-primary:focus {
  background-color: #6c919e;
  color: #e6f4f6;
}

/* Danger button */
nav .btn-danger {
  background-color: #d9534f; /* Bootstrap default red */
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
nav .btn-danger:hover,
nav .btn-danger:focus {
  background-color: #b03a3a;
  color: #fff;
}

/* Toggler icon color */
.navbar-toggler {
  border: none;
  outline: none;
}
.navbar-toggler-icon {
  filter: invert(40%) sepia(40%) saturate(300%) hue-rotate(140deg) brightness(90%) contrast(85%);
}

/* Zorg dat html en body altijd 100% hoog zijn */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Wrapper om alles te centreren en footer naar onder te duwen */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Segoe UI', sans-serif;
}

/* Content container neemt beschikbare ruimte, footer blijft onderaan */
main {
  flex: 1 0 auto; /* Zorgt dat main uitzet en ruimte inneemt */
}

/* Footer styling */
footer.bg-dark {
  flex-shrink: 0; /* Niet smaller maken */
  background-color: #4aaac0; /* Je mooie blauwe kleur */
  color: #e6f4f6; /* Licht tekst contrast */
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  box-shadow: 0 -4px 10px rgba(74, 170, 192, 0.5);
  user-select: none;
}

table.transparent-table th,
table.transparent-table td {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.2); /* lichtgrijze randen op donkere bg */
  color: white; /* als je op donkere achtergrond werkt */
}