@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chicle&display=swap');


/* NAVBAR/HAMBURGER FUNCTIES */
/* (van https://alvarotrigo.com/blog/hamburger-menu-css/ nummer 6) */

#menu__toggle {
  opacity: 0;
  pointer-events: none; /* Pointer-events zorgt ervoor dat de ontzichtbare toggle niet klikbaar is. */
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 70% !important;
  height: 100%;
}
/* Hamburger button */
.menu__btn {
  position: fixed;
  top: 42px;  /* Adjust as needed */
  left: 85%;
  width: clamp(24px, 6vw, 40px);  /* Scalable width with min/max */
  height: clamp(24px, 6vw, 40px);  /* Ensure consistent height scaling */
  cursor: pointer;
  z-index: 9999;
}

/* The span inside the hamburger button */
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;  /* Keep this fixed for the lines */
  background-color: white;
  transition-duration: .25s;
}

/* Positioning the top span (before) */
.menu__btn > span::before {
  content: '';
  top: -8px;  /* Adjust vertical spacing for the top line */
}

/* Positioning the bottom span (after) */
.menu__btn > span::after {
  content: '';
  top: 8px;  /* Adjust vertical spacing for the bottom line */
}

/* Ensure the hamburger button is vertically centered */
.menu__btn > span {
  top: 50%;  /* Center the span in the button */
  transform: translateY(-50%);
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: 100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 150px 0;
  list-style: none;
  background-color: #BAB78E;
  transition-duration: .25s;
    z-index: 9998; /* z-index zorgt ervoor dat de menubox voor de andere elementen zit, zoals de logo, de tekst, en de achtergrond. */
}
.menu__item {
  display: block;
  padding: 20px 24px;
  color: white;
  font-family: "Chicle", serif;
  font-size: 3vw;  /* 3% of the viewport width */
  font-weight: 400;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #BE8C69;
}

@media (min-width: 993px) {
  .hamburger-menu{
    visibility: hidden;
  }
}

/* TOT HIER */




.logo {
    text-align: center;
}

.logo img {
  max-height: 100px; /* pick a size that fits your header */
  height: auto;
  width: auto;
}


/* Styling for language toggle */
.language-toggle {
    display: inline-block;
    margin-left: 10px;
}

.language-toggle a {
    margin: 0 5px;
}

.flag-icon {
    width: 50px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.flag-icon:hover {
    transform: scale(1.2);
}

/* Adjust flag display in hamburger menu */
.hamburger-menu .menu__item img.flag-icon {
    display: inline-block;
    margin-right: 10px;
}









body {
  font-family: "Ubuntu", serif;
  font-weight: lighter;
  background-color: #F1E7CC;
}

b {
  font-weight: bold;
}




/* --- Form layout improvements --- */
.form-section {
  margin-bottom: 35px; /* adds spacing between sections */
}

.form-section p {
  margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
select,
textarea {
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Add some spacing for radio/checkbox groups */
label {
  display: inline-block;
  margin-right: 15px;
  margin-top: 6px;
}

.hidden {
  display: none;
}
.error {
  color: red;
}

button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}



.coloredbutton {
    padding: 10px 20px;
    background-color: #BE8B6C;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 300ms;
}

.coloredbutton:hover {
    background-color: #C44E1B;
}

.coloredbutton[disabled]:hover {
  background-color: #ccc;
  cursor: not-allowed;
}








/* NAVBAR */
.navbar {
    position: fixed;
    z-index: 9999;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    height: 110px;
    margin: 0 auto;
    background-color: #BAB78E;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 22px;
  font-family: "Chicle", serif;
}

.nav-links li {
    margin: 0 10px;
    position: relative; /* Needed for positioning the dropdown menu */
}

.nav-links li a {
    color: white;
    padding: 10px;
    transition: color 300ms ease, padding 300ms ease;
    text-decoration: none;
}

.nav-links li a:hover {
    color: #BE8C69;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Position below the parent link */
    left: 0;
    background-color: #889180;
    border: 1px solid #ddd;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    min-width: 120px;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    color: #D8B54B;
}

/* Show the dropdown when hovering */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 993px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;  /* Align items to the start */
        background-color: #BAB78E;
    }

    .contactbutton {
        display: none !important;
    }

    .navbar .col-md-3, .navbar .col-md-6 {
        text-align: left;  /* Ensure text remains left-aligned */
    }

    .navbar h1, .nav-links, .coloredbutton {
        margin: 10px 0;
    }

    .navbar h1 {
        font-size: 8vw;  /* 6% of the viewport width */
    }

    .nav-links {
        justify-content: center;  /* Center nav links */
        width: 100%;  /* Ensure nav links take full width */
    }

    .col-md-3.text-md-right, .col-md-3.text-md-left {
        text-align: center;  /* Center-align on small screens */
    }

    .col-md-3.text-md-left {
        text-align: left;  /* Ensure H1 remains left-aligned */
    }

    .middle {
        visibility: hidden;
    }
}

