/* ============================================================
   FYSIOHUB HEADER
   ============================================================ */

:root {
    --fh-header-purple: #6956E8;
    --fh-header-purple-dark: #5541D7;
    --fh-header-turquoise: #28C7B7;
    --fh-header-navy: #102A43;
    --fh-header-white: #FFFFFF;
    --fh-header-border: #E8EDF3;
}


/* ============================================================
   HOSTINGER / WORDPRESS RESET
   ============================================================ */

.wp-block-shortcode:has(.fh-header),
.wp-block-template-part:has(.fh-header) {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

.wp-block-group:has(.fh-header) {
    max-width: none !important;
}


/* ============================================================
   HEADER
   ============================================================ */

body .fh-header {
    width: 100vw !important;
    max-width: none !important;

    position: relative !important;
    left: 50% !important;

    margin: 0 !important;
    margin-left: -50vw !important;

    padding: 0 !important;

    z-index: 1000;

    background: #FFFFFF !important;

    border: 0 !important;
    border-bottom: 1px solid var(--fh-header-border) !important;

    box-shadow:
        0 3px 20px rgba(16, 42, 67, 0.035);

    font-family: "Montserrat", sans-serif !important;
}

body .fh-header,
body .fh-header * {
    box-sizing: border-box !important;
}


/* ============================================================
   HEADER CONTAINER
   ============================================================ */

body .fh-header .fh-header-container {
    width: calc(100% - 48px) !important;
    max-width: 1550px !important;

    height: 94px !important;
    min-height: 94px !important;

    position: relative !important;

    display: flex !important;
    flex-direction: row !important;

    /*
     * ALLES VERTICAAL CENTREREN
     */
    align-items: center !important;

    margin: 0 auto !important;

    padding: 0 24px !important;
}


/* ============================================================
   LOGO
   ============================================================ */

body .fh-header .fh-header-logo {
    height: 94px !important;

    flex: 0 0 auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--fh-header-navy) !important;

    text-decoration: none !important;
}

body .fh-header .fh-logo-text {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--fh-header-navy) !important;

    font-family: "Montserrat", sans-serif !important;

    font-size: 31px !important;
    font-weight: 800 !important;

    line-height: 1 !important;

    letter-spacing: -0.045em !important;

    white-space: nowrap !important;
}

body .fh-header .fh-logo-text span {
    color: var(--fh-header-purple) !important;
}


/* ============================================================
   NAVIGATIE
   ============================================================ */

body .fh-header .fh-header-nav {
    height: 94px !important;

    flex: 1 1 auto !important;

    display: flex !important;
    flex-direction: row !important;

    /*
     * VERTICAAL CENTREREN
     */
    align-items: center !important;

    justify-content: center !important;

    gap: 46px !important;

    margin: 0 60px !important;
    padding: 0 !important;
}

body .fh-header .fh-header-nav a {
    width: auto !important;
    height: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 auto !important;

    position: relative !important;

    margin: 0 !important;
    padding: 8px 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    outline: 0 !important;

    background: transparent !important;

    box-shadow: none !important;

    color: var(--fh-header-navy) !important;

    text-decoration: none !important;

    font-family: "Montserrat", sans-serif !important;

    font-size: 17px !important;
    font-weight: 650 !important;

    line-height: 1.2 !important;

    white-space: nowrap !important;

    transition: color 0.18s ease !important;
}


/* Hover = alleen paars */

body .fh-header .fh-header-nav a:hover {
    background: transparent !important;

    color: var(--fh-header-purple) !important;

    box-shadow: none !important;
}


/* Actieve pagina = paarse tekst */

body .fh-header .fh-header-nav a.is-active {
    background: transparent !important;

    color: var(--fh-header-purple) !important;
}


/* Geen achtergronden/indicatoren */

body .fh-header .fh-header-nav a::before,
body .fh-header .fh-header-nav a::after {
    display: none !important;

    content: none !important;
}


/* ============================================================
   RECHTERKANT
   ============================================================ */

