/* ===================================
   Table of Contents
====================================== */
/* 
1. Font Face Declarations
2. Root Variables
   - Colors
   - Fonts
3. Base Styles
   - Typography
   - Links
   - Buttons
   - Images
4. Utility Classes
   - Color Utilities
   - Background Utilities
   - Sizing Utilities
5. Component Styles
   - Navbar
   - Hero Section
   - Buttons
   - Cards
6. Animation Styles
   - Fade Animations
   - Slideshow
7. Other Styles
8. Media Queries
   - Large Screens (992px)
   - Mobile Screens (450px)
*/

/* ===================================
   1. Font Face Declarations
====================================== */
/* ====== Mobiel klein (tot 450px) ====== */




.navbar {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}




@media screen and (max-width: 450px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  h4 { font-size: 22px; }
  h5 { font-size: 18px; }
  h6 { font-size: 16px; font-weight: 500; }

  .navbar-size { width: 100%; padding: 0 20px; }
  .slideshow { max-height: 90vh; background-position: 75% center; }
  .page-size { width: 100%; padding: 50px 20px; }
  .get-started-size { width: 100%; padding-left: 0; padding-right: 0; }
  .footer-text { width: 100%; text-align: left; }
  .logo-width { width: 40%; }
}

/* ====== Tablet & klein scherm (tot 992px) ====== */
@media screen and (max-width: 992px) {
  h1 { font-size: 60px; line-height: 1.1em; }
  h2 { font-size: 40px; line-height: 1.2em; }
  h3 { font-size: 28px; line-height: 1.2em; }
  h4 { font-size: 24px; line-height: 1.2em; }
  h5 { font-size: 22px; line-height: 1.1em; }  /* punt ipv komma */
  h6 { font-size: 16px; line-height: 1.2em; }

  .navbar-size { width: 100%; padding: 0 32px; }
  .slideshow { max-height: 580px; }
  .page-size { width: 100%; padding: 50px 32px; }
  .get-started-size { width: 100%; padding: 0 32px 50px 32px; }
  .w-hero, .card-hero, .card-value, .bg-value { width: 100%; }
  .footer-text { width: 65%; text-align: center; }
}

/* ====== Laptop breedtes (993px – 1312px) ====== */
@media screen and (min-width: 993px) and (max-width: 1312px) {
  /* forceer volle breedte */
  .navbar-size,
  .page-size,
  .get-started-size,
  .footer-text,
  .w-hero,
  .card-hero,
  .card-value,
  .bg-value {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 24px;
    padding-right: 24px;
  }

  h1 { font-size: 56px; }
  h2 { font-size: 38px; }
  h3 { font-size: 26px; }
}

/* ====== Grote desktop (vanaf 1313px) ====== */
@media screen and (min-width: 1313px) {
  /* hier kun je weer bredere content of max-width containers zetten */
  .page-size {
    max-width: 1200px;
    margin: 0 auto;
  }
}




