:root {
    --primary-pink: #E40173;
    --primary-pink-hover: #e40173e6;
    --light-pink-back: #FCE5F0;
    --primary-blue: #11A7D2;
    --text-white: #ffffff;
    --text-black: #000000;
    --text-gray: #212529bf;
    --dark-background: #1F242E;
    --gray-background: #F8F8F9;
    --white-back: #ffffff;

    --primary: #ec008c;
    --text: #1f242e;
    --muted: #6b7280;
    --border: #e5e7eb;
}

/* header */

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header a {
    text-decoration: none;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.desktop-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.desktop-nav a,
.mega-trigger {
    background: none;
    border: none;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--muted);
    border-radius: 6px;
    transition: .2s;
}

.desktop-nav a:hover {
    background: #f3f4f6;
    color: var(--text);
}

.desktop-nav .mega-trigger:hover {
    background: #f3f4f6;
    color: var(--text);
}


.simple-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.simple-dropdown.show {
    display: flex;
}

.simple-dropdown a {
    padding: 10px 20px !important;
    border-radius: 0 !important;
    font-weight: 500;
    color: var(--text);
    display: block;
    width: 100%;
}

.simple-dropdown a:hover {
    color: var(--primary) !important;
}


.mega-trigger.active {
    background: #fce7f3;
    color: var(--primary);
}

.arrow {
    margin-left: 6px;
    font-size: 12px;
    transition: .3s
}

.mega-trigger.active .arrow {
    transform: rotate(180deg)
}

.mijn-simi {
    color: var(--primary);
    font-weight: 700;
}

.mijn-simi-mobile {
    color: var(--primary) !important;
    font-weight: 700;
}

.mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px
}

/* MEGA */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .05);
    display: none;

    max-height: 80vh;   
    overflow-y: auto;   
    
    scrollbar-width: none;  
    -ms-overflow-style: none;
}

.mega-menu.show {
    display: block
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    padding: 40px 0;
    grid-auto-flow: row dense;
    align-items: start;
}

.mega-title {
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.mega-col {
    height: fit-content;
}

.mega-col a {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 4px 0;
    color: var(--text);
    font-size: 14px;
    transition: .2s;
}

.mega-col a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.sub {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--muted);
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 15px 20px;
}

.mobile-menu.open {
    display: block;
}

/* remove mobile header section */
.mobile-head {
    display: none;
}

.mobile-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text);
}

.mobile-acc .acc-head,
.acc-sub {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
}

/* Bestemmingen main arrow */
.acc-head>i {
    transition: transform .3s ease;
}

.acc-head.open>i {
    transform: rotate(180deg);
}

/* Sub menu arrow */
.acc-sub>i {
    transition: transform .3s ease;
}

.acc-sub.open>i {
    transform: rotate(180deg);
}



.acc-body,
.acc-links {
    display: none
}

.acc-body.open,
.acc-links.open {
    display: block
}

.mobile-acc .acc-body {
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: none;  
    -ms-overflow-style: none; 
}

@media(max-width:992px) {
    .desktop-nav {
        display: none
    }

    .mobile-btn {
        display: block
    }

    .mijn-simi {
        display: none;
    }
}

/* footer */


.site-footer {
    position: relative;
}

.site-footer-bg {
    object-fit: cover;
    z-index: 0;
}

.site-footer-overlay {
    background: rgba(255, 255, 255, 0.786);
    z-index: 1;
}

.site-footer>* {
    position: relative;
    z-index: 2;
}

/* CTA bar */
.site-footer-cta {
    background: #FCE5F0;
}

/* Footer links */
.site-footer .footer-links li {
    margin-bottom: .5rem;
}

.site-footer .footer-links a {
    text-decoration: none;
    color: #6c757d;
    transition: color .2s ease;
}

/* Hover rule requested */
.site-footer .footer-links a:hover {
    color: var(--primary-pink);
}

/* Bottom links */
.site-footer .border-top a {
    text-decoration: none;
    color: #6c757d;
    transition: color .2s ease;
}

.site-footer .border-top a:hover {
    color: var(--primary-pink);
}

/* Pink Button */
.btn-primary-pink {
    background: var(--primary-pink);
    color: #fff;
    border: none;
}

.btn-primary-pink:hover {
    background: #d10063;
    color: #fff;
}


.site-footer .site-footer-links ul{
    list-style: none;
    padding-left: 0px !important;
}
.site-footer .site-footer-links ul li{
    background: url(../../svg/erow.svg) no-repeat center left;
    font-weight: 400;
    margin-bottom: 6px;
    padding-left: 15px;
}
.site-footer .site-footer-links ul li a{
    font-size: 15px;
    color:#6c757d;
    text-decoration: none;
}
.site-footer .site-footer-links ul li a:hover{
    color:#e40173;
    text-decoration: none;
}