/*
    Author: TedSite
    Date: 15-09-2025
    Description: Succeed General Stylesheet
*/

html {
    font-size: 16px;
}

.wrapper
{
    overflow-x: clip;
}

:root {
    --orange-color: #EC6A42;
    --light-orange-color: #F48C70;
    --purple-color: #432537;
    --light-purple-color: #6C4B68;
    --green-color: #CDE3CB;
    --pink-color: #EECDC9;
    --light-color: #f3f3f3;
}

.main-color {
    color: var(--orange-color);
}

body {
    background-color: var(--light-color);
    position: relative;
    border-style: none;
    border-width: 0;
    background-clip: border-box;
    font-family: DMSans;
    margin: 0;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, .btn {
    font-family: PoppinsBold;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
}

p {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
    font-size: 1.5rem;
}

/* Globale selectie */
::selection {
    background: var(--orange-color);
    color: white;
    border-radius: 8px;
}

/* Firefox */
::-moz-selection {
    background: var(--orange-color);
    color: white;
    border-radius: 8px;
}

/* Scrollbar */
* {
    /* Firefox */
    scrollbar-width: thin; /* ~6–8px */
    scrollbar-color: var(--orange-color) var(--light-orange-color);
}

/* Chromium / Safari / Edge (WebKit) */
*::-webkit-scrollbar {
    width: 6px;
    height: 6px; /* horizontaal */
}

*::-webkit-scrollbar-track {
    background: var(--light-orange-color);
}

*::-webkit-scrollbar-thumb {
    background: var(--orange-color);
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.succeed-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
    background-color: #1E0D2B; /* donkerpaars achtergrond */
    color: #F9F9F9; /* witte tekst */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .succeed-table tr {
        transition: background 0.25s ease;
    }

        .succeed-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .succeed-table tr:hover {
            background-color: rgba(255, 108, 0, 0.15); /* oranje gloed bij hover */
        }

    .succeed-table td {
        padding: 0.9rem 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        vertical-align: top;
    }

        .succeed-table td:last-child {
            text-align: right;
            color: #FF6C00; /* oranje accent voor prijzen */
            font-weight: 600;
        }

    .succeed-table tr:last-child td {
        border-bottom: none;
    }

.succeed-btn {
    display: inline-block;
    background: #FF6C00;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    margin-top: 0.8rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .succeed-btn:hover {
        background: #ff8533;
        transform: translateY(-2px);
    }


/*======================================================
                        General
======================================================*/
.link-button {
    display: inline-block;
    text-decoration: none;
    color: var(--orange-color);
    padding: 0.5rem 2rem;
    border: 2px solid var(--orange-color);
    border-radius: 8px;
    margin: auto 0;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 300ms ease;
    cursor: pointer;
}

/* Hover state */
.link-button:hover {
    background: var(--orange-color);
    color: var(--light-color);
    border-left: 8px solid var(--orange-color);
}

.button-text {
    display: flex;
    width: 100%;
    gap: 10px;
}

.button-text a {
    text-decoration: none;
    color: white;
    display: block;
    align-self: center;
}

.button-text span {
    font-weight: bold;
    color: var(--pink-color);
}

.button-text span:hover {
    font-weight: bold;
    font-size: 18px;
}

.wave-orange {
    width: 310px;
    height: 40px; /* hoogte van de golf */
    background: url('/shapes/wave-orange.svg') repeat-x;
    background-size: auto 100%; /* vult de hoogte */
    animation: waveScroll 10s linear infinite;
}

.wave-green {
    width: 310px;
    height: 40px; /* hoogte van de golf */
    background: url('/shapes/wave-green.svg') repeat-x;
    background-size: auto 100%; /* vult de hoogte */
    margin: 5rem 0 2rem 0;
    animation: waveScroll 10s linear infinite;
}

.wave-purple {
    width: 310px;
    height: 40px; /* hoogte van de golf */
    background: url('/shapes/wave-purple.svg') repeat-x;
    background-size: auto 100%; /* vult de hoogte */
    margin: 5rem 0 2rem 0;
    animation: waveScroll 10s linear infinite;
}

@keyframes waveScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}

.accordion {
    display: flex;
    width: 90%;
    margin: 0 auto;
    gap: 1rem;
    justify-content: center;
    height: 620px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.accordion-item {
    flex: 1;
    transition: flex 0.4s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    will-change: transform, opacity;
}

    .accordion-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 15% top;
        filter: blur(.5px);
        transform: scale(1);
        transition: filter 0.3s ease, transform 0.3s ease;
    }


    .accordion-item .overlay-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 12px;
        z-index: 2;
        width: calc(100% - 32px);
        text-align: center;
        pointer-events: none;
    }

