@font-face {
    font-family: 'Bungee';
    src: url('/fonts/Bungee-Regular.woff2') format('woff2'),
        url('/fonts/Bungee-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('/fonts/bebas-neue-pro-regular.woff2') format('woff2'),
        url('/fonts/bebas-neue-pro-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    overflow-x: hidden; /* Verberg horizontale scroll */
    width: 100%; /* Zorg dat body niet breder wordt dan viewport */
}

.bg-dark {
    background-color: transparent !important;
}

.bungee {
    font-family: "Bungee", Arial;
}

.bebas{
    font-family: "Bebas Neue", Arial;
}

.color-white{
    color:#fff;
}

.color-purple{
    color:#CF059E;
}

.color-lightpurple{
    color:#dbddf1;
}

.color-gray{
    color:#7a888f;
}

.color-black{
    color: #0F0519;
}


.bg-darkgray{
    background-color: #213845;
}


.bg-lightpurple{
    background-color: #dbddf1;
}

.bg-white{
    background-color: #fff;
}

.bg-beige{
    background-color: #EBEBE7;
}


/* Algemene stijl */
html { 
  font-size: 20px; 
  color: #0F0519;
} 

h1{
    font-size:1.4rem;
    }

h2{
    font-size:1.0rem;
    }

body {
    font-family: "bebas Neue", Arial, sans-serif;
    background-color: #fff;
    /*background-color: #fff;*/
}

a {
color:#c61ca6;
}

a:hover {
    color: #7a888f;
}

.container-fluid.custom-wide {
  max-width: 1600px; /* or any value wider than Bootstrap's default 1320px for xl */
  margin: 0 auto;
}

/* Target scrollbars for WebKit browsers */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #e682ce;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.email.input-gray {
min-width:200px;
padding-left:20px;
}

.arrow-down{
    cursor:pointer;
}

.ass-checker {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: block;
}

    .ass-checker img {
        width: 41px;
        height: auto;
        border-bottom-left-radius: 20px;
        border-top-left-radius: 20px;
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
    }

main {
    padding:0;
}

header{
    /*background-image: url(/img/mobile-header-home-1.png);*/
    padding-top:80px;
    background-size:cover;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    text-shadow: 1px 1px 2px #0e0619;
    transition: background-image 1s ease-in-out;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 1rem 0 1rem;
}


.navbar-nav {
   /* padding-right: 100px;*/
}



.logo{
    width:200px;
}


/* default: transparent */
.navbar {
    background: transparent;
    transition: background-color 0.3s ease;
}

    /* when scrolled */
    .navbar.scrolled {
        background: #0E0719 !important; /* change to your desired color */
    }


.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.offcanvas-body .nav-link{
color:#fff;
font-size:1em;
}
.nav-link {
    display: inline-block;
    padding: 4px 10px;
    border: none;
    border-radius: 999px; /* pill shape */
    color: #ffffff; /* white text */
    transition: all 0.25s ease; /* smooth hover */
}




    .nav-link:hover {
        color: #0F0519;
        background-color:#FFF;
        box-shadow: 0 0 0 2px #ff00aa;
    }

.nav-link:focus,
.nav-link:active {
    background: #e60096; /* slightly darker magenta */
    color: #fff;
    outline: none;
}



.offcanvas-header{
padding:10px !important;

}

.offcanvas.w-100 {
  width: 100% !important;
  max-width: 100% !important;
}

#hamburgerToggle {
    position: fixed;
    /*top: 2rem;*/
    right: 1rem;
    z-index: 900;
  }

  .submenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.nav-item.open .submenu {
    max-height: 500px; /* large enough to fit content */
    opacity: 1;
}

.arrow-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-item.open .arrow-icon {
    transform: rotate(180deg);
}

.fa.fa-circle-arrow-down{
    vertical-align: middle;
    font-size: 0.5em !important;
}

.submenu {
    list-style: none;
    padding-left: 1rem; /* optional: keep indentation without bullet */
    margin: 0;
}

#btnClose span:hover{color:#e682ce;}


.link-gray {
    color: #7a888f;
    text-decoration:none;
}

