/*** Root variables ***/

:root {
    --clr-blue-800: #12223D;
    --clr-blue-700: #0E213F;
    --clr-blue-500: #6FD6EC;
    --clr-grey-900: #212529;
    --clr-grey-100: #F4F4F4;
    --clr-green-500: #2BC48A;
    --clr-white: #ffffff;

    /* https://chrisburnell.com/clamp-calculator/ min.viewport = 380px, max.viewport = 1240px */
    --text-3xl: clamp(3rem, 2.254rem + 3.14vi, 4.688rem); /* 48px - 75px */
    --text-2xl: clamp(2.5rem, 1.81rem + 2.907vi, 4.063rem); /* 40px - 65px */
    --text-xl: clamp(1.75rem, 1.142rem + 2.558vi, 3.125rem); /* 28px - 50px */
    --text-lg: clamp(1.375rem, 1.016rem + 1.512vi, 2.188rem); /* 22px - 35px */
    --text-md: clamp(1.25rem, 1.195rem + 0.233vi, 1.375rem); /* 20px - 22px */
    --text-sm: clamp(1.063rem, 0.98rem + 0.349vi, 1.25rem); /* 17px - 20px */
    --text-xs: 1.063rem; /* 17px */
    --text-2xs: 0.75rem; /* 12px */
    --text-3xs: 0.625rem; /* 10px */
    
    --line-height-sm: 1.4em;
    --line-height-lg: 1.5em;

    --radius-sm: 4px;
    --radius-md: 10px;
}


/*** Font settings ***/

@font-face {
    font-family: 'D-DIN';
    src: URL('../D-DIN.ttf') format('truetype');
}

@font-face {
    font-family: 'D-DIN-Bold';
    src: URL('../D-DIN-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'D-DIN-Italic';
    src: URL('../D-DIN-Italic.ttf') format('truetype');
    font-style: italic;
}

* {
    font-family: 'D-DIN';
}

.font-primary {
    font-family: 'D-DIN';
}

.font-italic {
    font-family: 'D-DIN-Italic';
}


/*** Text responsive classes ***/


/* 48px - 75px */
.text-3xl, .text-3xl > div > * {
	font-size: var(--text-3xl);
    line-height: var(--line-height-sm);
}

/* 40px - 65px */
.text-2xl, .text-2xl > div > * {
	font-size: var(--text-xl);
    line-height: var(--line-height-sm);
}

/* 28px - 50px */
.text-xl, .text-xl > div > * {
	font-size: var(--text-lg);
    line-height: var(--line-height-sm);
}

/* 22px - 35px */
.text-lg, .text-lg > div > * {
	font-size: var(--text-md);
    line-height: var(--line-height-sm);
}

/* 20px - 22px */
.text-md, .text-md > div > * {
	font-size: var(--text-sm);
    line-height: var(--line-height-sm);
}

/* 17px - 20px */
.text-sm, .text-sm > div > * {
	font-size: var(--text-xs);
    line-height: var(--line-height-lg);
}

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

/* 12px */
.text-2xs, .text-2xs > div > * {
	font-size: var(--text-2xs);
    line-height: var(--line-height-lg);
}

/* 10px */
.text-3xs, .text-3xs > div > * {
	font-size: var(--text-3xs);
    line-height: var(--line-height-lg);
}


/*** Utility classes ***/

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

.text-left {
    text-align: left;
}

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

.uppercase {
    text-transform: uppercase;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

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

.gap-sm {
    gap: 0.5rem;
}

.gap-md {
    gap: 1rem;
}

.gap-lg {
    gap: 2rem;
}

.gap-xl {
    gap: 3rem;
}

.p-md {
    padding: 1rem;
}

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

.text-grey-900 {
    color: var(--clr-grey-900) !important;
}

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

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

/*** Component styles ***/

.et_pb_social_media_follow li a.icon {
    border-radius: 100% !important;
}

#heeboss_vacature_grid_wrapper {
    --min-card-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(var(--min-card-width), 100%), 1fr));
    grid-template-rows: auto auto 1fr auto;
	gap: 2rem;
}

#heeboss_vacature_item {
    background-color: var(--clr-white);
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 10px 10px;
}

#heeboss_vacature_item_foto {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
}

#heeboss_vacature_item_title {
    padding: 0 20px 0 20px;
}

#heeboss_vacature_item_content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 20px 0 20px;
}

#heeboss_vacature_item_content_icon {
    width: 20px;
    height: 20px;
}

#heeboss_vacature_item_bedrijf {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 100%;
}

/* Hover effect for the green arrow */
.flex.gap-sm.items-center img {
    transition: transform 0.3s ease;
}

.flex.gap-sm.items-center:hover img {
    transform: translateX(5px);
}

/* Shortcode : [heeboss_vacature_grid_banner] */

#heeboss_vacature_grid_banner_wrapper {
    background-color: var(--clr-blue-800);
    padding: 60px;
    border-radius: var(--radius-md);
    margin-top: 100px;
    margin-bottom: 100px;
}

#heeboss_vacature_grid_banner_content {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

a#blue-500-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 1rem 2rem;
    background-color: var(--clr-blue-500);
    border-radius: 50px;
    color: var(--clr-blue-700);
    text-transform: uppercase;
    font-size: var(--text-xs);
}

#blue-500-button-arrow {
    width: 20px;
    height: 20px;
}

#heeboss_vacature_grid_banner_decoratie {
    position: absolute;
    top: 0;
    right: 0;
}

/* Shortcode : [heeboss_vacature_count] */

#heeboss_vacature_count_wrapper {
    background-color: var(--clr-green-500);
    padding: 2px 11px 0px 11px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: fit-content;
}