.overlay-text .link-button:hover {
    background-color: var(--orange-color);
}


.accordion-item .overlay-text h2 {
    margin: 0;
    line-height: 1;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--orange-color);
    text-shadow: 0 6px 18px rgba(0,0,0,0.6);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    pointer-events: auto;
    margin-bottom: 1rem;
}

.accordion-item:not(.active) .overlay-text .link-button,
.accordion-item:not(.active) .overlay-text p {
    display: none;
}

.accordion-item:hover:not(.active) {
    flex: 5;
}

.accordion-item:hover {
    box-shadow: 7px 10px 4px 3px rgba(0,0,0,0.2)
}

    .accordion-item:hover:not(.active) img {
        filter: blur(0);
        transform: scale(1.02);
    }

/* Geklikte item blijft actief */
.accordion-item.active {
    flex: 5 !important;
    z-index: 1;
    box-shadow: 7px 10px 4px 3px rgba(0,0,0,0.2)
}

.accordion-item .overlay-text {
    pointer-events: auto !important;
}




.accordion-item.active img {
    filter: blur(0);
    transform: scale(1.02);
}

.accordion-item.active .overlay-text .link-button,
.accordion-item:hover .overlay-text .link-button {
    display: block;
    width: 50%;
    margin: 0 auto;
    color: white;
}

.accordion-item.active .overlay-text p,
.accordion-item:hover .overlay-text p {
    display: block;
    width: 70%;
    margin: 0 auto;
    color: white;
    margin-bottom: 1rem;
}


.review-container
{
    background: var(--purple-color);
    position: relative;
    padding-bottom: 4rem;
}

.review-container .title-block {
    width: 95%;
    display: block;
    margin-right: auto;
    text-align: right;
    padding-top: 3rem;
}

.review-container .title-block h2 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--orange-color);
    margin: 0;
}

.review-container .title-block h4 {
    font-size: 2.5rem;
    color: var(--pink-color);
    margin: 0;
    font-weight: normal;
}

.review-container .wave-green
{
    margin: 2rem 0 2rem auto;
}

.review-container .wave-divider {
    position: absolute;
    bottom: 6rem;
    z-index: 100;
    width: 100%;
}

.review-container .wave-divider svg {
    height: 475px;
    width: 100%;
}

.review-container .button-text {
    justify-content: center;
    z-index: 200;
    margin-top: 3rem;
}

.review-section
{
    position: relative;
    width: 90%;
    margin: 3rem auto;
    z-index: 101;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

/* Card */
.review-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 7px 7px 4px 3px rgba(108, 75, 104,1);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
    outline: none;
}

    .review-card:focus,
    .review-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(108, 75, 104,0.16);
    }

/* Media area */
.review-card-media {
    position: relative;
    height: 260px;
    background: #f3f3f3;
}

    .review-card-media .review-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Logo in top-left (floating) */
.review-card-logo {
    position: absolute;
    left: 16px;
    bottom: -22px; /* overlaps card body a bit */
    width: 200px;
    height: 64px; /* vaste hoogte houdt horizontale logo's netjes */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    overflow: hidden; /* voorkomt dat vierkante logo’s uit de box steken */
}

    .review-card-logo img {
        max-width: 100%;
        max-height: 100%; /* voorkomt te hoge vierkante logo's */
        object-fit: contain; /* laat horizontaal én vierkant goed schalen */
        display: block;
        opacity: 1;
    }


/* Body */
.review-card-body {
    padding: 36px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    min-height: 140px;
}

.review-quote {
    font-style: normal;
    color: #5A3A55;
    margin: 0;
    line-height: 1.4;
    font-size: 1.25rem;
}

.review-meta {
    margin-top: auto;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
}

/* Modal */
.review-modal {
    position: fixed;
    inset: 0;
    display: none; /* shown via .open class in JS */
    z-index: 1200;
}

    .review-modal.open {
        display: block;
    }

.review-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14,12,20,0.6);
    backdrop-filter: blur(3px);
}

/* Panel */
.review-modal-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: min(1100px, 95%);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* Close button */
.modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

/* Modal inner layout */
.modal-inner {
    padding: 80px 28px 28px 28px;
}

.modal-header {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 14px;
}

.modal-logo img {
    width: 120px;
    height: auto;
    display: block;
    object-fit: contain;
}

.modal-title {
    margin: 0;
    font-size: 1.4rem;
}

.modal-byline {
    margin: 0;
    color: #777;
    font-size: .95rem;
}

/* Modal body with photo left and text right (responsive) */
.modal-body {
    display: flex;
    flex-direction: column; /* belangrijkste wijziging */
    gap: 18px; /* ruimte tussen foto en tekst */
    align-items: stretch; /* zorgt dat tekst full-width is */
}