.link-gray:hover {
    color: #000;
    text-decoration: none;
}

.leesverder{
    font-size:1.2em;
    font-weight: normal;
    text-decoration: none;
}
.leesverder:hover{
text-decoration: underline;
}

.arrow-right {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
}

/* Hover effect on the anchor */
.leesverder:hover .arrow-right {
    animation: bounceRight 0.6s infinite alternate;
}

/* Keyframes for left-to-right bouncing */
@keyframes bounceRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(8px);
    }
}

.button-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 400px;
 }

.btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 1.5rem;
  font-family: "Bebas Neue", Arial;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-small {
    display: inline-flex; /* inline-flex instead of flex */
    justify-content: center; /* center content horizontally */
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 1.5rem;
    font-family: "Bebas Neue", Arial;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto; /* ensure it doesn't stretch */
    max-width: max-content; /* optional: shrink-wrap content */
}

.btn .arrow {
    font-size: 1.2rem;
}

/* Filled magenta button */
.btn-filled {
    border: 2px solid #c61ca6;
    background-color: #c61ca6;
    color: white;
}


/* Filled magenta button */
.btn-lightpurple {
    border: 2px solid #8F98D6;
    background-color: #8F98D6;
    color: white;
}

/* Outline button */
.btn-outline {
  border: 2px solid #1d2c3b;
  color: #1d2c3b;
  background-color: white;
}

/* Filled black button */
.btn-black {
    border: 2px solid #fff;
    background-color: #1d2c3b;
    color: white;
}

.btn-gray {
    border: 2px solid #fff;
    background-color: #243844;
    color: white;
    margin: 10px 10px 10px 0;
}

.btn-active {
    background-color: #c61ca6;
    color: #fff;
}
.assortment-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.productname {
    border-bottom:1px solid #dbddf1;
}

.productname-link {
    color:#0F0519;
    text-decoration:none;
}

.productname-link:hover {
    color: #c61ca6;
    text-decoration: none;
}

/* Optional hover effect */
.btn:hover {
    transform: translateY(-2px);
    background-color: #7A888F !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* one class on the input element */
.search-input {
    display: inline-block;
    width: 280px; /* adjust to taste or set 100% */
    height: 38px;
    padding: 10px 16px 10px 44px; /* left space for icon */
    border: 1px solid #736e79; /* subtle border */
    border-radius: 999px; /* pill shape */
    background: #5d5863;
    color: #e9e6ee;
    font: 600 14px/1.1 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    outline: none;
    transition: filter .2s ease, box-shadow .2s ease;
    /* icon via background-image (no extra HTML) */
    background-repeat: no-repeat;
    background-position: 14px 50%;
    background-size: 18px 18px;
    background-image: url('data:image/svg+xml;utf8,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">\<circle cx="11" cy="11" r="6" fill="none" stroke="%23cfcbd6" stroke-width="2"/>\<line x1="16.5" y1="16.5" x2="21" y2="21" stroke="%23cfcbd6" stroke-width="2" stroke-linecap="round"/>\</svg>');
}

    .search-input::placeholder {
        color: #cfcbd6;
        opacity: 1;
    }

    .search-input:focus {
        box-shadow: 0 0 0 3px rgba(255,0,170,.45); /* optional magenta focus ring */
    }

    .search-input:hover {
        filter: brightness(1.05);
    }

    /* Optional: remove WebKit's default search decorations */
    .search-input::-webkit-search-decoration,
    .search-input::-webkit-search-cancel-button,
    .search-input::-webkit-search-results-button,
    .search-input::-webkit-search-results-decoration {
        display: none;
    }


.input-gray {
    background-color:#dbddf1;
    border:none;
    padding:4px;
    border-radius:20px;
    min-width:200px;
}


/* ===== USP list ===== */
.usp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .usp-list li {
        display: grid;
        grid-template-columns: 18px 1fr;
        align-items: start;
        column-gap: 8px;
        margin: 8px 0;
    }

        /* pink check icon */
        .usp-list li::before {
            content: "";
            width: 18px;
            height: 18px;
            margin-top: 2px;
            background: no-repeat center/contain url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e2007a'>\<path d='M9.0 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/>\</svg>");
        }

/* text styles */
.usp-title {
    display: block;
    font-weight: 700;
    line-height: 1.15;
    font-size: 20px; /* tweak if needed */
    color: #000;
}

.usp-sub {
    display: block;
    line-height: 1.15;
    margin-top: 2px;
    font-size: 20px;
    color: #3a3a3a; /* slightly lighter than title */
}

.swiper {
      width: 100%;
      overflow: visible; /* if the text is being cut off */
    }

    .swiper-slide {
      display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 1rem; /* optional, adds spacing */
    box-sizing: border-box;
    }

    .swiper-slide img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}


