:root {
    --color-x-primary: #4951F2;
    --color-x-secondary: #03658C;
    --color-x-accent: #FFB933;
    --color-x-bg: #2EA69A;
    --color-x-text: #432E8C;
}

.text-x-primary {
    color: var(--color-x-primary);
}

.text-x-bg {
    color: var(--color-x-bg);
}

.text-x-secondary {
    color: var(--color-x-secondary);
}

.text-x-accent {
    color: var(--color-x-accent);
}

address {
    color: white;
}

html {
  font-size: 18px;
}

body {
    font-size: 18px;
    color: var(--color-x-text);
    background-color: var(--color-x-bg);
}

h2 {
    color: var(--color-x-primary);
}

.empty-space {
    height: 100px;
}

@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.textbox {
    background-color: white;
}

.expertise {
    background-color: var(--color-x-secondary);
    color: white;
}

.footer-bg {
    background-image: url('../Index_files/footer.webp');
    background-size: cover; /* Zorgt dat het hele vlak gevuld wordt */
    background-position: center; /* Centreert de afbeelding */
    background-repeat: no-repeat; /* Geen herhaling */
    height: 100px; /* Of gebruik min-height: 50vh; */
    width: 100%;
}

.custom-rounded {
  border-radius: 0; /* No rounding by default (mobile) */
}

/* Apply border-radius only on desktop and larger */
@media (min-width: 576px) {
  .custom-rounded {
    border-radius: 0.375rem; /* 6px (same as Bootstrap's .rounded) */
  }
}