.modal-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}


.modal-photo img {
    width: 420px;
    max-width: 40vw;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.modal-text {
    flex: 1;
    color: #333;
    line-height: 1.6;
}

/* Small screens */
@media (max-width:800px) {
    .review-card-media {
        height: 140px;
    }

    .review-card-logo {
        left: 14px;
        bottom: -18px;
        width: 70px;
        height: 36px;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-photo img {
        width: 100%;
        max-width: 100%;
    }

    .modal-inner {
        padding: 24px;
    }
}

.contact-container {
    position: relative;
    background: var(--green-color);
    overflow: visible;
    padding-bottom: 5rem;
}

.contact-container .title-block {
    width: 95%;
    display: block;
    margin-right: auto;
    text-align: right;
    padding-top: 3rem;
}

.contact-container .title-block h2 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--purple-color);
    margin: 0;
}

.contact-container .title-block h4 {
    font-size: 2.5rem;
    color: var(--pink-color);
    margin: 0;
    font-weight: normal;
}

.contact-container .wave-divider {
    z-index: 100;
    display: block;
    width: 100%;
    padding-bottom: 2rem;
}

.contact-container .wave-divider svg {
    height: 120px;
    width: 100%;
}

.contact-flexbox {
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    overflow: visible;
}

.form-container {
    align-self: flex-start;
    position: sticky;
    position: -webkit-sticky; /* Safari fix */
    top: 10rem;
    z-index: 2;
    /* geen height: max-content; laten vallen! */
}

.contact-information {
    width: 65%;
    min-height: 150vh; /* moet langer zijn dan de form-container */
}

.contact-information article.text-right {
    width: 80%;
    margin-left: auto;
}

.contact-information article.text-left {
    width: 80%;
    margin-right: auto;
}

.contact-information .wave-orange
{
    margin-left: auto;
    margin-top: 4rem;
}

.contact-information h4
{
    font-size: 2rem;
    font-weight: bold;
    color: var(--purple-color);
}

.contact-information p {
    color: var(--purple-color);
}

.map-container .wave-orange {
    margin: 2rem auto;
}

.contact-container .embed-map-responsive {
    position: relative;
    text-align: right;
    width: 100%;
    height: 0;
    padding-bottom: 40%;
}

.embed-map-container {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.embed-map-frame {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* grid */
.team-flexbox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: start;
    margin: 6rem 0;
}

/* card */
.team-card {
    width: 280px;
    background: #ffffff;
    border-radius: 8px;
    padding: 86px 28px 28px; /* veel top-padding voor de zwevende foto */
    box-shadow: 7px 7px 4px rgba(0,0,0,.25);
    border: 2px solid #F48C70; /* oranje dunne rand zoals screenshot */
    position: relative;
    text-align: left;
    transition: transform .18s ease, box-shadow .18s ease;
}

.team-card:hover,
.team-card:focus {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(18,22,24,0.10), 0 2px 0 rgba(68,37,55,0.04);
    outline: none;
}

/* zwevende ronde foto (centraal bovenaan) */
.team-photo {
    position: absolute;
    left: 15px; /* foto links uitgelijnd zoals in jouw screenshot */
    top: -56px; /* hoogte van de zweefpositie */
    width: 128px;
    height: 128px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff; /* witte ring rond de foto */
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: #f3f3f3;
}

    .team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* card inner (content) */
.team-card-inner {
    display: block;
    padding: 0;
}

/* naam en functie */
.team-name {
    font-weight: 800;
    font-size: 20px;
    margin: 6px 0 2px;
    color: #111111;
    letter-spacing: 0.2px;
}

.team-role {
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    color: #6a4b7b; /* paarse rolkleur */
    margin-bottom: 20px;
    opacity: .95;
}

/* contact (email / phone) - stacked, left aligned and spaced */
.team-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.team-contact-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: #F48C70; /* oranje tekstkleur */
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 8px 6px 0;
    border-radius: 6px;
}

    .team-contact-link img {
        width: 32px;
        height: 32px;
        flex: 0 0 auto;
        color: inherit;
    }

    .team-contact-link span {
        color: inherit;
    }

    /* subtiele hover effect op links */
    .team-contact-link:hover {
        background: rgba(244,140,112,0.06);
        transform: translateX(2px);
    }

.team-container {
    text-align: right;
}

/* small screens */
@media (max-width: 720px) {
    .team-card {
        width: 90%;
        padding-top: 74px;
    }

    .team-photo {
        left: 24px;
        top: -42px;
        width: 84px;
        height: 84px;
        border-width: 5px;
    }

    .team-name {
        font-size: 18px;
    }
}