@font-face {
    font-family: 'judson';
    src: url(../font/Poppins-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'rubik';
    src: url(../font/rubik.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'handwritten';
    src: url(../font/Rockybilly.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* ===================================
   2. Root Variables
   Define global variables for colors,
   fonts, and reusable values.
====================================== */
:root {
    /* Colors */
    --text-color-1: #575D5E;
    --text-color-2: #D4D4D4;
    --heading-color: #0C1516;
    --color-main: #EFA00A;
    --color-darker: #13383E;
    --color-lighter: #83D8E5;
    --color-subtle: #F7F5EB;
    --color-border: #B7C1C3;
    --color-accent: #EDECE3;
    --color-error: #E22D2D;
    --color-warning: #E2D52D;
    --color-info: #2663cf;
    --color-success: #20bd3c;

    /* Fonts */
    --font-1: "judson";
    --font-2: "rubik";
    --font-3: "handwritten"
}

/* ===================================
   3. Base Styles
   Basic HTML elements and typography
====================================== */
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-1);
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: 90px; line-height: 1.1; }
h2 { font-size: 56px; }
h3 { font-size: 40px; }
h4 { font-size: 32px; }
h5 { font-size: 24px; }
h6 { font-size: 16px; }

p {
    font-size: 16px;
    color: var(--text-color-1);
    font-family: var(--font-2);
}

a {
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    color: var(--heading-color);
    font-family: var(--font-2);
}

button {
    font-family: var(--font-2);
    font-weight: 600;
    font-size: 14px;
}

img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===================================
   4. Utility Classes
   Reusable utility classes for colors,
   backgrounds, and spacing
====================================== */
/* Color Utilities */
.c-text-1 { color: var(--text-color-1); }
.c-text-2 { color: var(--text-color-2); }
.c-heading { color: var(--heading-color); }
.c-main { color: var(--color-main); }
.c-darker { color: var(--color-darker); }
.c-lighter { color: var(--color-lighter); }
.c-subtle { color: var(--color-subtle); }
.c-border { color: var(--color-border); }
.c-error { color: var(--color-error); }
.c-warning { color: var(--color-warning); }
.c-info { color: var(--color-info); }
.c-success { color: var(--color-success); }
.c-accent { color: var(--color-accent); }
.c-white { color: white !important; }
.c-black { color: black; }

/* Background Utilities */
.bg-text-1 { background-color: var(--text-color-1); }
.bg-text-2 { background-color: var(--text-color-2); }
.bg-heading { background-color: var(--heading-color); }
.bg-main { background-color: var(--color-main); }
.bg-darker { background-color: var(--color-darker); }
.bg-lighter { background-color: var(--color-lighter); }
.bg-subtle { background-color: var(--color-subtle); }
.bg-border { background-color: var(--color-border); }
.bg-error { background-color: var(--color-error); }
.bg-warning { background-color: var(--color-warning); }
.bg-info { background-color: var(--color-info); }
.bg-success { background-color: var(--color-success); }
.bg-accent { background-color: var(--color-accent); }
.bg-pearlwhite {background-color: #fffadd;}

/* Sizing Utilities */
.navbar-size { width: 1300px; }
.page-size {
    width: 1300px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}
.get-started-size {
    width: 1300px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   5. Component Styles
   Styles for specific components
====================================== */
/* Navbar */
.navbar {
    position: fixed;   /* maakt navbar altijd zichtbaar */
    top: 0;            /* bovenkant van het scherm */
    left: 0;           /* links uitlijnen */
    width: 100%;       /* volle breedte */
    z-index: 9999;     /* boven andere content */
    border-bottom: 3px solid var(--color-main); /* streep onder navbar */
    background-color: #fffadd;
}

body {
    padding-top: 70px; /* pas aan naar hoogte navbar */
}

/* Mobiel */
@media screen and (max-width: 450px) {
    body {
        padding-top: 50px; /* kleinere padding voor mobiel */
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler .custom-toggler-icon {
    width: 40px;
    height: 30px;
    border: none;
    background: var(--color-main);
    box-shadow: none;
    outline: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: end;
    padding: 5px;
    color: white !important;
}

.navbar-toggler .bar {
    display: block;
    height: 2px;
    border-radius: 2px;
    width: 100%;
    background-color: white;
    border: none;
}

.navbar-toggler .bar-1 { width: 80%; align-self: flex-end; }
.navbar-toggler .bar-2 { width: 100%; }
.navbar-toggler .bar-3 { width: 60%; align-self: flex-end; }

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

.nav-link {
    color: var(--text-color-1);
    font-size: 15px;
    font-family: var(--font-2);
    font-weight: 600;
    box-shadow: none;
}

.desktop-toggler {
    display: block;
    background-color: transparent;
    border: none;
    border-radius: 4px;
}

.desktop-toggler .bar {
    display: block;
    height: 2px; 
    border-radius: 2px; 
    width: 100%;
    background-color: white;
    border: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 131, 145, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
       
.navbar-toggler-icon:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}         

.search-form {
    width: 800px;
}

.search-form .form-control {
    color: var(--text-color-2);
    font-size: 16px;
}

.search-form .form-control::placeholder {
    color: var(--text-color-1); 
}

.search-form .btn {
    padding: 0;
}

.search-form .input-group {
    border: 1px solid var(--text-color-2); 
    border-radius: 25px;
    padding: 10px 15px;
}

.search-form .input-group:focus-within {
    box-shadow: none;
}

.form-control:focus{
    box-shadow: none;
}

.offcanvas-header .btn-close-custom {
    position: absolute;
    top: 20px; 
    right: 20px; 
    z-index: 10; 
    background-color: transparent;
    border: 1px solid var(--text-color-2);
    border-radius: 10px;
    font-size: 20px;
    padding: 5px 12px;
    cursor: pointer;
}

#offcanvasSearch {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    justify-content: center; 
    align-items: center; 
    display: flex;
    flex-direction: column;
}

.offcanvas.show .nav-link {
    color: var(--text-color-1);  
    font-size: 12px;
}

.offcanvas.show .nav-link:hover {
    color: var(--color-main); 
}

.social-icon-32 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-main);
    border-radius: 50%;
    color: var(--color-main);
    background-color: transparent;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    cursor: pointer;
}

.social-icon-32:hover{
    color: var(--color-subtle);
    background-color: var(--color-main);
}

.nav-link.dropdown-toggle:hover {
    color: var(--color-main);
    box-shadow: none;
}

.nav-link.dropdown-toggle:active{
    box-shadow: none;
}

.nav-link:hover {
    color: var(--color-main); 
}

.nav-link.active {
    color: var(--color-main) !important;
    box-shadow: none;
}

.nav-link:focus,
.dropdown-item:focus {
    color: var(--color-main);
    outline: none;
    box-shadow: none !important;
}

.dropdown-toggle {
    box-shadow: none !important;
}

.dropdown-menu {
    padding-left: 0px;
    padding-top: 0px !important;
    padding-bottom: 16px;
    padding-right: 0px;
    color: var(--text-color-2);
    min-width: 240px;
    border: none;
    box-shadow: none;
    border-radius: 0px;
}

.custom-dropdown-menu {
    top: 100px;
    left: 200px;
}

.dropdown-menu a {
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-menu:hover a:hover {
    color: #fff; 
    background-color: var(--color-main); 
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-item{
    font-weight: 500 !important;
}

.dropdown-item:hover {
    background-color: white !important;
    color: var(--color-main) !important;
}

.pad{
    width: 240px;
    height: 18px;
    background-color: var(--color-subtle);
    border: none;
    box-shadow: none;
    z-index: 2000;
}

.logo-width {
    width: 15%;
}

/* Hero Section */
.slideshow {
    position: relative;
    max-height: 900px;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slideshow 20s infinite;
    overflow: hidden;
}

.slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.z-index-5 { z-index: 5; }
.w-hero { width: 55%; }

/* Buttons */
.btn-hero-1, .btn-hero-2, .btn-hero-3 {
    font-size: 14px;
    padding: 16px 24px;
    border-radius: 50px;
}

.btn-hero-1 {
    background-color: var(--color-main); /* standaard achtergrond */
    color: white;                         /* standaard tekstkleur */
    border: 2px solid var(--color-main);  /* standaard rand (zelfde kleur als achtergrond) */
    border-radius: 25px;                  /* ronde hoeken, optioneel */
    padding: 12px 30px;                    /* liggend formaat */
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;            /* vloeiende hover */
}

.btn-hero-1:hover {
    background-color: transparent;        /* achtergrond wordt transparant */
    color: #EFA00A;                       /* tekst wordt oranje */
    border-color: #EFA00A;                /* rand wordt oranje */
    transform: scale(1.05);               /* subtiele vergroting */
}


.btn-hero-2 {
    background-color: transparent;       /* standaard transparant */
    color: white;                      /* standaard tekstkleur */
    border: 2px solid #0175C4;           /* standaard randkleur */
    font-size: 14px;
    padding: 12px 30px;                   /* liggend formaat */
    border-radius: 25px;                  /* ronde hoeken */
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;           /* vloeiende hover */
}

.btn-hero-2:hover {
    background-color: #0175C4;           /* knop loopt vol */
    color: white;                         /* tekst wit */
    border-color: #0175C4;                /* rand blijft gelijk */
    transform: scale(1.05);               /* subtiele vergroting */
}


.btn-hero-3 {
    background-color: transparent;       /* standaard transparant */
    color: #0175C4;                      /* standaard tekstkleur */
    border: 2px solid #0175C4;           /* standaard randkleur */
    font-size: 14px;
    padding: 12px 30px;                   /* liggend formaat */
    border-radius: 25px;                  /* ronde hoeken */
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;           /* vloeiende hover */
}

.btn-hero-3:hover {
    background-color: #0175C4;           /* knop loopt vol */
    color: white;                         /* tekst wit */
    border-color: #0175C4;                /* rand blijft gelijk */
    transform: scale(1.05);               /* subtiele vergroting */
}

/* Cards */
.card-hero {
    width: 650px;
    border: none;
    background-color: var(--color-main);
    padding: 24px;
}
.card-hero-wrapper {
    position: absolute;
    left: 2%;
    top: -14%;
    z-index: 100;
    border-radius: 20px !important ; 
    overflow: hidden;
}
.card-offer {
    width: 100%;
    border: none;
    padding: 24px;
    border-radius: 20px !important ; 
    overflow: hidden;
    background-color: var(--color-accent);
    
}

.card-service {
    background-color: var(--color-subtle);
    padding: 30px;
}

.card-testimonial {
    background-color: var(--color-accent);
    padding: 32px;
}

.card-blog {
    background: var(--color-accent);
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
    padding: 24px;
}

.large-padding-top {
    padding-top: 200px;
}

/* ===================================
   6. Animation Styles
====================================== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(120px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-120px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-120px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(120px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transform: translate(0, 0);
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

.fade-in-up { animation-name: fadeInUp; }
.fade-in-down { animation-name: fadeInDown; }
.fade-in-left { animation-name: fadeInLeft; }
.fade-in-right { animation-name: fadeInRight; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===================================
   7. Other Styles
====================================== */
.page-title {
    font-family: var(--font-2);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.page-title2 {
    font-family: var(--font-3);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #0175C4;
}

.img-stars {
    width: 80px;
}

.testimonial-circle {
    width: 45px; 
    height: 45px; 
    background-color: grey; 
    border: 2px solid white;
    border-radius: 50%; 
    margin-left: -7px;
}

.testimonial-circle-first {
    width: 45px; 
    height: 45px; 
    background-color: grey; 
    border: 2px solid white;
    border-radius: 50%; 
}

.review-text {
    font-family: var(--font-2);
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.large-padding-top-1 {
    padding-top: 680px;
}

.large-padding-bottom{
    padding-bottom: 350px;
}

.large-margin-stars {
    margin-top: 10%;
}

.img-offer {
    width: 50px;
}

.link-offer {
    font-size: 14px;
    font-family: var(--font-2);
    color: var(--heading-color);
}

.link-offer:hover {
    color: var(--color-main);
}

.link-offer-wrapper {
    width: max-content;
    border-bottom: 1px solid var(--heading-color);
}

.img-about-1 {
    width: 100%;
    height: 482px;
}   

.img-about-2 {
    margin-top: 60px;
    width: 100%;
    height: 482px;
}

.btn-main {
    background-color: var(--color-main);
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-2);
    border: none;
    color: white;
    border-radius: 40px;
    transition: all 0.3s ease; /* smooth hover overgang */
}

.btn-main:hover {
    background-color: transparent;
    color: var(--color-main);
    border: 1px solid var(--color-main);
}


.btn-main2 {
    background-color: #0175C4; /* standaard blauwe achtergrond */
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-2);
    border: none; /* geen rand standaard */
    color: white; /* witte tekst standaard */
    border-radius: 40px;
    transition: all 0.3s ease; /* soepele overgang bij hover */
}

.btn-main2:hover {
    background-color: transparent; /* transparant bij hover */
    color: #0175C4; /* tekst wordt blauw */
    border: 2px solid #0175C4; /* blauwe rand */
}


.max-w-content {
    max-width: max-content;
}

.bg-value {
    width: 1300px;
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/value-1.png');
    background-size: cover;
    background-position: center;
    padding: 32px;
    position: absolute;
  
}

.img-sidebar {
    width: 140px;
    height: 40px;
}

.card-value {
    width: 470px;
    border-bottom: 1px solid white;
}

.card-value:last-child{
    border-bottom: none;
}

.card-value-2 {
    width: 100%;
    border-bottom: 1px solid white;
}

.card-value-2:last-child{
    border-bottom: none;
}

.img-partner-1,
.img-partner-2,
.img-partner-3,
.img-partner-4,
.img-partner-5,
.img-partner-6,
.img-partner-7,
.img-partner-8,
.img-partner-9,
.img-partner-10 {
    width: 180px;
}

.bg-service {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/services-1.jpg');;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.img-service-icon{
    width: 85px;
}

.text-service {
    font-size: 13px;
    color: var(--text-color-1);
    font-weight: 500;
    margin-left: 5px;
}

.link-service-wrapper {
    width: max-content;
    border-bottom: 1px solid var(--color-main);
}

.link-service {
    font-size: 14px;
    font-family: var(--font-2);
    color: var(--color-main);
}

.link-service:hover {
    color: var(--heading-color);
}

.card-how-it-works {
    background-color: var(--color-subtle);
    padding: 24px;
}

.img-how-it-works-wrapper {
    position: static;
}

.img-how-it-works {
    position: static;
    max-width: max-content;
    width: 580px;
    margin-top: 50px;
    margin-bottom: -100px;
}

.circle-testimonial {
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
}

.name-testimonial {
    font-size: 16px;
    font-family: var(--font-2);
    font-weight: 600;
    color: var(--heading-color);
}

.large-icon {
    font-size: 50px;
}

.bp-card:hover .img-blog-post {
    transform: scale(1.1) rotate(3deg); 
}

.img-blog-post {
    max-height: 360px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform-origin: center;
}

.metadata-blog {
    font-size: 13px;
    color: var(--color-main);
    font-weight: 600;
    font-family: var(--font-2);
}

.icon-blog {
    width: 13px;
}

.bg-get-started {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/get-started-1.jpg');
    padding: 64px;
}

.bg-banner, .bg-banner-1, .bg-banner-2, .bg-banner-3, .bg-banner-4, .bg-banner-5, .bg-banner-6, .bg-banner-7 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
}

.bg-banner {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/banner-1.jpg');
}

.bg-banner-1 {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/get-started-1.jpg');
}

.bg-banner-2 {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/services-1.jpg');
}

.bg-banner-3 {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/blog-post-2.jpg');
}

.bg-banner-4 {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/bg-hero-1.jpg');
}

.bg-banner-5 {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/service-detail-1.jpg');
}

.bg-banner-6 {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/banner-2.jpg');
}

.bg-banner-7 {
    background-image: linear-gradient(rgba(12, 21, 22, 0.6), rgba(12, 21, 22, 0.6)), url('../img/banner-4.jpg');
}

.text-post-terms {
    font-size: 13px;
    color: var(--heading-color);
    font-weight: 600;
    font-family: var(--font-2);
}

.icon-post-terms {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-main);
    border-radius: 50%;
    color: var(--color-main);
    background-color: transparent;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    cursor: pointer;
}

.icon-post-terms:hover{
    color: var(--color-subtle);
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
}

.card-single-post {
    background-color: var(--color-accent);
    padding: 32px;
}

.meta-recent-post{
    font-size: 12px;
    color: var(--text-color-1);
}

.link-recent-post {
    font-size: 16px;
    color: var(--color-main);
}

.link-recent-post:hover {
    color: var(--heading-color);
}

.card-newsletter {
    background-color: var(--color-darker);
    padding: 32px;
}

.card-comment {
    background-color: var(--color-subtle);
    padding: 64px;
}

.input-form {
    width: 100%;
    border: none;
    background-color: white;
    color: var(--heading-color);
    padding: 16px 24px;
    font-size: 16px;
    font-family: var(--font-2);
}

.input-form:focus {
    box-shadow: none;
    outline: none;
}

.icon-plus {
    width: 14px;
    height: 14px;
}

.img-about-3 {
    height: 630px;
}

.accordion,
.accordion-button,
.accordion-item,
.accordion-header,
.accordion-body {
    border: none !important;
    box-shadow: none !important;
}

.accordion-button {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.6px;
    color: var(--text-color-1); 
    background-color: var(--color-accent); 
}

.accordion-subtle {
    background-color: var(--color-subtle) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../icon/up.svg");
    background-size: auto;
    background-position: center;
}

.accordion-button.collapsed::after {
    background-image: url("../icon/left.svg");
    transform: rotate(270deg);
    background-size: auto;
    background-position: center;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--color-main) !important;
}

.accordion-button:hover {
    background-color: #e9ecef; 
}

.accordion-button:active {
    background-color: transparent !important;
}

.accordion-body{
    background-color: var(--color-subtle) !important;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-item {
    border: none;
    border-radius: 0px !important;
}

.accordion-header, .accordion-body, .accordion-button {
    border-radius: 0px !important;
}

.img-faqs {
    max-height: 670px;
    display: block;
}

.icon-contact {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--color-main);
    border-radius: 50%;
    color: var(--color-main);
    background-color: transparent;
    font-size: 13px;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    cursor: pointer;
}

.icon-contact:hover{
    color: var(--color-subtle);
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
}

.card-contact {
    background-color: var(--color-accent);
    padding: 46px;
}

.maps {
    width: 100%;
    height: 512px;
    transition: filter 0.5s;
    display: block;
}

.card-pricing {
    background-color: var(--color-subtle);
    padding: 32px;
}

.border-pricing {
    color: var(--text-color-1);
}

.border-pricing-1 {
    color: var(--text-color-2);
}

.card-pricing-last {
    background-color: var(--color-main);
    padding: 32px;
    min-height: 760px;
}

.margin-pricing {
    margin-top: 44px;
}

.btn-pricing {
    background-color: white;
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-2);
    border: none;
    color: var(--text-color-1);
    border-radius: 40px;
}

.btn-pricing:hover{
    background-color: var(--text-color-1);
    color: white;
}

.card-team {
    background-color: var(--color-accent);
    padding: 24px;
}

.text-center {
    text-align: center;
}

.img-team-wrapper {
    position: relative;
    overflow: hidden;
}

.img-team {
    display: block;
    transition: transform 0.3s ease
}

.img-team-wrapper .img-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.img-team-wrapper .social-team {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 11;
}

.img-team-wrapper:hover .img-team-overlay {
    opacity: 1;
}

.img-team-wrapper:hover .social-team {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.icon-social-team {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    color: var(--color-main);
    background-color: var(--color-subtle);
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    cursor: pointer;
}

.icon-social-team:hover{
    color: var(--color-subtle);
    background-color: var(--color-main);
}

.sub-price {
    font-size: 16px;
    color: var(--text-color-1);
    font-family: var(--font-2);
    font-weight: 500;
}

.card-service-detail-1 {
    background-color: var(--color-accent);
    padding: 24px;
}

.card-service-detail-2 {
    background-color: var(--color-darker);
    padding: 24px;
}

.other-services {
    margin-top: 16px;
    border-bottom: 1px solid var(--color-border);
}

.h-404 {
    height: 80vh;
}

.title-404 {
    font-size: 200px;
    color: var(--color-main);
    font-family: var(--font-2);
    font-weight: 700;
    text-align: center;
    margin-top: -36px;
    margin-bottom: -64px;
}

.w-text-404 {
    width: 35%;
}

.footer-logo {
    width: 192px;
    height: 56px;
}

.footer-container {
  position: relative;
}

.footer-anbi {
  position: absolute;
  right: -30px;
  bottom: -70px; /* kleine ruimte vanaf onderkant */
}

.footer-anbi img {
  width: 80px; /* pas aan naar wens */
  height: auto;
}



.footer-text {
    width: 30%;
    text-align: center;
}

.footer-page {
    padding-bottom: 24px;
}

.footer-container p {
    margin-bottom: 0;
}


@media screen and (max-width: 767px) {
    .footer-container {
        position: relative;
    }

    .footer-anbi {
        justify-content: center;
    }
}

.popup-message {
    display: none;
    background-color: var(--color-border);
    color: var(--heading-color);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.popup-message-2 {
    display: none;
    background-color: var(--color-border);
    color: var(--heading-color);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.input-newsletter {
    border: none;
    max-width: 400px;
    width: 100%;
    background-color: #FAFAFA;
    color: black;
    border-radius: 40px;
    padding: 12px 20px;
    font-size: 16px;
    font-family: var(--font-2);
    font-weight: 500;
}

.input-newsletter:focus {
    box-shadow: none;
    outline: none;
}

.btn-newsletter {
    max-width: 400px;
    width: 100%;
    background-color: var(--color-main);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 12px 20px;
    font-size: 14px;
    font-family: var(--font-2);
    font-weight: 600
}

.footer-link{
    color: var(--text-color-2);
}

.footer-link:hover {
    color: white;
}

.footer-links {
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
    margin-top: 24px;
}

.footer-links li {
    margin: 10px 0; 
}

.btn-newsletter:hover {
    background-color: white;
    color: black;
}

@keyframes slideshow {
    0% {
        background-image: url('../img/bg-hero-1.jpg');
    }
    33% {
        background-image: url('../img/bg-hero-2.jpg');
    }
    66% {
        background-image: url('../img/bg-hero-3.jpg');
    }
    100% {
        background-image: url('../img/bg-hero-1.jpg');
    }
}

/* ===================================
   8. Media Queries
   Responsive styles for different screen sizes
====================================== */
@media screen and (max-width: 992px) {
    h1 { font-size: 60px; line-height: 1.1em; }
    h2 { font-size: 40px; line-height: 1.2em; }
    h3 { font-size: 28px; line-height: 1.2em; }
    h4 { font-size: 24px; line-height: 1.2em; }
    h5 { font-size: 22px; line-height: 1,1em; }
    h6 { font-size: 16px; line-height: 1,2em; }

    .navbar-size {
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .slideshow { max-height: 580px; }

    .page-size {
        width: 100%;
        padding: 50px 32px;
    }

    .get-started-size {
        width: 100%;
        padding-bottom: 50px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .w-hero { width: 100%; }

    .footer-text { width: 65%; text-align: center; }

    .card-hero-wrapper {
        position: relative;
        left: 0;
    }

    .card-hero {
        width: 100%;
    }

    .bg-value {
        position: relative;
        width: 100%;
        top: 0;
    }

    .card-value {
        width: 100%;
    }

    .large-padding-bottom {
        padding-bottom: 0;
    }

    .large-padding-top-1 {
        padding-top: 0;
    }

    .img-partner-4 {
        display: none;
    }

    .img-partner-9 {
        display: none;
    }

    .bg-get-started {
        padding: 32px;
    }

    .input-newsletter {
        max-width: none;
        width: 100%;
    }

    .btn-newsletter {
        max-width: none;
        width: 100%;
    }

    .logo-width {
        width: 27%;
    }

    .img-partner-1,
    .img-partner-2,
    .img-partner-3,
    .img-partner-4,
    .img-partner-5,
    .img-partner-6,
    .img-partner-7,
    .img-partner-8,
    .img-partner-9,
    .img-partner-10 {
        width: 120px;
    }
}

@media screen and (max-width: 450px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    h4 { font-size: 22px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; font-weight: 500; }

    .navbar-size {
        width: 100%;
        padding: 0 20px;
    }

    .slideshow { max-height: 90vh; }

    @media (max-width: 768px) {
  .slideshow {
    background-position: 75% center; /* meer naar rechts op mobiel */
   
  }
}


    .page-size {
        width: 100%;
        padding: 50px 20px;
    }

    .get-started-size {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .desktop-toggler { display: none; }
    .footer-text { width: 100%; text-align: left; }
    .card-hero-wrapper {
        position: relative;
    }

    .large-padding-top {
        padding-top: 50px;
    }

    .img-partner-3 {
        display: none;
    }

    .img-partner-8 {
        display: none;
    }

    .footer-text {
        width: 100%;
        text-align: left;
    }

    .bg-get-started {
        padding: 20px;
    }

    .logo-width {
        width: 40%;
    }
}



.ticket-button {
  background: linear-gradient(135deg, #FFD700, #E6BE00);
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  /* kleinere “stekels” */
  clip-path: polygon(
    0% 0%, 2% 5%, 0% 10%, 2% 15%, 0% 20%, 2% 25%, 0% 30%, 2% 35%, 0% 40%, 2% 45%, 0% 50%, 
    2% 55%, 0% 60%, 2% 65%, 0% 70%, 2% 75%, 0% 80%, 2% 85%, 0% 90%, 2% 95%, 0% 100%, 
    100% 100%, 98% 95%, 100% 90%, 98% 85%, 100% 80%, 98% 75%, 100% 70%, 98% 65%, 100% 60%, 98% 55%, 
    100% 50%, 98% 45%, 100% 40%, 98% 35%, 100% 30%, 98% 25%, 100% 20%, 98% 15%, 100% 10%, 98% 5%, 100% 0%
  );
}

.ticket-button {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ticket-button::after {
  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.3) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
}

.ticket-button:hover::after {
  left: 125%;
  transition: left 0.6s ease;
}

.ticket-button:hover {
  transform: scale(1.05);
}

/*  */

.ticket-button-small {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  background: linear-gradient(135deg, #FFD700, #E6BE00);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Ribbel-effect duidelijker maken */
.ticket-button-small::before,
.ticket-button-small::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15px;
  height: 100%;
  background: repeating-radial-gradient(
    circle at center,
    transparent 0px,
    transparent 4px,
    #FFD700 4px,
    #FFD700 8px
  );
  z-index: 1;
}

.ticket-button-small::before {
  left: -15px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.ticket-button-small::after {
  right: -15px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* Hover glans */
.ticket-button-small::after {
  left: -75%;
  transform: skewX(-25deg);
}

.ticket-button-small:hover::after {
  left: 125%;
  transition: left 0.6s ease;
}

.ticket-button-small:hover {
  transform: scale(1.05);
}

.invisible-element {
  visibility: hidden;   /* element blijft in de flow voor layout */
  pointer-events: none; /* klikken werkt niet */
  opacity: 0;           /* volledig onzichtbaar */
}

.nowrap {
  white-space: nowrap;
}

.c-white2 {
    color: white;
}

.c-white2:hover {
    color: var(--color-main);
}

.input-form {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

  .disclaimer-box {
  background-color: #f8f9fa; /* lichtgrijze achtergrond */
  border-left: 4px solid var(--color-main); /* blauwe balk links */
}
.disclaimer-box h2, 
.disclaimer-box h5 {
  color: #333; /* donkere tekst */
}
.disclaimer-box p {
  color: #555;
  line-height: 1.6;
}


/* EIGEN CODE  */

/* Desktop / standaard */
.header-content {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
     /* standaard voor desktop */
}

/* Tablet: breedte beperkt tot 60% */
@media screen and (min-width: 451px) and (max-width: 1312px) {
    .header-content {
        max-width: 60%;
    }
}

/* Mobiel: header iets lager (75%) */
@media screen and (max-width: 450px) {
    .header-content {
        top: 95%;
        transform: translateY(100%);
        max-width: 90%; /* optioneel, zodat het goed past op klein scherm */
        left: 10px; /* iets minder padding van links */
    }
}

/*  */

.cta-btn {
    display: inline-flex;             /* flexbox op de knop */
    align-items: center;              /* verticaal centreren */
    text-align: center;
    justify-content: center;          /* horizontaal centreren */
    padding: 12px 30px;               /* grootte knop */
    background-color: var(--color-main);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;              /* ronde hoeken */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background-color: darken(var(--color-main), 10%);
    transform: scale(1.05);           /* subtiele hover vergroting */
    color: var(--color-main);
    border-color: var(--color-main);
}

/* Mobiel: button niet zichtbaar */
@media screen and (max-width: 992px) {
    .cta-btn {
        display: none !important;
    }
}


/*  */

/* Container */
.custom-dropdown {
  position: relative;
}

/* Toggle link */
.custom-dropdown-toggle {
  color: #1D1D1B;                   /* standaard tekstkleur */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-dropdown-toggle:hover {
  color: #EFA00A;                 /* hover kleur */
}

/* Dropdown menu */
.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;                  /* standaard verborgen */
  background-color: #1a1a1a;      /* donkere achtergrond */
  padding: 0.5rem 0;
  border-radius: 8px;
  min-width: 180px;
  z-index: 999;
}

/* Dropdown items */
.custom-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.custom-dropdown-item:hover {
  background-color: #EFA00A;
  color: white;
  border-radius: 5px;
}

/* Active item */
.custom-dropdown-item.active {
  color: #EFA00A;
  font-weight: bold;
}

@media(min-width: 992px) {
  .custom-dropdown:hover .custom-dropdown-menu {
    display: block; /* alleen hover voor desktop */
  }
}

/* Dropdown toggle pijltje alleen op desktop */
@media(min-width: 992px) {
  .custom-dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6em;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .custom-dropdown:hover .custom-dropdown-menu {
    display: block;
  }
}

.desktop-arrow {
  margin-left: 5px;      /* klein beetje ruimte tussen tekst en pijltje */
  font-size: 0.8em;      /* pijltje iets kleiner dan tekst */
  transition: transform 0.3s ease, color 0.3s ease;
}










/* HOMEPAGINA 2 */

/* Carrousel afbeelding */
.carousel-img {
  width: 100%;
  height: 75vh;      /* fallback voor oudere browsers */
  height: 75dvh;     /* moderne, consistente hoogte */
  object-fit: cover; /* vult de slide zonder witruimte */
  object-position: center top;
}

/* Vanaf 1024px: lagere hoogte */
@media (max-height: 750px) {
  .carousel-img {
    height: 65vh;   /* fallback */
    height: 65dvh;  /* moderne browsers */
  }
}



/* Tekstblok onder de carrousel */
.bg-custom-text {
  background-color: #F7F5EB;
  width: 100%;           /* full width, geen container padding */
  padding: 2rem 1rem;    /* ruimte binnen tekstblok */
  margin: 0;             /* geen extra marge */
}

.carousel-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.carousel-text p {
  font-size: 1.2rem;
  color: #555;
}


/* Mobiel: hoogte automatisch, width 100% */
@media (max-width: 767px) {
  .carousel-img {
    height: auto;
    width: 100%;
    object-fit: contain; /* hele afbeelding zichtbaar */
  }
}


/* Standaard desktop/tablet */
.carousel-text h2 {
    font-size: 2rem;      /* desktop/tablet grootte */
    line-height: 1.3;
    margin-bottom: 20px;  /* ruimte onder de tekst */
}

/* Zeer kleine telefoons (max-width 375px) */
@media (max-width: 375px) {
    .carousel-text h2 {
        font-size: 1rem;   /* veel kleiner voor iPhone SE/S8+ */
        line-height: 1.2;
    }
}

/* Kleine telefoons (376px - 414px) */
@media (min-width: 376px) and (max-width: 414px) {
    .carousel-text h2 {
        font-size: 1.3rem;  /* iets groter voor grotere kleine telefoons */
        line-height: 1.25;
    }
}

/* Smalle tablets (415px - 767px) */
@media (min-width: 415px) and (max-width: 767px) {
    .carousel-text h2 {
        font-size: 1.6rem;  /* tablet / smalle schermen */
        line-height: 1.3;
    }
}


/* Verberg <br> op schermen kleiner dan 768px */
@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
}

@media (max-width: 769px) {
    .hide-tablet {
        display: none;
    }
}

/* Hoe doen we het */

.feature-section {
  width: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.feature-col {
  flex: 0 0 33.3333%;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* zorgt dat alle kolommen even hoog zijn */
  margin-bottom: 20px;
}

/* Afbeelding */
.feature-img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  object-fit: cover;
  height: 375px; /* standaard hoogte voor desktop */
  display: block;
}

/* Tablet: tussen 600px en 1024px → iets lagere afbeelding */
@media (min-width: 600px) and (max-width: 1024px) {
  .feature-img {
    height: 300px;
  }
}

/* De box met titel + tekst */
.feature-box {
  background-color: #0175C4;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 0 0 15px 15px;
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1; /* vult resterende hoogte zodat alles gelijk is */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Titel op gelijke hoogte */
.feature-box h5 {
  min-height: 60px; /* vaste zone voor alle titels */
  display: flex;
  align-items: flex-end; /* tekst onderaan deze zone */
  justify-content: center;
  margin-bottom: 10px;
}

/* Tekst */
.feature-box p {
  color: white;
  margin: 0;
  flex-grow: 1; /* vult de ruimte onder de titel */
}

/* Mobiel: kolommen onder elkaar */
@media (max-width: 600px) {
  .feature-col {
    flex: 0 0 100%;
  }

  .feature-img {
    height: auto;
  }

  .feature-box h5 {
    min-height: auto; /* geen vaste hoogte op mobiel */
  }
}


/* Foto hover overlay */
.img-wrapper {
    position: relative;
    display: inline-block;
}

.circle-testimonial {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.img-fullwidth {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    text-decoration: none;
    color: white;
    opacity: 0;
    background-color: #EFA00A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    border-radius: 50%; /* Voor cirkelfoto, full width blijft rechthoekig */
}

.img-wrapper:hover .overlay-link {
    opacity: 0.6;
}

.overlay-plus {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Hover overlay voor fullwidth afbeelding */
.img-wrapper.w-100 .overlay-link {
    border-radius: 0;
}

/* Responsive spacing */
@media (max-width: 767px) {
    .testimonial-equal {
        min-height: auto;
    }
    .circle-testimonial {
        width: 200px;
        height: 200px;
    }
}

/* Wrapper die breder wordt op tablet/desktop */
.card-testimonial-wrapper {
  width: 100%;
  max-width: 100%; /* op mobiel gewoon 100% */
  display: flex;
  justify-content: center; /* foto en content gecentreerd */
  padding: 20px 0; /* optioneel: beetje verticale ruimte */
}

/* Achtergrond van de kaart */
.card-testimonial {
  background-color: var(--color-accent);
  width: 100%; /* neem hele wrapper width */
  max-width: 700px; /* breder dan standaardblok */
  padding: 40px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Foto blijft rond en gecentreerd */
.card-testimonial .circle-testimonial {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.zwarte-tekst {
    color: black;
}

.section-fix {
  overflow-x: clip;      /* verbergt het kleine stukje dat uitsteekt, veiliger dan hidden */
  position: relative;
}

.section-fix .row {
  margin-left: 0;
  margin-right: 0;
}

.section-fix .col {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}



.locatie-section {
  overflow-x: clip; /* voorkomt overscroll alleen in deze sectie */
}

.locatie-section .container {
  max-width: 1200px; /* optioneel: limiet voor breedte */
}

.locatie-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.img-single-post {
  object-fit: cover;
  display: block;
}


.footer-anbi-img {
  
  margin: 8px 0 0 auto; /* rechts uitlijnen */
  width: 150px;
  height: auto;
}