/* Default (mobile/tablet) — let Swiper handle auto width */
/*.swiper-slide {
    width: auto !important;
}
*/
.stukbouw-dropdown {
  color: white;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    padding: 0.2rem 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.dropdown-toggle::after {
  content: none !important;
  background: none !important;
  border: none !important;
}

.dropdown-toggle span strong {
  font-weight: bold;
}

.dropdown-toggle.open {
  background-color: #767d88; /* gray */
}

.dropdown-toggle.closed {
  background-color: #c61ca6; /* purple */
}

.dropdown-toggle-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    padding: 0.2rem 1.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

    .dropdown-toggle-2::after {
        content: none !important;
        background: none !important;
        border: none !important;
    }

    .dropdown-toggle-2 span strong {
        font-weight: bold;
    }

    .dropdown-toggle-2.open {
        background-color: #767d88; /* gray */
    }

    .dropdown-toggle-2.closed {
        background-color: #213845; /* dark */
    }

.dropdown-content {
  display: flex;
  justify-content:left;
  align-items: center;
  padding: 0.5rem;
}

/* Hide dropdown by default if needed */
.dropdown-content:not(.show) {
  display: none;
}

.custom-radio-group {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-weight: bold;
}

.custom-radio {
    position: relative;
    padding: 0.5rem 2.5rem 1rem 2.5rem;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

/* Hide default radio */
.custom-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Outer circle */
.custom-radio .radio-dot {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border: 12px solid  #e1e1f7; /* Light circle */
  border-radius: 150%;
}

/* Inner dot when selected */
.custom-radio input[type="radio"]:checked + .radio-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: #c61ca6; /* Magenta inner dot */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Actions*/
.action_card {
    padding-top:40px;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.action_card > img {
    width:100%;
}

/* badge */
    .action_badge {
    position: absolute;
    z-index:10;
    top: 15px;
    left: 20px;
    background: #c61ca6;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: .4px;
    z-index: 3;
}


#page-locatie img {
    max-width:300px;
}

#page-advantages img {
    max-width: 300px;
}


/************CONTACT SECTION START**********/

.alert-success {
    color: #28a745;
    display: block;
    margin-bottom: 20px;
    padding: 4px !important;
    
}

.alert-danger {
    color: #DC3545;
    margin-bottom: 20px;
    padding: 4px !important;
    display: block;
    
}

.user-danger {
    border-color: #DC3545 !important;
}

.user-success {
    border-color: #ced4da !important;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: .90rem 2rem;
    font-size: 22px;
    color: #7a888f;
    background-color: #ebebe7;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #c61ca6;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0 rgba(0,123,255,.25);
    box-shadow: 0 0 0 0 rgba(0,123,255,.25);
}


footer {
    /*background-image: url(/img/bg-footer.png);*/
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #0F0519;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-image 1s ease-in-out;
    padding: 30px;
}

footer h2{
margin-top:300px;
}

footer a{
  color:#fff;
  text-decoration: none;
  line-height: 2em;
}

    footer a:hover {
        color: #CF059E;
    }

.footer-socials{
  display: flex;
  justify-content: space-between;
}

    .footer-socials a span {
        color: #7a888f; /* standaard kleur */
        transition: color 0.3s ease; /* smooth overgang */
    }

    .footer-socials a:hover span {
        color: #CF059E; /* hover kleur */
    }