/* card */
.value-card {
    width: 256px;
    background: var(--green-color);
    border-radius: 8px;
    padding: 86px 28px 28px; /* veel top-padding voor de zwevende foto */
    box-shadow: 7px 7px 4px rgba(0,0,0,.25);
    border: 2px solid #F48C70; /* oranje dunne rand zoals screenshot */
    position: relative;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .value-card:hover,
    .value-card:focus {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(18,22,24,0.10), 0 2px 0 rgba(68,37,55,0.04);
        outline: none;
    }

/* zwevende ronde foto (centraal bovenaan) */
.value-photo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -56px; /* hoogte van de zweefpositie */
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 1rem;
    overflow: hidden;
    border: 3px solid var(--light-orange-color); /* witte ring rond de foto */
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: var(--green-color);
}

    .value-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* card inner (content) */
.value-card-inner {
    display: block;
    padding: 0;
}

/* naam en functie */
.value-title {
    font-weight: 800;
    font-size: 24px;
    margin: 6px 0 1rem;
    color: var(--orange-color);
    letter-spacing: .1em;
}

.value-desc {
    font-family: inherit;
    font-weight: 600;
    font-size: 1.25rem;
    color: #6a4b7b; /* paarse rolkleur */
    margin-bottom: 20px;
    opacity: .95;
}

    
/*======================================================
                        Navbar
======================================================*/
    #navbar {
        background: rgba(0,0,0,0);
        color: rgb(13, 26, 38);
        position: absolute;
        top: 0;
        left: 0;
        height: 5rem;
        line-height: 3rem;
        font-weight: 600;
        width: 100%;
        z-index: 1000;
        padding: 16px 0px 16px 0px;
    }

    #navbar.scrolled-navbar {
        background: white;
        transition: background 0.3s ease;
    }

        #navbar.scrolled-navbar.menu-open {
            background: transparent !important;
        }

        #navbar.scrolled-navbar .nav-links > li > a {
            color: black;
        }

        #navbar.scrolled-navbar .submenu-columns a
        {
            color: var(--green-color);
        }

        #navbar.scrolled-navbar .nav-links .submenu .submenu-columns a {
            color: white;
        }



            #navbar.scrolled-navbar logo {
                width: 200px;
            }

    .nav-wrapper {
        display: flex;
        align-items: center; /* verticaal centreren */
        justify-content: space-between; /* logo links, menu rechts */
        height: 4.5rem; /* geef navbar vaste hoogte */
        position: relative;
    }

    @media(max-width: 1082px) {
        .nav-wrapper {
            width: 100%;
        }
    }

    @media(max-width: 768px) {
        .nav-wrapper {
            width: 100%;
        }
    }

    @media(max-width: 638px) {
        .nav-wrapper {
            width: 100%;
        }
    }


    .logo, .logo img {
        position: relative;
        margin-left: 1.75rem;
        height: 3.125rem;
        display: block;
        width: auto;
        z-index: 1000;
    }


    @media(max-width: 768px) {
        .logo {
            margin-left: 5px;
        }

    }

    #navbar #menu > ul {
        display: inline-block;
        float: right;
        list-style: none;
       /*margin-top: 0px;*/
        text-align: right;
        transition: transform 0.5s ease-out;
        -webkit-transition: transform 0.5s ease-out;
    }

    @media(orientation: landscape) {
        #navbar #menu > ul {
            display: inline-block;
        }
    }

    #menu {
        position: relative;

    }

    #navbar li, .search {
        display: inline-block;
    }

    #navbar .dropdown {
        position: relative;
    }

    #navbar .dropdown .submenu {
        position: absolute;
        top: calc(100%);
        left: 0;
        display: none;
        transform: translateX(-15%);
        list-style: none;
        padding: 0.8rem 1rem;
        margin: 0;
        background-color: var(--purple-color); /* zelfde donkerblauw */
        border: 1px solid var(--orange-color, --orange-color);
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(243, 200, 70, 0.15);
        animation: fadeInDown 0.3s ease forwards;
        z-index: 999;
    }



#navbar .dropdown.xl .submenu {
    transform: translateX(-38%);
    animation: fadeInDownXL 0.5s ease forwards; /* Apply the animation */
    align-items: flex-start;
}

#navbar .dropdown:hover .submenu {
    display: flex;
}

#navbar .submenu-columns {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: auto;
}

#navbar .submenu-columns li {
    display: block;
    width: 100%;
}

#navbar .submenu-columns a {
    display: block;
    min-width: 200px; /* Grotere minimale breedte */
    color: var(--green-color); /* wit */
    text-decoration: none;
    text-align: center;
    margin: 0;
    padding: 0.5rem 0.8rem;
    font-family: Poppins;
    font-size: 1.25rem;
    letter-spacing: 1px;
    transition: background 0.2s ease, color 0.2s ease;
}

