/*** Root variables ***/

:root {
    --clr-aqua-500: #14B8A6;
    --clr-blue-800: #0B1F3A;
    --clr-grey-200: #F5F5F5;
    --clr-grey-300: #E5E5E5;
    --clr-white: #FFFFFF;

    /* https://chrisburnell.com/clamp-calculator/ min.viewport = 380px, max.viewport = 1240px */
    --text-xl: clamp(2.5rem, 1.395rem + 4.651vi, 5rem); /* 40px - 80px */
    --text-lg: clamp(2rem, 1.558rem + 1.86vi, 3rem); /* 32px - 48px */
    --text-md: clamp(1.5rem, 1.169rem + 1.395vi, 2.25rem); /* 24px - 36px */
    --text-sm: clamp(1.25rem, 1.14rem + 0.465vi, 1.5rem); /* 20px - 24px */
    --text-xs: 1.125rem; /* 18px */
    --text-xxs: 1rem; /* 16px */
}



/*** Font settings ***/

@font-face {
    font-family: 'hero-light-bold';
    src: URL('../hero-light-bold.otf') format('opentype');
}

@font-face {
    font-family: 'hero-light-regular';
    src: URL('../hero-light-regular.otf') format('opentype');
}

@font-face {
    font-family: 'quicksand-variable-font-wght';
    src: URL('../quicksand-variable-font-wght.ttf') format('truetype');
}

.font-primary {
    font-family: 'hero-light-bold';
}

.font-secondary {
    font-family: 'quicksand-variable-font-wght';
}

/* 40px - 80px */
.text-xl, .text-xl > div > * {
	font-size: var(--text-xl);
    line-height: 1.0em;
}

/* 32px - 48px */
.text-lg, .text-lg > div > * {
	font-size: var(--text-lg) !important;
}

/* 24px - 36px */
.text-md, .text-md > div > * {
	font-size: var(--text-md);
}

/* 20px - 24px */
.text-sm, .text-sm > div > * {
	font-size: var(--text-sm) !important;
    line-height: 1.3em;
}

/* 18px */
.text-xs, .text-xs > div > * {
	font-size: var(--text-xs);
    line-height: 1.4em;
}

/* 16px */
.text-xxs, .text-xxs > div > * {
	font-size: var(--text-xxs);
}



/*** Utility classes ***/

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

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

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

.items-start {
    align-items: start;
}

.justify-start {
    justify-content: start;
}

.gap-2 {
    gap: 8px;
}

.gap-4 {
    gap: 16px;
}

.gap-6 {
    gap: 24px;
}

.text-aqua-500 {
    color: var(--clr-aqua-500);
}

.hover-text-aqua-500:hover {
    color: var(--clr-aqua-500);
}

.text-blue-800 {
    color: var(--clr-blue-800);
}

.text-white {
    color: var(--clr-white);
}

.font-bold {
    font-weight: bold;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.underline {
    text-decoration: underline;
}

.bg-blue-800 {
    background-color: var(--clr-blue-800);
}

.bg-grey-200 {
    background-color: var(--clr-grey-200);
}

.bg-white {
    background-color: var(--clr-white);
}

.bg-aqua-500 {
    background-color: var(--clr-aqua-500);
}

.rounded-xs {
    border-radius: 2px;
}

.rounded-sm {
    border-radius: 4px;
}

.rounded-md {
    border-radius: 8px;
}

.t-rounded-md {
    border-radius: 8px 8px 0 0;
}

.b-rounded-md {
    border-radius: 0 0 8px 8px;
}

.p-0 {
    padding: 0;
}

.p-4 {
    padding: 16px;
}

.p-6 {
    padding: 24px;
}

.pt-1 {
    padding-top: 6px;
}

.pt-6 {
    padding-top: 24px;
}

.pr-6 {
    padding-right: 24px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.px-6 {
    padding-left: 24px;
    padding-right: 24px;
}

.px-8 {
    padding-left: 32px;
    padding-right: 32px;
}

.pb-4 {
    padding-bottom: 16px !important;
}

.pt-12 {
    padding-top: 48px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-12 {
    margin-bottom: 48px;
}

.transition {
    transition: all 0.3s ease;
}

.hover-opacity-75:hover {
    opacity: 0.75;
}


/*** Custom css ***/

#background-homepage-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/2025/09/valuro-group-gradient-aqua-top-left.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#background-homepage-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/2025/09/valuro-group-gradient-aqua-bottom-right.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.et_pb_blurb_content {
    margin: 0px !important;
}

html {
    overflow-x: hidden;
}

ol {
	margin-left: 30px !important;
}

ol li {
	margin-bottom: 5px !important;
}

/* Highlight actieve menu items */

a#header-link-diensten, a#header-link-werkwijze, a#header-link-over-ons {
    color: var(--clr-blue-800);
    transition: all 0.3s ease;
}

a#header-link-diensten:hover, a#header-link-werkwijze:hover, a#header-link-over-ons:hover {
    color: var(--clr-aqua-500);
}