/* TOT HIER */



/* Nieuwe Chicle Font */
h1, h2, h3, h4 {
    font-family: "Chicle";
    color: #004C03;
}




.introtext {
  position: relative;
  color: white;
    z-index: 9999;
}

.introtext h1 {
  font-size: 55px;
}

.slogancenter {
    position: absolute; /* Ensure positioning relative to the parent */
    top: 50%; /* Move to 50% of the parent's height */
    left: 50%; /* Move to 50% of the parent's width */
    transform: translate(-50%, -50%); /* Offset to perfectly center */
    text-align: center; /* Center the text horizontally */
    color: white; /* Ensure text color is visible */
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.7); /* Add shadow for better visibility */
    z-index: 10; /* Ensure it is above the slider */
    font-size: 2rem; /* Adjust font size as needed */
}


.slogancenter h1 {
    font-size: 70px;
    font-weight: bold;
      color: white;
}




.centertext {
    position: relative;
    text-align: center; /* Center the text horizontally */
    z-index: 10;
}

.centertext h1 {
    font-size: 50px;
    font-weight: bold;
}



.homecontent {
    position: relative;
    padding-bottom: 200px;
}


.contentbox p {
  font-size: 18px;
}


.homecontenttext {
    position: relative;
    padding-bottom: 200px;
}


.responsive-image {
    width: 100%;
    max-width: 1500px;
    height: auto;
}



/* Styling voor imageslider switchen tussen mobile en desktop */
@media (max-width: 1199px) {
  .contentboximageright,
  .contentboximageleft {
    display: none !important;
  }

}

@media (min-width: 1200px) {
  .contentboximageright,
  .contentboximageleft {
    display: block !important;
    padding-bottom: 150px;
  }
}




.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.benefits-list strong {
  width: 180px; /* adjust for alignment */
  flex-shrink: 0;
}

.benefits-list span {
  flex-grow: 1;
}



.tarieven-list {
  list-style: none;
  padding: 0;
  max-width: 500px;
}

.tarieven-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 6px 0;
}






/* Voor de slick mobile slide */
.single-item .slide {
    height: 600px; /* Set height for slides */
    background-size: cover; /* Ensure the image covers the slide */
    background-position: center; /* Center the background image */
}






.checkbox {
    color: #009BDB;
    background-color: #E8F8FF;
    font-size: 25px;
    padding: 5px 10px; /* Equal padding on left and right */
    display: inline-block;
    text-align: center;
    line-height: 1; /* Adjust line-height to center vertically */
}



/* Footer */
.footerBox {
  padding-top: 70px;
  padding-bottom: 20px;
  background-color: #9FA194;
  font-size: 16px;
}

.footerstyle {
  text-align: left;
  color: black;
}

.footerBox hr {
color: black;
}

.footerBox li {
  display: inline-block;
  font-weight: 300;
}

.footerBox a {
  list-style: none;
  text-decoration: none;
  color: black;
}


/* Add this CSS to remove padding and margin from the gallery images */
.no-gutters {
    margin-right: 30;
    margin-left: 0;
}

.no-gutters > .col-4 {
    padding-right: 0;
    padding-left: 0;
}

.gallery-img {
    display: block;
    margin: auto;
}