#navbar .submenu-columns a:hover {
    color: var(--orange-color);
}

.search {
    position: relative;
    margin-left: 14px;
}

.search i
{
    color: #fff;
    font-size: 1rem;

}

.search:hover .search-wrapper {
    display: block;
}

.search-wrapper {
    display: none;
    position: absolute;
    top: 40px; /* Plaats de search-wrapper onder het zoekicoon */
    transform: translateX(-80%); /* Center de zoekbox */
    width: auto; /* Neem de volledige breedte in beslag */
}

/* Stijl voor de zoekvorm (optioneel) */
.search-form input {
    border: none;
    padding: 15px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#searchIcon.active {
    color: var(--red-color);
}

#searchIcon:hover {
    cursor: pointer;
}

#searchIcon:hover + .search-wrapper,
.search-wrapper:hover {
    display: block;
}

#navbar .nav-links > li > a {
    color: #f3f3f3;
    display: block;
    font-size: 1.25rem; /* iets flexibeler dan vaste px */
    height: 2.5rem;
    letter-spacing: 1.5px; /* iets minder, oogt netter */
    margin: 0 1.2rem;
    padding: 0 4px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: Poppins;
}

#navbar .nav-links > li > a:hover {
    /* border-bottom: 1px solid rgb(28, 121, 184); */
    color: var(--light-orange-color);
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
}

/* Animated Bottom Line */
#navbar .nav-links > li > a:before, .nav-links > li > a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: -1px;
    background: var(--orange-color);
}

#navbar .nav-links > li > a:before {
    left: 0;
    transition: 0.5s;
}

#navbar li a:after {
    background: var(--orange-color);
    right: 0;
        transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#navbar li a:hover:before {
    background: var(--orange-color);
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#navbar li a:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s; 
}

/*======================================================
                    Mobile Menu Menu Icon
======================================================*/
@media (orientation: portrait), (max-width: 768px) {
    .menuIcon {
        cursor: pointer;
        display: block;
        position: fixed;
        right: 16px;
        top: 20px;
        width: 27px; /* container */
        height: 23px; /* container */
        z-index: 1000;
    }

        /* Hardened bars (geheel gescope�d, vaste px, reset) */
        .menuIcon .icon-bars,
        .menuIcon .icon-bars::before,
        .menuIcon .icon-bars::after {
            content: '';
            position: absolute;
            left: 0;
            width: 20px; /* 1.25rem -> 20px, consistent */
            height: 2px;
            background: var(--orange-color);
            display: block;
            margin: 0;
            padding: 0;
            border: 0;
            box-sizing: content-box;
            line-height: 0;
            transition: transform .4s cubic-bezier(0.68,-0.55,0.265,1.55), opacity .3s, width .3s;
        }

        /* midden precies in het midden van de container */
        .menuIcon .icon-bars {
            top: 50%;
            transform: translateY(-50%);
        }

            /* boven/onder met gelijke offset */
            .menuIcon .icon-bars::before {
                top: -8px;
            }

            .menuIcon .icon-bars::after {
                top: 8px;
            }

            /* overlay-variant alleen kleur/animaties, zelfde geometrie houden */
            .menuIcon .icon-bars.overlay,
            .menuIcon .icon-bars.overlay::before,
            .menuIcon .icon-bars.overlay::after {
                background: var(--orange-color);
            }

            /* jouw animaties, maar widths in px */
            .menuIcon .icon-bars.overlay {
                animation: middleBar 3s infinite .5s;
            }

                .menuIcon .icon-bars.overlay::before {
                    animation: topBar 3s infinite .2s;
                }

                .menuIcon .icon-bars.overlay::after {
                    animation: bottomBar 3s infinite 1s;
                }

    @keyframes middleBar {
        0%,100% {
            width: 0
        }

        50% {
            width: 20px
        }
    }

    @keyframes topBar {
        0%,100% {
            width: 0
        }

        50% {
            width: 10px
        }
    }

    @keyframes bottomBar {
        0%,100% {
            width: 0
        }

        50% {
            width: 15px
        }
    }

    /* Toggle (optioneel, zelfde als je had) */
    .menuIcon.toggle .icon-bars {
        background: transparent;
    }

        .menuIcon.toggle .icon-bars::before {
            transform: translateY(8px) rotate(45deg);
        }

        .menuIcon.toggle .icon-bars::after {
            transform: translateY(-8px) rotate(-45deg);
        }

        .menuIcon.toggle .icon-bars.overlay,
        .menuIcon.toggle .icon-bars.overlay::before,
        .menuIcon.toggle .icon-bars.overlay::after {
            opacity: 0;
        }

    #navbar #menu > ul
    {
        display: none;
    }
}