a#header-link-schoonmaak, a#header-link-beveiliging, a#header-link-calamiteiten, a#header-link-drone-inspecties {
    color: var(--clr-white);
    transition: all 0.3s ease;
}

a#header-link-schoonmaak:hover, a#header-link-beveiliging:hover, a#header-link-calamiteiten:hover, a#header-link-drone-inspecties:hover {
    color: var(--clr-blue-800);
}

a.current-menu-item-aqua-500 {
    color: var(--clr-aqua-500) !important;
}

a.current-menu-item-blue-800 {
    color: var(--clr-blue-800) !important;
}



/* Shortcode : [valuro_bedrijven_grid] */

#valuro-bedrijven-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

#valuro-bedrijven-grid-item {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    background-color: var(--clr-white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    &:hover #valuro-bedrijven-grid-item-link {
        opacity: 0.75;
    }
}

#valuro-bedrijven-grid-item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--clr-aqua-500);
    padding: 10px 20px;
    width: 100%;
    transition: all 0.3s ease;
}

#valuro-bedrijven-grid-item-logo-wrapper {
    height: 200px;
    padding: 20px;
}

#valuro-bedrijven-grid-item-logo {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

#valuro-bedrijven-grid-item-arrow {
    rotate: -90deg;
}

#valuro-bedrijven-grid-item-content {
    padding: 20px;
}

#valuro-bedrijven-fader-wrapper {
    display: none;
    width: 100%;
}

#valuro-bedrijven-fader-controls {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.valuro-bedrijven-nav-btn {
    background: var(--clr-white);
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: 1px solid var(--clr-blue-800);
}

#valuro-bedrijven-prev {
    left: -20px;
}

#valuro-bedrijven-next {
    right: -20px;
}

.valuro-bedrijven-nav-btn svg {
    color: var(--clr-blue-800);
}

#valuro-bedrijven-fader-container {
    flex: 1;
    transition: opacity 0.2s ease;
}

.valuro-bedrijven-fader-item {
    width: 100%;
}

/* Responsive breakpoints */
@media (min-width: 700px) and (max-width: 1200px) {
    #valuro-bedrijven-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #valuro-bedrijven-fader-wrapper {
        display: none;
    }
}

@media (max-width: 699px) {
    #valuro-bedrijven-grid {
        display: none;
    }
    
    #valuro-bedrijven-fader-wrapper {
        display: block;
    }
}


/* Shortcode : [valuro_diensten_list] */

#valuro-diensten-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#valuro-diensten-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: var(--clr-grey-200);
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;

    &:hover {
        background-color: var(--clr-aqua-500);
    }

    &:hover h3,
    &:hover p {
        color: var(--clr-white) !important;
    }

    &:hover #valuro-diensten-list-item-arrow path {
        fill: var(--clr-white) !important;
    }
}

#valuro-diensten-list-item-content {
    padding: 24px;
}

.valuro-diensten-list-item-subheader {
    margin: 4px 0 0 0;
    opacity: 0.8;
}

#valuro-diensten-list-item-arrow {
    rotate: -90deg;
}

#valuro-diensten-list-item-logo {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#valuro-diensten-list-item-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* Klantlogos Fader Shortcode Styles */
#klantlogos-fader-wrapper {
    width: 100%;
}

#klantlogos-fader-container {
    width: 100%;
}

.klantlogos-fader-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.klantlogos-fader-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
}