.socialmedialogos {
  text-align: right;
}

.socialmedialogos img {
  transition: transform 0.2s;
}

.socialmedialogos img:hover {
    transform: scale(1.2);
}





@media (max-width: 1200px) {

  .contentbox {
    align-items: center;
  }

  .contentbox h1, h2 {
        text-align: center;
  }

  .contentbox p {
        padding-bottom: 15px;
  }

  .contentbox ul {
        text-align: justify;
  }

  .contactform {
        align-items: center;
  }

  .coloredinfo {
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
  }

  .footerLogo {
    padding-bottom: 50px;
  }

  .footerstyle {
    padding-bottom: 50px;
  }

}




* {
    box-sizing: border-box;
}

.slider {
    width: 100%;
    margin: 50px auto;
}

.slick-slide img {
    width: 100%;
}

.slick-prev:before,
.slick-next:before {
    color: black;
    font-size: 40px;
}

.slick-background-slider {
    width: 100%;
    height: 100vh; /* Adjust height as needed */
    position: relative; /* Needed for child absolute positioning */
    overflow: hidden;
    background-size: cover;
    background-position: center;
}


.slick-background-slider .slide {
    width: 100%;
    height: 100vh; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
}

/* Slick slider dots styling */
.slick-background-slider .slick-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    list-style: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
}

/* Hide dot labels */
.slick-background-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

/* Transparent block style */
.slick-background-slider .slick-dots li button {
    position: relative; /* Ensure position context */
    font-size: 0; /* Hide the dot label */
    line-height: 0; /* Ensure no space for text */
    background-color: rgba(137, 137, 137, 0.5);
    border: 1px solid #fff; /* White border */
    width: 20px; /* Dot width */
    height: 15px; /* Dot height */
    border-radius: 0; /* Make it rectangular */
    cursor: pointer;
    overflow: hidden; /* Hide any content that exceeds dimensions */
    padding: 0; /* Ensure no extra padding */
    text-indent: -9999px; /* Move the text off-screen */
    white-space: nowrap; /* Ensure no wrapping */
}

/* Active dot style */
.slick-background-slider .slick-dots li.slick-active button {
    background-color: #282827; /* Active dot color */
}

/* Add spacing between gallery images */
.gallery-image {
    padding: 20px; /* Adjust as needed */
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 550px; /* Half the height of the iframe */
    display: flex;
    justify-content: center; /* Center the iframe horizontally */
    align-items: center; /* Center the iframe vertically */
    overflow: hidden; /* Ensure content stays within bounds */
}

.iframe-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%; /* Cover the lower half */
    background-color: #009BDB; /* Blue background color */
    z-index: -1; /* Place behind the iframe */
}

.iframe-container iframe {
    width: 80%; /* Adjust the width of the iframe */
    height: 100%; /* Adjust the height of the iframe */
}







/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  margin-bottom: 50px;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #F3F3F3;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Timeline container around content */
.timelinecontainer {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timelinecontainer::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the timeline container to the left */
.left {
  left: 0;
}

/* Place the timeline container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left timeline container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.timelinecontent {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width timeline containers */
  .timelinecontainer {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .timelinecontainer::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right timeline containers behave like the left ones */
  .right {
    left: 0%;
  }
}




.vaardighedensection {
    margin: 0 auto; /* Center horizontally */
    text-align: center; /* Center text within the element */
    display: block; /* Ensure the element respects `margin: auto` */
    max-width: 600px; /* Optional: Constrain the width for better readability */
}

.vaardighedensection h1 {
    margin-bottom: 10px;
    color: #333;
}

.vaardighedensection ul {
    list-style-type: disc; /* Default bullet points */
    padding-left: 0; /* Remove default left padding */
    margin: 0 auto; /* Center the list */
    display: inline-block; /* Center the list content */
    font-size: 18px; /* Increase font size for the list */
    line-height: 1.8; /* Optional: Adjust line height for readability */
}

.vaardighedensection li {
    text-align: left; /* Align individual list items to the left if desired */
}



.videocontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

/* Modal Content Box */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto; /* 10% from top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  max-width: 700px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