/*======================================================
                    Responsive Mobile Menu 
======================================================*/
.overlay-menu {
    position: fixed;
    inset: 0;
    width: 95%;
    height: 100vh;
    background: var(--purple-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.25s ease-out, opacity 0.25s ease-out;
    opacity: 0;
    overflow-y: auto;
    padding: 8rem 2rem;
}

    .overlay-menu.open {
        transform: translateX(0);
        opacity: 1;
    }

    /* Grid voor main links */
    .overlay-menu ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 2rem;
        text-align: left;
        width: 100%;
        max-width: 900px;
        padding: 0;
        margin: 0;
    }

    .overlay-menu li {
        list-style: none;
    }

        .overlay-menu li a {
            display: block;
            font-size: clamp(1.1rem, 2.5vw, 1.8rem);
            letter-spacing: .05em;
            padding: .5rem 0;
            font-family: Poppins, sans-serif;
            font-weight: 600;
            text-decoration: none;
            color: var(--pink-color);
            transition: color 0.3s ease, border 0.3s ease;
        }

    /* Submenu styling */
    .overlay-menu .submenu-columns {
        margin-top: .5rem;
    }

        .overlay-menu .submenu-columns li a {
            font-size: clamp(0.9rem, 2vw, 1.4rem);
            font-weight: 400;
            padding: .25rem 0;
            color: #e9d4cf;
        }

.overlay-menu li a:hover,
.overlay-menu li a:active {
    border-bottom: 3px solid var(--gold-color);
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
}

.overlay-menu #searchIcon 
{
    font-size: 1.8em;
}

.whatsappbutton {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

    .whatsappbutton:hover {
        opacity: 0.8;
    }



/* CUSTOM FONTS */

@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins.ttf");
}

@font-face {
    font-family: PoppinsBold;
    src: url("../fonts/Poppins-Bold.ttf");
}

@font-face {
    font-family: DMSans;
    src: url("../fonts/DMSans.ttf");
}

/*======================================================
                    Footer 
======================================================*/

footer {
    background-color: var(--purple-color);
    color: #ffffff;
    padding: 2rem 1rem;
}

footer p, .link-section a
{
    font-size: 1.25rem;
}

