/* Stijling Helemaal de bom */
html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
}

a {
  color: var(--tertiary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input, textarea, select, button {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--secondary-color);
  outline: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}

input::placeholder, textarea::placeholder {
  color: #999;
}

button {
  background-color: var(--tertiary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: var(--tertiary-color);
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

ul li, ol li {
  margin-bottom: 0.5em;
}

hr {
  border: 0;
  height: 1px;
  background-color: rgba(204, 204, 204, 0.231372549);
}

blockquote {
  padding: 1em;
  margin: 1em 0;
  background-color: #e9e9e9;
  border-left: 5px solid var(--background-color);
  color: var(--tertiary-color);
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

/* Desktop */
@media (min-width: 1025px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  .hdb-container {
    padding: 100px 30px;
  }
  .hdb-flex {
    justify-content: space-between;
    align-items: center;
  }
  .hdb-c-second {
    flex: 50%;
  }
  .hdb-reverse {
    flex-direction: row-reverse;
  }
}
/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  .hdb-container {
    padding: 80px 30px;
  }
  .hdb-flex {
    justify-content: space-between;
    align-items: center;
  }
  .hdb-c-second {
    flex: 50%;
  }
  .hdb-reverse {
    flex-direction: row-reverse;
  }
}
/* Mobiel */
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.875rem;
  }
  .hdb-container {
    padding: 70px 30px;
  }
  .hdb-flex {
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .hdb-c-second {
    flex: 100%;
  }
  .hdb-reverse {
    flex-direction: column-reverse;
  }
  .hdb-column h2 {
    margin-bottom: 10px;
  }
  .credit-footer .hdb-flex {
    gap: unset;
  }
}
/* Mobiel Landscape */
@media (max-width: 767px) and (orientation: landscape) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1rem;
  }
  h5 {
    font-size: 0.875rem;
  }
  h6 {
    font-size: 0.75rem;
  }
}
/* Hide ReCaptcha & cookie*/
.grecaptcha-badge {
  display: none !important;
}

/* Scroll to top */
.scroll-top-top svg {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  fill: white;
  border-radius: 50%;
  padding: 8px;
}

.scroll-top-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}

.scroll-top-top svg {
  transition: 0.3s;
}

.informatie-404 a:hover {
  text-decoration: underline;
}

.scroll-top-top svg:hover {
  transition: 0.3s;
  background-color: white;
  fill: var(--primary-color);
}

/* Maximale breedte */
.hdb-container {
  max-width: var(--hdb-max-width);
  width: 100%;
  margin: 0 auto;
}

.hdb-flex {
  display: flex;
}

footer, .credit-footer {
  background-color: var(--secondary-color);
}

.credit-footer-inner {
  padding: 0 30px;
}

.credit-footer-inner-content {
  padding: 10px 0 30px;
}

.credit-footer-inner-content-c1, .credit-footer-inner a, .credit-footer-inner span {
  color: white;
  font-size: 12px;
}

.hdb-button {
  background-color: var(--secondary-color);
  color: white;
  font-family: "Poppins", sans-serif;
  padding: 12px 18px;
  display: inline-block;
}

.hdb-button:hover {
  text-decoration: unset;
}

.hdb-button-hover {
  border: 1px solid var(--secondary-color);
  transition: 0.3s;
}

.hdb-button-hover:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.hdb-radius {
  border-radius: 20px;
}

img {
  width: 100%;
}

.hdb-column {
  flex: 100%;
}

.hdb-left {
  justify-content: flex-start;
  text-align: left;
}

.hdb-center {
  text-align: center;
  justify-content: center;
}

.hdb-right {
  justify-content: flex-end;
  text-align: right;
}

/* Informatie pagina */
.hdb-informatie-page p {
  font-size: 20px;
  line-height: 30px;
}

.hdb-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 767px) {
  .hdb-informatie-page p {
    font-size: 18px;
    line-height: 25px;
  }
}
/* Header */
header {
  background-color: var(--primary-color);
}

.hdb-header {
  max-width: var(--hdb-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#menu-hoofdmenu {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin: 0;
}

#menu-hoofdmenu li a {
  color: white;
}

.hdb-header .hdb-column img {
  max-width: 200px;
  height: unset;
}

/* Sub menu */
.hdb-menu-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hdb-menu-toggle {
  display: none;
}

.hdb-submenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  color: white;
  z-index: 1000;
  transition: right 0.5s ease;
  padding-top: 50px;
}

#hdb-hamburger-icon, #hdb-close-icon {
  fill: var(--tertiary-color);
}

.hdb-submenu img {
  padding: 20px;
}

.hdb-submenu.open {
  right: 0;
}

.hdb-submenu-content {
  margin: 0px 20px;
}

.hdb-submenu svg {
  position: absolute;
  top: 100px;
  right: 30px;
  cursor: pointer;
}

.hdb-submenu-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.hdb-submenu-list li {
  margin: 20px 0;
}

body.hdb-no-scroll {
  overflow-y: hidden;
  height: 100vh;
}

.hdb-submenu-list li a {
  color: white;
}

/* Media Query voor mobiele weergave */
@media (max-width: 1300px) {
  .hdb-menu-container {
    display: none;
  }
  .hdb-menu-toggle {
    display: block;
    cursor: pointer;
  }
}
/* Footer */
.hdb-footer-list {
  list-style: none;
  padding-left: unset;
}

.hdb-footer-list li a {
  color: white;
}

/* Image */
.hdb-box-shadow {
  box-shadow: 4px 5px 11px 2px rgba(0, 0, 0, 0.2509803922);
}

/* Sterke en Emfasiserende tekst */
strong {
  font-weight: bold; /* Vetgedrukt */
}

em {
  font-style: italic; /* Cursief */
}

/* Kleine tekst */
small {
  font-size: 0.8em; /* Kleinere tekst */
}

/* Gemarkeerde tekst */
mark {
  background-color: yellow; /* Achtergrondkleur voor gemarkeerde tekst */
}

/* Ongesorteerde lijst */
ul {
  list-style-type: disc; /* Punten */
  padding-left: 20px; /* Ruimte aan de linkerkant */
}

/* Gesorteerde lijst */
ol {
  list-style-type: decimal; /* Genummerde lijst */
  padding-left: 20px; /* Ruimte aan de linkerkant */
}

/* Lijstitems */
li {
  margin-bottom: 0.5em; /* Ruimte onder lijstitems */
}

/* Tabel */
table {
  width: 100%; /* Volledige breedte */
  border-collapse: collapse; /* Geen ruimte tussen cellen */
  margin-bottom: 1em; /* Ruimte onder de tabel */
}

/* Tabelkop */
th {
  background-color: #f2f2f2; /* Achtergrondkleur voor tabelkop */
  text-align: left; /* Tekst links uitlijnen */
  padding: 8px; /* Ruimte binnen de cellen */
}

/* Tabelcellen */
td {
  border: 1px solid #ddd; /* Grijze rand */
  padding: 8px; /* Ruimte binnen de cellen */
}

/* Hover effect voor rijen */
tr:hover {
  background-color: #f1f1f1; /* Achtergrondkleur bij hover */
}/*# sourceMappingURL=hdb-styling.css.map */