/* Shortcode : [heeboss_vacature_list] */

#heeboss_vacature_list_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#heeboss_vacature_list_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#heeboss_vacature_list_item {
    transition: transform 0.2s ease;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    border-left: 10px solid var(--clr-blue-700);
}

#heeboss_vacature_list_item:hover {
    transform: scale(1.02);
}

#heeboss_vacature_list_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

#heeboss_vacature_list_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    min-height: 80px;
}

#heeboss_vacature_list_title {
    flex: 1;
}

#heeboss_vacature_list_title h3 {
    margin: 0;
}

#heeboss_vacature_list_bedrijf {
    flex-shrink: 0;
    max-width: 120px;
}

#heeboss_vacature_list_bedrijf img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}   

/* Shortcode : [heeboss_werken_bij_slider] */   

#heeboss_werken_bij_slider {
    --f-carousel-spacing: 1rem;
    --f-carousel-slide-width: 600px;
}

#heeboss_werken_bij_slider .f-carousel__slide {
    width: 600px !important;
    height: 500px;
}

#heeboss_werken_bij_slider .heeboss_werken_bij_slider_card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#heeboss_werken_bij_slider .f-carousel__dots {
    display: none;
}

#heeboss_werken_bij_slider .f-progressbar,
#heeboss_werken_bij_slider .f-progress,
#heeboss_werken_bij_slider .f-carousel__progressbar {
    display: none;
}

#heeboss_werken_bij_slider button.f-button.is-prev,
#heeboss_werken_bij_slider button.f-button.is-next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--clr-blue-700);
    border-radius: 50%;
    background: white url('/wp-content/uploads/2025/08/icon-arrow-green-500.svg') no-repeat center;
    background-size: 16px 16px;
    transition: all 0.3s ease;
}

#heeboss_werken_bij_slider button.f-button.is-prev:hover,
#heeboss_werken_bij_slider button.f-button.is-next:hover {
    transform: scale(1.05);
}

#heeboss_werken_bij_slider button.f-button.is-prev {
    transform: rotate(180deg);
}

#heeboss_werken_bij_slider button.f-button.is-prev:hover {
    transform: rotate(180deg) scale(1.05);
}

button.f-button.is-prev svg, button.f-button.is-next svg {
    display: none !important;
}

.heeboss_werken_bij_slider_card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
}

.heeboss_werken_bij_slider_card_image_wrapper {
    flex: 1;
}

.heeboss_werken_bij_slider_card_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Shortcode : [heeboss_werken_bij_doelgroepen_banner] */

#heeboss_werken_bij_doelgroepen_banner_wrapper {
    background-color: var(--clr-blue-800);
    padding: 60px;
    border-radius: var(--radius-md);
}

#heeboss_werken_bij_doelgroepen_banner_content {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#heeboss_doelgroepen_slideshow_wrapper {
    width: 60%;
}

a#blue-500-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 1rem 2rem;
    background-color: var(--clr-blue-500);
    border-radius: 50px;
    color: var(--clr-blue-700);
    text-transform: uppercase;
    font-size: var(--text-xs);
}

#blue-500-button-arrow {
    width: 20px;
    height: 20px;
}

#heeboss_werken_bij_doelgroepen_banner_decoratie {
    position: absolute;
    top: 0;
    right: 0;
}

/* Voordelen List Styles */
#heeboss_werken_bij_voordelen_list_wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.heeboss_voordeel_item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.heeboss_voordeel_icon_wrapper {
    width: 48px;
    height: 48px;
    background-color: var(--clr-blue-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.heeboss_voordeel_icon {
    width: 24px;
    height: 24px;
}

.heeboss_voordeel_text {
    flex: 1;
    padding-top: 4px;
}

.heeboss_voordeel_text p {
    margin: 0;
    color: var(--clr-grey-900);
    line-height: 1.5;
    font-size: var(--text-xs);
}

/* Shortcode : [heeboss_interviews_grid] */

#heeboss_interviews_grid_wrapper {
    --min-card-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(var(--min-card-width), 100%), 1fr));
	gap: 2rem;
}

#heeboss_interviews_grid_item {
    display: flex;
    flex-direction: column;
}

#heeboss_interviews_grid_item_foto {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

#heeboss_interviews_grid_content {
    position: relative;
    padding: 2rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background-color: var(--clr-grey-100);
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

#heeboss_interviews_grid_content_tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--clr-blue-500);
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    position: absolute;
    top: -20px;
    left: 30px;
}

#heeboss_interviews_grid_content_tag img {
    width: 16px;
    height: 16px;
}

#heeboss_interviews_grid_content_button {
    margin-top: auto;
}

/* Pagination for berichten grid */

#heeboss_berichten_pagination {
    margin: 3rem 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.heeboss_pagination_prev,
.heeboss_pagination_next {
    color: var(--clr-blue-700);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 400;
    transition: color 0.3s ease;
}

.heeboss_pagination_prev:hover,
.heeboss_pagination_next:hover {
    color: var(--clr-green-500);
}

.heeboss_pagination_numbers {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.heeboss_pagination_number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 6px 12px;
    background-color: transparent;
    color: var(--clr-blue-700);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.heeboss_pagination_number:hover {
    color: var(--clr-green-500);
}

.heeboss_pagination_number.heeboss_pagination_current {
    background-color: var(--clr-green-500);
    color: var(--clr-white);
    font-weight: 700;
}

.heeboss_pagination_dots {
    color: var(--clr-blue-700);
    font-weight: 400;
    padding: 0 0.5rem;
}