.footer-container {
    position: relative;
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-block-xl, .footer-block {
    position: relative;
    width: 25%;
}

.footer-block {
    width: 20%;
}

    .footer-block > h2, .footer-block-xl > h2 {
        margin-top: 0;
        color: var(--orange-color);
    }

.link-section ul {
    list-style: none;
    padding-left: 0;
}

.link-section li {
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .link-section li span {
        float: right;
    }

    .link-section li a {
        text-decoration: none;
        color: #ffffff;

    }

        .link-section li a:hover {
            text-decoration: underline;
            color: var(--orange-color);
        }

.social-flexbox {
    display: flex;
    gap: 15%;
    margin-top: 1rem;
}

    .social-flexbox .social {
        padding: 5px;
        width: 20%;
        height: auto;
        text-align: center;
        font-size: 3rem;
        border-radius: 8px;
        color: #ffffff;
        transition: all 0.3s ease;
    }

        .social-flexbox .social a {
            text-decoration: none;
            color: #ffffff;
        }

        .social-flexbox .social:hover {
            border-color: #d4af37;
            background-color: var(--light-orange-color);
            
        }

        .social-flexbox .social a:hover {
            color: #fff;
        }

        .contact-block {
            margin-top: 1rem;
            display: flex;
            gap: 1rem;
            align-items: center;
        }

            .contact-block i {
                color: var(--light-orange-color);
                font-size: 2rem;
            }

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 2rem auto 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.copyright {
    order: 1;
}

.footer-creator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    order: 2;
    color: #ffffff;
}

    .footer-creator i {
        color: var(--orange-color);
    }

    .footer-creator img {
        width: 60%;
    }


/*==================================
               FORMS
==================================*/
.umbraco-forms-form {
    padding: 2rem;
    background-color: var(--purple-color); 
    color: var(--pink-color); 
    border-radius: 6px;
    box-shadow: 7px 7px 4px rgba(0, 0, 0, 0.25);
    font-family: DMSans, sans-serif;
    transition: transform 0.3s ease;
    max-width: 800px;
    min-width: 50%;
    width: 100%;
    margin: 0 auto;
}

.umbraco-forms-page {
    width: 100%;
    margin: 0 auto;
}

.umbraco-forms-caption {
    font-size: 2em !important;
    line-height: 2em !important;
    color: var(--pink-color); /* goudkleur */
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.umbraco-forms-field {
    clear: both;
    margin-bottom: 1rem;
}

.umbraco-forms-field-wrapper {
    display: flex;
    flex-direction: column;
}

.umbraco-forms-field div label {
    display: inline;
    color: #f3f3f3; /* lichte tekst */
}

label.umbraco-forms-label {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--pink-color);
    background: none !important;
}

.umbraco-forms-form small {
    display: block;
    float: left;
    clear: both;
    font-size: 0.85rem;
    color: #ccc;
    padding: 5px 0;
}

.umbraco-forms-form fieldset {
    padding: 0;
    border: none;
}

.umbraco-forms-form .umbraco-forms-navigation {
    padding: 1em 0;
    text-align: right;
}

.umbraco-forms-form legend {
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.2em;
    display: block;
    color: #f3c846;
}

.umbraco-forms-form input.text,
.umbraco-forms-form input.title,
.umbraco-forms-form select,
.umbraco-forms-form textarea {
    border: 1px solid var(--orange-color); /* goudkleur */
    background-color: transparent;
    color: #fff;
    font-family: DMSans, sans-serif;
    padding: 0.7rem;
    border-radius: 4px;
    transition: border 0.3s ease, background-color 0.3s ease;
    width: 95%;
}

    .umbraco-forms-form input.text:focus,
    .umbraco-forms-form input.title:focus,
    .umbraco-forms-form select:focus,
    .umbraco-forms-form textarea:focus {
        border: 1px solid var(--light-orange-color); /* lichtere goudkleur */
        background-color: rgba(243, 200, 70, 0.05);
        outline: none;
    }

.umbraco-forms-form textarea {
    height: 150px;
}

.umbraco-forms-form input.fileupload {
    height: auto !important;
    color: #f3f3f3;
}

.umbraco-forms-form span.checkbox,
.umbraco-forms-form span.checkboxlist,
.umbraco-forms-form span.radiobuttonlist {
    display: block;
    float: left;
    padding: 10px;
    color: #f3f3f3;
}

.umbraco-forms-form .checkboxlist label {
    float: left;
    clear: left;
}

.umbraco-forms-form .checkbox input,
.umbraco-forms-form .checkboxlist input,
.umbraco-forms-form .radiobuttonlist input {
    width: auto !important;
    height: auto !important;
    border: none !important;
    display: inline !important;
    accent-color: var(--light-orange-color); /* moderne checkbox kleur */
}

.umbraco-forms-form .hiddenfield {
    display: none;
}


.umbraco-forms-button {
    margin-right: 10px;
    padding: 2px 10px
}

.btn.primary {
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 0.5rem 2rem;
    border: 2px solid var(--orange-color);
    border-radius: 8px;
    margin: auto 0;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 300ms ease;
    cursor: pointer;
    background: transparent;
    font-family: DMSans, sans-serif;
    width: 100%;
}

/* Hover state */
.btn.primary:hover {
    background: var(--orange-color);
    color: var(--light-color);
    border-left: 8px solid var(--orange-color);
}


.umbraco-forms-error-message {
    padding: .8em;
    margin-bottom: .5em;
    border: 2px solid #fbc2c4
}

.umbraco-forms-error-message {
    background: #fbe3e4;
    color: #8a1f11
}

.umbraco-forms-form input.contourError, .umbraco-forms-form input.input-validation-error, .umbraco-forms-form textarea.contourError, .umbraco-forms-form textarea.input-validation-error {
    background: #fff2e6;
    border-color: #ff944d;
    color: #cc5200;
}

.umbraco-forms-form span.contourError, .umbraco-forms-form span.field-validation-error {
    color: #8a1f11 !important;
    background: 0 0 !important
}

.umbraco-forms-form #recaptcha_widget_div {
    margin-left: 200px
}

.umbraco-forms-form .field-validation-error {
    padding-left: 5px
}

.umbraco-forms-hidden {
    display: none
}


/* Desktop */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

/* Mobiel & tablets */
@media (max-width: 1200px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}


/*==================================
            MEDIA QUERIES
==================================*/