.klantlogos-fader-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media only screen and (min-width: 980px) {
    .klantlogos-fader-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (min-width: 480px) and (max-width: 979px) {
    .klantlogos-fader-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 479px) {
    .klantlogos-fader-grid {
        grid-template-columns: 1fr;
    }
}


/* Shortcode : [valuro_aanpak_list] */

#valuro-aanpak-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.valuro-aanpak-step {
    background-color: var(--clr-grey-200);
    border-radius: 8px;
    padding: 24px;
}

.valuro-aanpak-step-header {
    margin-bottom: 12px;
}

.valuro-aanpak-step-number {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.valuro-aanpak-step-title {
    margin: 0;
    font-weight: bold;
}

.valuro-aanpak-step-description {
    margin: 0;
    line-height: 1.6;
}


/* Dot */
.dot {
    height: 7px;
    width: 7px;
    background-color: var(--clr-aqua-500);
    border-radius: 50%;
    display: inline-block;
    margin: 2px 15px;
}


/* Shortcode : [valuro_diensten_list_uitgebreid] */
#valuro_diensten_app {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

#valuro-diensten-list-uitgebreid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.valuro-diensten-filters {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 20px;
    padding-left: 30px;
}

@media only screen and (max-width: 980px) {
    .valuro-diensten-filters {
        padding-left: 0;
    }
}


@media only screen and (max-width: 768px) {
    .valuro-diensten-filters {
        flex-direction: column;
        align-items: flex-start;
    }
}

.valuro-diensten-filters-select select {
    padding: 12px 40px 12px 16px;
    border: 0px solid var(--clr-grey-300);
    border-radius: 8px;
    background-color: var(--clr-grey-200);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.026' height='7.004' viewBox='0 0 14.026 7.004'%3E%3Cpath d='M17,25a1,1,0,0,1-.64-.23l-6-5a1,1,0,1,1,1.28-1.54L17,22.708l5.36-4.32a1,1,0,0,1,.735-.22A1.025,1.025,0,0,1,23.628,20l-6,4.83A1,1,0,0,1,17,25Z' transform='translate(-9.996 -17.996)' fill='%2314b8a6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px 7px;
    color: var(--clr-blue-800);
    font-size: var(--text-xs);
    font-family: 'quicksand-variable-font-wght';
    min-width: 150px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

@media only screen and (max-width: 768px) {
    .valuro-diensten-filters-select select {
        width: 100%;
        min-width: auto;
    }
}

#valuro-diensten-list-item-uitgebreid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    border-radius: 8px;
}

@media only screen and (max-width: 980px) {
    #valuro-diensten-list-item-uitgebreid {
        gap: 0;
        order: 1;
    }
}

#valuro-diensten-list-item-uitgebreid:has(#valuro-diensten-list-item-uitgebreid-logo) {
    grid-template-columns: 1fr 300px;
}

@media only screen and (max-width: 980px) {
    #valuro-diensten-list-item-uitgebreid:has(#valuro-diensten-list-item-uitgebreid-logo) {
        grid-template-columns: 1fr;
    }
}

#valuro-diensten-list-item-uitgebreid-content {
    padding: 24px;
    background-color: var(--clr-grey-200);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

#valuro-diensten-list-item-uitgebreid-content:hover {
    background-color: var(--clr-aqua-500);
}

#valuro-diensten-list-item-uitgebreid-content:hover h4,
#valuro-diensten-list-item-uitgebreid-content:hover h3,
#valuro-diensten-list-item-uitgebreid-content:hover p,
#valuro-diensten-list-item-uitgebreid-content:hover span {
    color: var(--clr-white) !important;
}

@media only screen and (max-width: 980px) {
    #valuro-diensten-list-item-uitgebreid-content {
        order: 2;
    }
}

#valuro-diensten-list-item-uitgebreid:has(#valuro-diensten-list-item-uitgebreid-logo) #valuro-diensten-list-item-uitgebreid-content {
    border-radius: 8px 0 0 8px;
}

@media only screen and (max-width: 980px) {
    #valuro-diensten-list-item-uitgebreid:has(#valuro-diensten-list-item-uitgebreid-logo) #valuro-diensten-list-item-uitgebreid-content {
        border-radius: 0 0 8px 8px;
    }
}