body .fh-header .fh-header-right {
    height: 94px !important;

    flex: 0 0 auto !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: flex-end !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* ============================================================
   ACCOUNT
   ============================================================ */

body .fh-header .fh-header-account {
    width: auto !important;
    height: auto !important;

    min-width: 0 !important;

    display: inline-flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 11px !important;

    margin: 0 !important;
    padding: 8px 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    outline: none !important;

    background: transparent !important;

    box-shadow: none !important;

    color: var(--fh-header-navy) !important;

    text-decoration: none !important;

    font-family: "Montserrat", sans-serif !important;

    font-size: 16px !important;
    font-weight: 650 !important;

    line-height: 1.2 !important;

    white-space: nowrap !important;

    transition: color 0.18s ease !important;
}

body .fh-header .fh-header-account:hover {
    background: transparent !important;

    color: var(--fh-header-purple) !important;

    box-shadow: none !important;

    transform: none !important;
}

body .fh-header .fh-header-account::before,
body .fh-header .fh-header-account::after {
    display: none !important;

    content: none !important;
}


/* ============================================================
   ACCOUNT NAAM
   ============================================================ */

body .fh-header .fh-account-text {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: inherit !important;

    font-family: "Montserrat", sans-serif !important;

    font-size: inherit !important;
    font-weight: inherit !important;

    line-height: 1.2 !important;

    white-space: nowrap !important;
}


/* ============================================================
   ACCOUNT POPPETJE
   ============================================================ */

body .fh-header .fh-account-icon {
    width: 29px !important;
    height: 29px !important;

    flex: 0 0 29px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;

    box-shadow: none !important;

    color: var(--fh-header-purple) !important;
}

body .fh-header .fh-account-icon svg {
    width: 25px !important;
    height: 25px !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: none !important;

    stroke: currentColor !important;

    stroke-width: 1.9 !important;

    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


/* ============================================================
   MOBIELE MENUKNOP
   ============================================================ */

body .fh-header .fh-menu-toggle {
    display: none !important;

    width: 44px !important;
    height: 44px !important;

    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid var(--fh-header-border) !important;

    border-radius: 11px !important;

    background: #FFFFFF !important;

    box-shadow: none !important;

    cursor: pointer;
}

body .fh-header .fh-menu-toggle span {
    width: 19px !important;
    height: 2px !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 100px !important;

    background: var(--fh-header-navy) !important;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease !important;
}

body .fh-header .fh-menu-toggle.is-open span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg) !important;
}

body .fh-header .fh-menu-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
}

body .fh-header .fh-menu-toggle.is-open span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg) !important;
}


/* ============================================================
   MOBIEL MENU
   ============================================================ */

body .fh-header .fh-mobile-menu {
    display: none !important;

    position: absolute !important;

    top: calc(100% + 8px) !important;

    left: 0 !important;
    right: 0 !important;

    z-index: 1001;

    margin: 0 !important;
    padding: 14px !important;

    border: 1px solid var(--fh-header-border) !important;

    border-radius: 16px !important;

    background: #FFFFFF !important;

    box-shadow:
        0 20px 55px rgba(16, 42, 67, 0.14) !important;
}

body .fh-header .fh-mobile-menu.is-open {
    display: block !important;
}

body .fh-header .fh-mobile-menu nav {
    display: flex !important;

    flex-direction: column !important;

    gap: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}

body .fh-header .fh-mobile-menu nav a {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 14px 12px !important;

    border: 0 !important;

    background: transparent !important;

    color: var(--fh-header-navy) !important;

    text-decoration: none !important;

    font-family: "Montserrat", sans-serif !important;

    font-size: 16px !important;
    font-weight: 650 !important;
}

body .fh-header .fh-mobile-menu nav a:hover {
    background: transparent !important;

    color: var(--fh-header-purple) !important;
}


/* ============================================================
   MOBIEL ACCOUNT
   ============================================================ */

body .fh-header .fh-mobile-account {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 10px !important;

    margin: 8px 0 0 !important;

    padding: 14px 12px !important;

    border-top: 1px solid var(--fh-header-border) !important;

    background: transparent !important;

    color: var(--fh-header-purple) !important;

    text-decoration: none !important;

    font-family: "Montserrat", sans-serif !important;

    font-size: 16px !important;
    font-weight: 700 !important;
}

body .fh-header .fh-mobile-account svg {
    width: 25px !important;
    height: 25px !important;

    fill: none !important;

    stroke: currentColor !important;

    stroke-width: 1.9 !important;

    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) {

    body .fh-header .fh-header-nav {
        gap: 26px !important;

        margin-left: 35px !important;
        margin-right: 35px !important;
    }

    body .fh-header .fh-header-nav a {
        font-size: 16px !important;
    }

}


/* ============================================================
   MOBIEL
   ============================================================ */

@media (max-width: 900px) {

    body .fh-header .fh-header-container {
        width: calc(100% - 32px) !important;

        height: 78px !important;
        min-height: 78px !important;

        justify-content: space-between !important;

        padding: 0 !important;
    }

    body .fh-header .fh-header-logo {
        height: 78px !important;
    }

    body .fh-header .fh-header-nav {
        display: none !important;
    }

    body .fh-header .fh-header-right {
        height: 78px !important;

        margin-left: auto !important;
    }

    body .fh-header .fh-header-account {
        display: none !important;
    }

    body .fh-header .fh-menu-toggle {
        display: flex !important;
    }

}


/* ============================================================
   KLEINE TELEFOONS
   ============================================================ */

@media (max-width: 600px) {

    body .fh-header .fh-header-container {
        width: calc(100% - 28px) !important;
    }

    body .fh-header .fh-logo-text {
        font-size: 26px !important;
    }

}