@charset "utf-8";
/* CSS Document */
body.large-text {
  font-size: 1.25rem;
}

.geel {color:#ea8a00;}
.rood {color:#d2433f;}
.bg-geel {background-color:#ea8a00;}
.bg-lgeel {background-color:#fcf0d3;}

h2 {font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif"; text-transform: uppercase; }

h3 {font-weight: 100;}

h4.underline {
  position: relative;
  display: block; /* of block, afhankelijk van je layout */
  padding-bottom: 10px; /* ruimte voor het lijntje */
	margin-bottom:20px;
}

h4.underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #ea8a00; /* gele huisstijl */
}

a {color:#ea8a00;text-decoration: none;}
a:hover {color:#d2433f;}

a:hover .card-text {color:#000;}

.breadcrumbs-section {position:fixed;width:100%;height:auto;background-color:#fcf0d3;top:auto;z-index:1;}


/* Zorg dat dropdown op hover opent */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* voorkomt springende animatie */
}

.btn-primary,
.btn-primary:disabled,
.btn-primary.disabled {
  background-color: #ea8a00;
  border-color: #ea8a00;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  background-color: #cc7700;
  border-color: #cc7700;
  color: #fff;
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle,
.btn-check:checked + .btn,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: #b36200;
  border-color: #b36200;
  color: #fff;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus:active,
.btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(234, 138, 0, 0.5) !important;
  outline: none !important;
}

.btn-primary:focus-visible {
  border-color: #b36200 !important;
}

/* Outline-variant */
.btn-outline-primary {
  color: #ea8a00;
  border-color: #ea8a00;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #ea8a00;
  color: #fff;
  border-color: #ea8a00;
}

.btn-outline-primary:active {
  background-color: #b36200;
  border-color: #b36200;
}


.navbar {
 background-color: #fff;
	height: 80px;
  width: 100%;
  z-index: 10; /* Zorg dat hij boven de carousel zit */
}
#siteLogo {
  transition: all 1s ease;
  height: auto;
	padding-top:100px;
	width: 150px;
}

.navbar.scrolled #siteLogo {
	padding-top:25px;
  width: 100px; /* Kleiner formaat bij scrollen */
}

.nav-link {text-transform: uppercase;}

.input-zoek {font-size: 2rem; padding: 1.5rem}


.line {
  width: 100px;
  height: 2px;
  background-color: #ea8a00;
}


.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	transition: transform 0.5s ease;
	height:200px;
}
.bg-image:hover {  transform: scale(1.1);}

.image-thumbnail {
  height: 150px;
  margin: 10px;
  transition: transform 0.3s ease;
}
.image-thumbnail:hover {  transform: scale(1.03);}

.carousel-item {  height: 600px;  position: relative;}
.carousel-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.carousel-caption {
  position: relative;
  top:0; left: 0;
	height: 600px;
  transform: translate(0%, 0%);
  z-index: 2;
  color: white;
  text-align: center;
  backdrop-filter: brightness(0.5); 
}
.carousel-caption h1 {  font-size: 3rem;  font-weight: bold;}
.carousel-caption p {  font-size: 1.25rem;}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M4.5 0L3.09 1.41 5.67 4 3.09 6.59 4.5 8 8.5 4z' transform='rotate(180 4 4)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M4.5 0L3.09 1.41 5.67 4 3.09 6.59 4.5 8 8.5 4z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.card-title:hover {color:#d2433f;}

.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1; /* Zorgt voor een vierkant, dus een perfecte cirkel */
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.team-photo:hover img {  transform: scale(1.1);}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  padding: 10px;
  text-align: center;
}

.team-photo:hover .overlay {  opacity: 1;}


#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: #ea8a00;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
	width: 50px;
	height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
opacity: 0;
  visibility: hidden;
  transition: all 1s ease, visibility 0.5s;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M4.5 0L3.09 1.41 5.67 4 3.09 6.59 4.5 8 8.5 4z' transform='rotate(-90 5 5)'/%3E%3C/svg%3E");
}
#scrollTopBtn:hover {  background-color: #c67600;}
#scrollTopBtn.show {  opacity: 1;  visibility: visible;}


.parallax-banner {
  position: relative;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-banner p { font-size:20px;}

.parallax-overlay {
  position: relative;
  width: 100%;
  padding: 60px 20px; /* ruimte boven/onder */
}

.parallax-content {
  position: relative;
  z-index: 2;
}

.parallax-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.parallax-banner.orange-overlay::before {background-color: rgba(234, 138, 0, 0.85); /* oranje */}
.parallax-banner.white-overlay::before {background-color: rgba(255, 255, 255, 0.85); /* wit */}
.parallax-banner.rood-overlay::before {background-color: rgba(255, 0, 0, 0.5); /* blauw */}


#slidebox {
  position: fixed;
  bottom: -300px;
  right: 20px;
  width: 280px;
  background: #f4f4f4;
  border: 2px solid #ea8a00;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: bottom 0.5s ease;
  z-index: 9999;
  font-family: sans-serif;
}

#slidebox.show {
  bottom: 0;
}

.slidebox-header {
  background: #ea8a00;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
}

#slidebox form {
  padding: 15px;
}

#slidebox input,
#slidebox button {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#slidebox button {
  background-color: #ea8a00;
  color: white;
  border: none;
  cursor: pointer;
}

#slidebox button:hover {
  background-color: #cc7300;
}

.snippet {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* aantal regels */
    overflow: hidden;
    text-overflow: ellipsis;
}

footer {background-color:#333;color:#fff;}
footer a {color:#c67600;}


@media (max-width: 1200px) {
section { scroll-margin-top: 500px;}
.navbar {height: auto;}
#siteLogo {	padding-top:0px; width: 120px;}
.navbar.scrolled #siteLogo { padding-top:0px; width: 80px;}
.team-photo { width: 150px; height: 150px;}
.dropdown-menu-center { margin:0 auto; width: auto;  }
	.breadcrumbs-bg {background-color: #fcf0d3;}
}

@media (max-width: 991.98px) {}
  
@media (max-width: 768px) {
.input-zoek {font-size: 1rem; padding: 15px;}
.parallax-banner {background-attachment: scroll;  }
.bg-image {height:100px;width: 100px;}
.card {flex-direction: row;}
.card-body {}
.card-img, .card-img-top {border-top-right-radius: 0px;aspect-ratio: 16/9;   /* of 4/3, afhankelijk van je ontwerp */
  object-fit: cover;
}
p.card-text {font-size:14px;line-height: 18px;}	
	
}

