:root {
  --yellow: #DA4411;
  --gray-light: #f9f9f9;
  --gray-dark: #333;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

*{
  letter-spacing: 1.4px;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--gray-light);
}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .container .nav-links ul li a{
color: black;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}


.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--yellow);
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
  color: var(--yellow) !important;
}

.nav-links a:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 200px;
  flex-direction: column;
  border-radius: 5px;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 10px 20px;
  white-space: nowrap;
}

.dropdown-menu li a {
  color: var(--gray-dark);
  text-decoration: none;
  display: block;
}

.dropdown-menu li a:hover {
  background: #f1f1f1;
}

/* CTA BUTTONS */
  .cta-buttons a{
    margin-left: 10px;
  }

.bel-knop {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background-color: #DA4411;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(168, 80, 50, 0.4);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  user-select: none;
}

/* lens glare is initially hidden */
.bel-knop::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* hover styles */
.bel-knop:hover {
  box-shadow: 0 8px 16px rgba(168, 80, 50, 0.7);
  background-color: #b35b3a;
}

/* show and animate lens glare only on hover */
.bel-knop:hover::before {
  opacity: 1;
  animation: lens-glare 1.5s linear infinite;
}

/* lens glare animation */
@keyframes lens-glare {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Offerte Knop */
.offerte-knop {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background-color: #DA4411;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(168, 80, 50, 0.4);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  user-select: none;
}

/* lens glare is initially hidden */
.offerte-knop::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* hover styles */
.offerte-knop:hover {
  box-shadow: 0 8px 16px rgba(168, 80, 50, 0.7);
  background-color: #b35b3a;
}

/* show and animate lens glare only on hover */
.offerte-knop:hover::before {
  opacity: 1;
  animation: lens-glare 1.5s linear infinite;
}

/* lens glare animation */
@keyframes lens-glare {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--yellow);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 80%;
   text-align: center; 
  height: 100%;
  background: var(--white);
  z-index: 1000;
  padding: 40px 20px;
  transition: right 0.3s ease;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  padding: 15px 0;
}

.mobile-menu a {
  color: var(--gray-dark);
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-menu .dropdown .dropdown-menu {
  display: block;
  background: transparent;
  box-shadow: none;
  padding-left: 15px;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.close-mobile {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--yellow);
}

/* RESPONSIVE */
@media (max-width: 1209px) {
  .nav-links,
  .cta-buttons {
    display: none;
  }

  .hamburger {
    display: block;
  }

.dropdown-menu-ham {
  display: none;
  margin-left: 10px;
  margin-top: 10px;
  animation: fadeIn 0.3s ease-in-out;
}

.dropdown-menu-ham li {
  padding: 10px 0;
}

.dropdown-menu-ham a {
  display: inline; /* only inline, not block */
   position: relative; 
  color: var(--gray-dark);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dropdown-menu-ham a:hover {
  color: var(--yellow);
}

.dropdown-menu-ham a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--yellow);
  transition: width 0.3s ease-in-out;
}


.dropdown-menu-ham a:hover::after {
  width: 100%;
}

.mobile-menu li a {
    display: inline-block; /* only inline, not block */
   position: relative; 
  color: var(--gray-dark);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu li a:hover {
  color: var(--yellow);
}

.mobile-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--yellow);
  transition: width 0.3s ease-in-out;
}


.mobile-menu li a:hover::after {
  width: 100%;
}


}

/* HERO */
.hero {
  background: url('/assets/imgs/image.png') no-repeat center center/cover;
  text-align: center;
  padding: 150px 20px;
  height: 150px;
  display: flex;
    align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  padding: 40px;
  width: auto;
  color: white;
}

.hero h1 {
  color: var(--yellow);
  font-size: 2.5rem;
    white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.trustpilot {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.trustpilot img {
  height: 30px;
}

/* MOBILE HERO */
@media (max-width: 768px) {
  .hero-content {
    width: auto;
  }
}

/* FADE ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CV-Ketel Content */
.km-cvketel-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.75;
}

.km-container {
  max-width: 900px;
  margin: 0 auto;
}

.km-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
color: var(--yellow);
}