#valuro-diensten-list-item-uitgebreid-logo {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 980px) {
    #valuro-diensten-list-item-uitgebreid-logo {
        border: 8px solid var(--clr-grey-200);
        border-radius: 8px 8px 0 0;
    }
}


/* Shortcode : [valuro_detailpagina_diensten_inhoud] */

#valuro-detailpagina-diensten-inhoud > ul {
    padding-left: 50px !important;
}

#valuro-detailpagina-diensten-inhoud > h3 {
    font-weight: 600;
    font-size: var(--text-xs);
	color: var(--clr-blue-800);
}


/* Shortcode : [valuro_detailpagina_diensten_overige_diensten] */

#valuro-overige-diensten-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}


@media only screen and (max-width: 768px) {
    #valuro-overige-diensten-grid {
        flex-wrap: nowrap;
        flex-direction: column;
    }
}


a#valuro-overige-diensten-item {
    width: fit-content;
    background-color: var(--clr-grey-200);
    border-radius: 8px;
    padding: 16px 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;

    &:hover {
        background-color: var(--clr-grey-300);
    }
}

@media only screen and (max-width: 768px) {
    a#valuro-overige-diensten-item {
        width: 100%;
    }
}

/* Shortcode : [valuro_mobile_menu] */

#mobile-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100vw;
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    margin: 0;
    padding: 0;
    border: none;
    background-color: var(--primary);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-menu-modal.show {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu-wrapper {
    padding-top: 20px;
}

#mobile-menu-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100vw !important;
    width: 100vw;
    max-height: 100vh !important;
    height: 100vh;
    margin: 0;
    padding: 0;
    border: none;
    background-color: var(--clr-blue-800);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-menu-dialog.show {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#mobile-menu-dialog-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--clr-blue-800);
    z-index: -1;
}

#mobile-menu-open-button, #mobile-menu-close-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-menu-list-wrapper {
    padding: 20px;
}

img#mobile-menu-logo {
    max-width: 70%;
}

#mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#mobile-menu-list a {
    color: var(--clr-white);
    font-size: var(--text-lg);
    font-family: 'hero-light-bold';
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

#mobile-link-contact {
    background-color: var(--clr-aqua-500);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transform: translateX(0) !important;
}

#mobile-menu-dialog.show #mobile-menu-list a {
    opacity: 1;
    transform: translateX(0);
}

#mobile-menu-list a:hover {
    color: var(--clr-aqua-500);
    transform: translateX(10px);
}

#mobile-link-contact:hover {
    background-color: var(--clr-aqua-500);
    opacity: 0.8;
    transform: translateX(0) !important;
}

#menu-mobile-menu-container {
    padding-left: 20px;
}

#header-element {
    display: flex;
}

#valuro-diensten-fader-wrapper {
    display: none;
    width: 100%;
}

#valuro-diensten-fader-controls {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.valuro-diensten-nav-btn {
    background: var(--clr-white);
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: 1px solid var(--clr-blue-800);
}

#valuro-diensten-prev {
    left: -20px;
}

#valuro-diensten-next {
    right: -20px;
}

.valuro-diensten-nav-btn svg {
    color: var(--clr-blue-800);
}

#valuro-diensten-fader-container {
    flex: 1;
    transition: opacity 0.2s ease;
}

.valuro-diensten-fader-item {
    width: 100%;
}

@media (max-width: 700px) {
    #valuro-diensten-list {
        display: none;
    }
    
    #valuro-diensten-fader-wrapper {
        display: block;
    }
}

@media (min-width: 701px) {
    #valuro-diensten-fader-wrapper {
        display: none;
    }
}

@media only screen and (max-width: 980px) {
    #order-1 {
        order: 1 !important;
    }

    #order-2 {
        order: 2 !important;
    }
}

@media only screen and (max-width: 980px) {
    #mobile-flex-col {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
}


/* Shortcode : [valuro_detailpagina_diensten_contactgegevens] */
.email-mobile-text {
    display: none;
}

@media only screen and (max-width: 480px) {
    .email-desktop-text {
        display: none;
    }
    
    .email-mobile-text {
        display: inline;
    }
}


/* Shortcode : [valuro_locaties_grid] */
#valuro-locaties-grid {
    --min-card-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(var(--min-card-width), 100%), 1fr));
    gap: 16px;
}