/* Grote schermen */
@media only screen and (min-width: 1024px) and (max-width: 1460px) {

    .logo, .logo img
    {
        height: 3.5rem;
    }

    #navbar #menu ul
    {
        margin-right: 50px;
    }

    #navbar #menu li a
    {
        font-size: 12px;
        margin: 0 .4rem;
    }

    .footer-block-xl
    {
        width: 50%;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-block-xl {
        width: 45%;
    }

    .footer-block {
        width: 45%;
    }

    .contact-information
    {
        width: 50%
    }

    .embed-map-responsive {
        width: 100%;
    }

    .team-flexbox
    {
        gap: 5rem;
    }
}

/* Middelgrote schermen */
@media only screen and (min-width: 1024px) and (max-width: 1200px) {

    .logo, .logo img {
        height: 3rem;
    }

    #navbar #menu li a 
    {
        font-size: 1.2rem;
        margin: 0 .4rem;
    }
}
@media only screen and (min-width: 923px) and (max-width: 1023px) {

    .logo, .logo img {
        height: 2rem;
    }

    #navbar #menu li a {
        font-size: 1.2rem;
        margin: 0 .4rem;
    }

    #navbar #menu ul {
        margin-right: 50px;
    }

    #navbar .dropdown.xl .submenu
    {
        left: -51px
    }

    #navbar .submenu-columns a {
        padding: 0.1rem 0.1rem;
    }

    #navbar #menu li a {
        font-size: 1rem;
        margin: 0 .20rem;
    }

    .contact-information
    {
        width: 45%;
    }

    .embed-map-responsive
    {
        width: 100%;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-block-xl {
        width: 45%;
    }

    .footer-block {
        width: 45%;
    }
}



/* Middelgrote schermen */
@media only screen and (min-width:768px) and (max-width:1024px) and  (orientation: portrait)
{
    #navbar #menu ul {
        display: none;
    }

    .team-flexbox {
        display: flex;
        width: 90%;
        margin: 4rem auto;
        flex-direction: column;
        gap: 4rem;
        align-items: center;
    }

    .team-card
    {
        width: 100%;
    }


}
@media only screen and (min-width: 768px) and (max-width: 922px) {

    .logo, .logo img {
        margin-left: 10px;
        height: 3rem;
    }

    #navbar #menu ul {
        padding-left: 0;
        margin-right: 50px;
    }

    #navbar #menu li a {
        font-size: 9px;
        margin: 0 .3rem;
    }

    .review-grid {
        display: block;
    }

    .review-card
    {
        margin-bottom: 2rem;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-block-xl
    {
        width: 47%;
    }

    .footer-block-xl.text, .footer-block.text p
    {
        width: 100% ;
    }

    .footer-block
    {
        width: 45%;
    }

    .contact-flexbox {
        display: block;
    }


    .contact-information {
        width: 100%;
    }

    .umbraco-forms-form {
        width: auto;
    }

    .contact-information article.text-left, .contact-information article.text-right {
        width: 100%;
    }

    .form-container {
        position: relative;
        top: 0px;
    }



}

/* Kleine schermen */
@media only screen and (max-width: 767px) {

    .logo, .logo img {
        height: 2.5rem;
    }

    #navbar #menu ul {
        display: none;
    }

    .review-container .title-block h2 {
        font-size: 3rem;
    }


    .review-container .title-block h4 {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .button-text
    {
        width: 90%;
        margin: 0 auto;
    }

    .link-button {
        font-size: 1rem;
    }

    .contact-container .title-block h2
    {
        font-size: 3rem;
    }


    .footer-container, .footer-bottom-container {
        display: block;
    }

    .footer-block, .footer-block-xl
    {
        width: 100%;
        margin-bottom: 1rem;
    }

    .footer-bottom-container
    {
        width: 100%;
        
    }

    .copyright {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }

    .footer-creator
    {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-left: 3.5rem;
    }

    .form-container
    {
        position: relative;
        top: 0px;
    }

    .contact-flexbox
    {
        display: block;
    }

    .contact-information {
        width: 100%;
    }

    .umbraco-forms-form
    {
        width: auto;
    }

    .contact-information article.text-left, .contact-information article.text-right
    {
        width: 100%;
    }

    .review-grid {
        display: block;
    }

    .review-card
    {
        margin-bottom: 2rem;
    }


    .overlay-menu li a {
        font-size: 1.5rem
    }

    .overlay-menu .submenu-columns li a
    {
        font-size: 1rem
    }
}

/* =========================================
   ≤ 480px (extra hook)
   ========================================= */
@media (max-width: 480px) {
    /* add styles for phones medium */
    #navbar {
        padding: 0 0 16px 0;
    }

    .logo, .logo img {
        height: 2rem;
    }

    .overlay-menu li a {
        font-size: 1rem;
    }

    .overlay-menu .submenu-columns li a {
        font-size: 1rem;
    }
}

/* =========================================
   ≤ 375px (extra hook - small phones)
   ========================================= */
@media (max-width: 375px) {
    /* add styles for small phones */

    .logo, .logo img {
        height: 2rem;
    }

    .overlay-menu li a {
        font-size: .75rem;
    }

    .overlay-menu .submenu-columns li a {
        font-size: .75rem;
    }

    .overlay-menu #menu {
        margin-top: 3rem;
    }


    .review-container h2, .contact-container h2 {
        font-size: 2.5rem !important;
    }

    .review-container h4 {
        font-size: 1rem !important;
    }

    .team-container
    {
        width: 90%;
        margin: 0 auto;
    }

}