.km-subheading {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
color: var(--yellow);
}

.km-intro,
.km-cvketel-section p {
  font-size: 16px;
  margin-bottom: 18px;
}

.km-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.km-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 15.5px;
}

.km-icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
color: var(--yellow);
  transition: transform 0.3s ease;
}

.km-list li:hover .km-icon {
  transform: scale(1.2);
}

.km-contact-cta {
  font-weight: 600;
  margin-top: 30px;
  font-size: 16px;
}

.km-link {
  color: var(--yellow);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.km-link:hover {
  color: var(--gray-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .km-heading {
    font-size: 24px;
  }

  .km-subheading {
    font-size: 18px;
  }
}


.brands-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: white;
  /* margin-top: 2rem; */
  padding: 2rem 1rem;
  /* border-top: 1px solid #ddd; */
}

.brands-section img {
  max-height: 40px;
  width: auto;
  height: auto;
  transition: filter 0.3s ease;
}


/* Mobiel layout: verticale stack */
@media (max-width: 768px) {
  .brands-section {
    flex-direction: column;
    gap: 1rem;
  }

  .brands-section img {
    max-height: 35px;
  }
}
/* Footer */

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* Layout to keep footer at bottom */
body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

/* Footer styles */
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

/* Footer styles */
.footer {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: auto;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.offerte-boven {
  text-align: center;
  margin-bottom: 50px;
      border: 1px solid rgba(255, 255, 255, .3);
    padding: 40px;
}

.offerte-boven h1 {
  font-size: 25px;
  margin-bottom: 25px;
}

.offerte-boven button {
  background-color: #facc15;
  color: #000;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.offerte-boven button:hover {
  background-color: #eab308;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-box {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-box h3 {
  font-size: 24px;
  margin-bottom: 14px;
  padding-bottom: 4px;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

.footer-box ul {
  list-style: none;
  margin-top: 10px;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-box a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--yellow);
  transition: width 0.3s ease-in-out;
}

.footer-box a:hover {
  color: var(--yellow) !important;
}

.footer-box a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 60px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .footer-box h3 {
    font-size: 17px;
  }
}

.footer-box.offerte a:hover{
  color: var(--gray-dark);
}

/* Over Ons Page */

/* Algemene styling */
.km-aboutus-section {
  background-color: #f9f9f9;
  overflow-x: hidden;
}

.km-about-block {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.km-about-block.reverse {
  flex-direction: row-reverse;
}

.km-about-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.km-about-img-wrapper {
  flex: 1 1 45%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
  will-change: transform;
}

.km-about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.km-about-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* CTA + Quote */
.km-about-cta {
  background: whitesmoke;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.km-about-cta blockquote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
  color: #333;
}

.km-about-cta cite {
  display: block;
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

.km-cta-button {
  display: inline-block;
  background-color: #1a1a1a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.km-cta-button:hover {
  background-color: #333;
}

/* Animatie klassen */
.animate-fade {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideInRight 1s ease forwards;
}

/* Keyframes */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Parallax effect (optioneel JS voor dynamiek) */
.parallax-img {
  transform: translateY(0);
  transition: transform 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .km-about-block,
  .km-about-block.reverse {
    flex-direction: column;
  }

  .km-about-img-wrapper {
    aspect-ratio: auto;
    height: auto;
  }

  .km-about-cta {
    padding: 30px 20px;
  }
}
/* Testi Slider */

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto 20px;
  min-height: 140px;
}

.testimonial-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.testimonial-slide blockquote {
  font-size: 18px;
  font-style: italic;
  margin: 0;
  color: #333;
}

.testimonial-slide cite {
  display: block;
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

/* Navigatie pijlen */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  font-weight: bold;
  padding: 0 10px;
  transition: color 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  color: #000;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

@media (max-width: 768px) {
  .testimonial-slider {
    padding: 0 10px;
  }

  .testimonial-slide blockquote {
    font-size: 16px;
  }
}




