/*** Root variables ***/

:root {
    --clr-green-900: #0E2620;
    --clr-green-800: #143A31;
    --clr-green-200: #D0E3B7;
    --clr-black: #000000;
    --clr-white: #FFFFFF;

    --text-900: clamp(2.5rem, 1.395rem + 4.651vi, 5rem); /* 40px - 80px */
    --text-800: clamp(1.5rem, 0.837rem + 2.791vi, 3rem); /* 24px - 48px  */
    --text-600: clamp(1.5rem, 1.279rem + 0.93vi, 2rem); /* 24px - 32px  */
    --text-400: clamp(1.375rem, 1.32rem + 0.233vi, 1.5rem); /* 22px - 24px  */
    --text-300: 1.25rem; /* 20px  */
    --text-200: 1.125rem; /* 18px  */
    --text-100: 1rem; /* 16px  */

    --line-height-sm: 1.1em;
    --line-height-lg: 1.5em;

    --logo-width: clamp(7.813rem, 1.047rem + 28.488vi, 23.125rem); /* 125px - 370px - min.viewport = 380px, max.viewport = 1240px */
    --logo-height: clamp(9.375rem, 1.09rem + 34.884vi, 28.125rem); /* 150px - 450px - min.viewport = 380px, max.viewport = 1240px */

    --border-white: 1px solid rgba(255, 255, 255, 0.5) !important;
}


/*** Font settings ***/

@font-face {
    font-family: 'Lato';
    src: URL('../fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
}

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

@font-face {
    font-family: 'Lato';
    src: URL('../fonts/Lato-Black.ttf') format('truetype');
    font-weight: 900;
}

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


/*** Text responsive classes ***/
/* https://chrisburnell.com/clamp-calculator/ min.viewport = 380px, max.viewport = 1240px */

/* 40px - 80px */
.text-900, .text-900 > div > * {
	font-size: var(--text-900) !important;
    line-height: 1.1em
}

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

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

/* 22px - 24px  */
.text-400, .text-400 > div > * {
	font-size: var(--text-400);
    line-height: 1.2em
}

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

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

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


/*** Font classes ***/

.fw-900 {
	font-weight: 900;
}

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

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

.fw-200 {
	font-weight: 200;
}

.fs-italic {
	font-style: italic;
}

.ff-primary {
	font-family: 'Nicholas';
}

.ff-secondary {
	font-family: 'articulat-cf';
}

.ff-tertiary {
	font-family: 'Lato';
}

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

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

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

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

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

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

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

@media only screen and (max-width: 768px) {
    .mobile-text-center {
        text-align: center;
    }
}

@media only screen and (max-width: 980px) {
    .tablet-text-center {
        text-align: center;
    }
}

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

.hover-underline:hover {
	text-decoration: underline;
}

.italic {
	font-style: italic;
}

.underline {
    text-decoration: underline;
}


/*** Utility classes ***/

.flex {
	display: flex;
}

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

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

@media only screen and (max-width: 980px) {
    .tablet-flex-col {
        flex-direction: column;
    }
}

@media only screen and (max-width: 768px) {
    .mobile-flex-col {
        flex-direction: column;
    }
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
}

.shrink-0 {
	flex-shrink: 0;
}

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

.justify-end {
	justify-content: flex-end;
}

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

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

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

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

@media only screen and (max-width: 980px) {
    .tablet-items-left {
        align-items: flex-start;
    }
}

.align-end {
	align-items: flex-end;
}

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

.p-0 {
    padding: 0 !important;
}

@media only screen and (max-width: 980px) {
    .tablet-p-0 {
        padding: 0 !important;
    }
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

@media only screen and (max-width: 980px) {
    .tablet-p-4 {
        padding: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    .mobile-p-4 {
        padding: 1rem;
    }
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pl-4 {
    padding-left: 1rem;
}

.pl-8 {
    padding-left: 2rem;
}   

.pr-4 {
    padding-right: 1rem;
}

.pr-8 {
    padding-right: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}
        
.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

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

.margin-auto {
    margin: auto;
}

.m-4 {
    margin: 1rem;
}

.m-8 {
    margin: 2rem;
}

.mt-auto {
    margin-top: auto;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mb-auto {
    margin-bottom: auto;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.ml-4 {
    margin-left: 1rem;
}

.ml-8 {
    margin-left: 2rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mr-8 {
    margin-right: 2rem;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-40 {
    gap: 10rem;
}

@media only screen and (max-width: 980px) {
    .tablet-gap-4 {
        gap: 1rem;
    }
}

@media only screen and (max-width: 980px) {
    .tablet-gap-8 {
        gap: 2rem;
    }
}

@media only screen and (max-width: 980px) {
    .tablet-gap-12 {
        gap: 3rem;
    }
}

@media only screen and (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }
}

@media only screen and (max-width: 980px) {
    .tablet-hide {
        display: none !important;
    }
}

@media only screen and (min-width: 981px) {
    .desktop-hide {
        display: none !important;
    }
}

.transition-all-300 {
    transition: all 0.3s ease;
}

.max-w-55ch {
    max-width: 55ch;
}

.w-fit {
    width: fit-content;
}

.w-full {
    width: 100%;
}

.w-40 {
    width: 40px;
}

.w-110 {
    width: 110px;
}

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

.rounded-lg {
    border-radius: 28px;
}

.bg-green-200 {
    background-color: var(--clr-green-200) !important;
}

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

.bg-white-006 {
    background-color: rgba(255, 255, 255, 0.06);
}

.bg-white-015 {
    background-color: rgba(255, 255, 255, 0.15);
}

.bg-white-050 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.border-white {
    border: var(--border-white);
}

.box-shadow-white {
    box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.10);
}


/*** Element specific classes ***/

html {
    overflow-x: hidden !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100%;
    position: relative;
}

.current-menu-item::before {
	content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    transform: translateY(5px);
    background-color: var(--clr-green-200);
    z-index: 2;
}

.current-mobile-menu-item {
	color: var(--clr-white) !important;
}

.current-mobile-menu-item::before {
	content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    transform: translateY(5px);
    background-color: var(--clr-white);
    z-index: 2;
}

.current-submenu-item > div > a {
    font-weight: 700 !important;
}

.header-link::after {
	content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    transform: translateY(5px);
    background-color: var(--clr-green-200);
    opacity: 0;
    transition: all 0.3s ease;
}

.header-link:hover::after {
    opacity: 1;
}

#divider-default {
    width: 100px !important;
    border-top: 1px solid var(--clr-green-200);
}

#button-green, #button-white {
    display: flex;
    padding: 0.75rem 2rem;
	border-radius: 80px;
    font-family: 'Nicholas';
    font-weight: 700;
    font-size: var(--text-300);
    text-decoration: none;
    width: fit-content;
	position: relative;
	overflow: hidden;
    transition: all 0.3s ease;

    &:hover {
        opacity: 0.8;
    }
}

@media only screen and (max-width: 768px) {
    #button-green, #button-white {
        padding: 0.75rem 1.25rem;
    }
}

#button-green {
    background-color: var(--clr-green-200);
    color: var(--clr-green-800);
}

#button-white {
    background-color: var(--clr-white);
    color: var(--clr-green-800);
}

#button-green span, #button-white span {
    z-index: 1;
	position: relative;
}

#link-green {
    color: var(--clr-green-200);
    text-decoration: underline;
    transition: all 0.3s ease;

    &:hover {
        color: var(--clr-white);
    }
}

/*** Behandelingen Fader ***/

#behandelingen-fader-container {
	position: relative;
	width: 100%;
	min-height: fit-content;
}

#behandelingen-fader-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
}

.behandeling-item {
	background-color: var(--clr-green-800);
	border: var(--border-white);
	border-radius: 8px;
	padding: 15px 20px;
	position: relative;
	display: block;
	text-decoration: none;
	color: var(--clr-white);
	cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
        background-color: var(--clr-white) !important;
        .behandeling-title {
            color: var(--clr-green-800);
        }
    }
}

.behandeling-title {
	font-family: 'Nicholas';
	font-size: var(--text-300);
	display: block;
	width: 100%;
	transition: all 0.3s ease;
}

.behandeling-item:nth-child(1), .behandeling-item:nth-child(5) {
	background-color: rgba(255, 255, 255, 0.05);
}

.behandeling-item:nth-child(2), .behandeling-item:nth-child(4) {
	background-color: rgba(255, 255, 255, 0.10);
}

.behandeling-item:nth-child(3) {
	background-color: rgba(255, 255, 255, 0.15);
}

.behandeling-title.fading-out {
	opacity: 0 !important;
}

.behandeling-title.fading-in {
	opacity: 1 !important;
}


/* Shortcode : [cta_banner] */

#cta-banner-small-wrapper {
	height: 400px;
    display: flex;
    gap: 1rem;
}

@media only screen and (max-width: 768px) {
    #cta-banner-small-wrapper {
        height: fit-content;
        align-items: center;
        justify-content: center;
    }
}

.cta-banner-small-content {
    width: 80%;
    max-width: 1240px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: var(--border-white);
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.06);
}

@media only screen and (max-width: 768px) {
    .cta-banner-small-content {
        padding: 1.25rem;
    }
}

.cta-banner-small-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.20);
}

.cta-banner-small-image[data-attribute="foto-1"] {
    border-right: var(--border-white);
    border-top: var(--border-white);
    border-bottom: var(--border-white);
    border-radius: 0 28px 28px 0;
}

.cta-banner-small-image[data-attribute="foto-2"] {
    border-left: var(--border-white);
    border-top: var(--border-white);
    border-bottom: var(--border-white);
    border-radius: 28px 0 0 28px;
}

/* Shortcode : [cta_banner] */

#cta-banner-large-wrapper {
	height: 400px;
    display: flex;
    gap: 1rem;
}

@media only screen and (max-width: 768px) {
    #cta-banner-large-wrapper {
        height: fit-content;
        align-items: center;
        justify-content: center;

    }
}

.cta-banner-large-content-wrapper {
    display: flex;
    width: 80%;
    max-width: 1240px;
    gap: 1rem;
}

.cta-banner-large-content {
    padding: 2.5rem;
    display: flex;
    flex: 1;
    flex-direction: column;
    border: var(--border-white);
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.06);
}

@media only screen and (max-width: 768px) {
    .cta-banner-large-content {
        padding: 1.25rem;
    }
}

.cta-banner-large-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.20);
}

.cta-banner-large-image[data-attribute="foto-1"] {
    border-right: 1px solid var(--clr-white);
    border-top: 1px solid var(--clr-white);
    border-bottom: 1px solid var(--clr-white);
    border-radius: 0 28px 28px 0;
}

.cta-banner-large-image[data-attribute="foto-2"] {
    border: var(--border-white);
    border-radius: 28px;
    max-width: 400px;
}

@media only screen and (max-width: 1350px) {
    .cta-banner-large-image[data-attribute="foto-2"] {
        display: none;
    }
}

.cta-banner-large-image[data-attribute="foto-3"] {
    border-left: 1px solid var(--clr-white);
    border-top: 1px solid var(--clr-white);
    border-bottom: 1px solid var(--clr-white);
    border-radius: 28px 0 0 28px;
}


/* Shortcode : [behandelingen_filter] */
.behandeling-filter-button, .teamleden-filter-button, .praktische-informatie-filter-button {
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--clr-green-800);
    font-family: 'Nicholas';
    border-radius: 50px;
    border: var(--border-white);
    padding: 1rem 2rem;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: var(--text-100);

    &:hover {
        background-color: var(--clr-white) !important;
    }
}

#filter-dropdown-mobile {
    display: none;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--clr-green-800);
    font-family: 'Nicholas';
    border-radius: 50px;
    border: var(--border-white);
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: var(--text-100);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23143a31' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 12px;
    padding-right: 3.5rem;

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

    &:focus {
        outline: none;
        background-color: var(--clr-white);
    }
}

#filter-buttons-desktop {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 767px) {
    #filter-dropdown-mobile {
        display: block;
    }

    #filter-buttons-desktop {
        display: none;
    }
}

@media (min-width: 768px) {
    #filter-dropdown-mobile {
        display: none;
    }

    #filter-buttons-desktop {
        display: flex;
    }
}

/* Shortcode : [behandelingen_list] */
#behandeling-image {
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.20);
    border-radius: 28px;
    border: var(--border-white);
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.behandelingen-list-container > div > div:nth-child(even) {
    flex-direction: row-reverse;
}

/* Shortcode : [faq_list] */

.faq-item {
    cursor: pointer;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.faq-item[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-chevron {
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--clr-white);
    transition: transform 0.3s ease;
}

/* Shortcode : [steps] */
.steps-image-wrapper {
    width: 100%;
    max-width: 400px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: var(--border-white);
    transition: background-image 0.3s ease;
}

@media (min-width: 769px) {
    .step-item[data-opacity] {
        opacity: var(--step-opacity);
    }
}
@media (max-width: 768px) {
    .step-item {
        opacity: 1 !important;
    }
}

.step-item {
    cursor: pointer;
}

.step-item:hover,
.step-item.step-active {
    opacity: 1 !important;
}

.step-content {
    margin: 0;
}

/* Shortcode : [image_reveal] */


.image-reveal-item {
    position: relative;
    width: 100%;
    border-radius: 28px;
    border: var(--border-white);
    overflow: hidden;
    height: 200px;
}

.image-reveal-before,
.image-reveal-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-reveal-before {
    z-index: 1;
}

.image-reveal-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.image-reveal-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--clr-white);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.image-reveal-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.image-reveal-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.image-reveal-handle.active {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Shortcode : [bentogrid_images] */
.bentogrid-grid {
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
}

.bentogrid-grid a:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
}

.bentogrid-grid a:nth-child(2) {
    grid-column: 5 / 13;
    grid-row: 1 / 2;
}

.bentogrid-grid a:nth-child(3) {
    grid-column: 13 / 19;
    grid-row: 1 / 2;
}

.bentogrid-grid a:nth-child(4) {
    grid-column: 1 / 10;
    grid-row: 2 / 3;
}

.bentogrid-grid a:nth-child(5) {
    grid-column: 10 / 19;
    grid-row: 2 / 3;
}

.bentogrid-item {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 28px;
    border: var(--border-white);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bentogrid-grid a:hover .bentogrid-item {
    transform: scale(1.01);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.20);
}

/* Shortcode : [slider] */
.slider-item {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-wrapper a:hover .slider-item {
    transform: scale(1.02);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.20);
}

.slider-wrapper ul {
    list-style: none !important;
    padding: 2px 10px 5px 10px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: var(--clr-green-800);
    border-radius: 80px;
    width: fit-content;
    padding: 0px 10px 5px 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
}

.slider-wrapper ul li button {
    font-size: 0px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--clr-white);
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border: 0px solid var(--clr-white);
}

.slider-wrapper ul li.slick-active button {
    background-color: var(--clr-green-200);
}


/* Shortcode : [teamleden_list] */
#teamleden-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 4rem 2rem;
}

.teamleden-image {
    position: relative;
}

.teamleden-image::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/2025/11/overgaauw-tandartsen-teamlid-achtergrond-donker.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.teamleden-image::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-image: url(/wp-content/uploads/2025/11/overgaauw-tandartsen-teamlid-achtergrond-licht.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.teamleden-image:hover::after {
    opacity: 1;
}

.teamleden-image img {
    position: relative;
    z-index: 3;
    width: 100%;
    cursor: pointer;
}

#dialog-teamleden-wrapper {
    padding: 0;
    border: none;
    background: transparent;
    max-width: 90vw;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

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

#dialog-teamleden-wrapper.closing {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.25s ease-in, opacity 0.25s ease-in;
}

#dialog-teamleden-wrapper.closing * {
    transition: none !important;
}

#dialog-teamleden-wrapper::backdrop {
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity 0.4s ease;
}

#dialog-teamleden-wrapper.show::backdrop {
    opacity: 1;
}

#dialog-teamleden {
    width: 100%;
    max-width: 900px;
    background-color: var(--clr-white);
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 768px) {
    #dialog-teamleden {
        flex-direction: column;
    }
}

.dialog-teamleden-image {
    position: relative;
}

.dialog-teamleden-image::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/2025/11/overgaauw-tandartsen-teamlid-achtergrond-wit.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.dialog-teamleden-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}

#dialog-teamleden-close-button {
    color: var(--clr-green-800);
    font-size: var(--text-300);
	font-family: 'articulat-cf';
    background-color: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: underline;

    &:hover {
        opacity: 0.75;
    }
}


/* Shortcode : [praktische_informatie_list] */
#praktische-informatie-inhoud a {
    text-decoration: underline;
    color: var(--clr-white);
    transition: all 0.3s ease;

    &:hover {
        color: var(--clr-green-200);
    }
}


/* Ninja contact form */

#nf-field-3, #nf-field-9, #nf-field-10, #nf-field-11, #nf-field-12, #nf-field-14, #nf-field-18, .nf-repeater-fieldset input {
    font-size: var(--text-200);
    font-family: "Lato", sans-serif;
    color: var(--clr-green-800);
    padding: 10px !important;
    border-radius: 4px;
}

#ninja_forms_required_items, .nf-field-container {
    margin-bottom: 8px !important;
}

#nf-form-title-1, label[for="nf-field-3"], label[for="nf-field-9"], label[for="nf-field-10"], label[for="nf-field-11"], label[for="nf-field-12"], label[for="nf-field-14"], .nf-repeater-fieldset label, .nf-form-fields-required, legend, .ninja-forms-req-symbol {
    display: none;
}

.date-wrap:has(.nf-field-label) .nf-field-label {
    display: none !important;
}

label#nf-label-field-15 {
    color: white !important;
    font-weight: 200 !important;
    font-size: var(--text-100) !important;
}

label#nf-label-field-18 {
    color: var(--clr-white) !important;
    font-weight: 700 !important;
    font-size: var(--text-200) !important;
    font-family: "Lato", sans-serif !important;
}

.nf-add-fieldset {
    border: 0px solid var(--clr-white);
    background-color: transparent;
    color: var(--clr-green-200);
    font-size: var(--text-200);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
        color: var(--clr-white);
    }
}

.nf-add-fieldset span {
    font-size: var(--text-400);
    margin-right: 5px;
}

button.nf-remove-fieldset {
    display: flex;
	border-radius: 4px;
    background-color: var(--clr-green-200);
    color: var(--clr-green-800);
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 0px solid var(--clr-white);

    &:hover {
        opacity: 0.8;
    }
}

input[type="checkbox"] {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin: 6px;
    padding: 0;
    border: 0px solid var(--clr-white);
    appearance: none;
    background-color: transparent;
    outline: none;
    transition: all 0.3s ease;
  }

  input[type="checkbox"]:checked {
    background-size: cover;
    padding: 2px;
  }
  
  input[type="checkbox"]:not(:disabled):checked {
    accent-color: #D0E3B7 !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 32 32" xml:space="preserve"><path style="fill: %23274c77" d="M11.941,28.877l-11.941-11.942l5.695-5.696l6.246,6.246l14.364-14.364L32,8.818"/></svg>');
  }


.html-wrap {
    color: var(--clr-white);
    font-size: var(--text-200);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 20px;
}

.nf-response-msg p {
    font-size: var(--text-200);
    font-weight: 400;
    font-family: "Lato", sans-serif;
    color: var(--clr-white);
}

.nf-error-msg {
    color: var(--clr-white) !important;
}

/* Submit button */
#nf-field-4 {
    display: flex;
    padding: 0.75rem 2rem;
	border-radius: 80px;
    font-family: 'Nicholas';
    font-weight: 700;
    font-size: var(--text-300);
    text-decoration: none;
    background-color: var(--clr-green-200);
    color: var(--clr-green-800);
    width: fit-content;
	position: relative;
	overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 0px solid var(--clr-white);

    &:hover {
        opacity: 0.8;
    }
}

/* Mobile menu */
#mobile-menu-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    margin: 0;
    padding: 0;
    border: none;
    background-color: var(--clr-green-800);
    z-index: 9999;
    transform: translateX(100%) scale(0.9) rotateY(-15deg);
    opacity: 0;
    transform-origin: right center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease, scale 0.4s ease;
    perspective: 1000px;
}

#mobile-menu-dialog.show {
    transform: translateX(0) scale(1) rotateY(0deg);
    opacity: 1;
}

#mobile-menu-dialog.closing {
    transform: scale(0.9);
    opacity: 0;
    transform-origin: center center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#mobile-menu-dialog.closing * {
    transition: none !important;
}

#mobile-menu-dialog-header {
    display: flex;
    justify-content: space-between;
    padding: 25px 20px;
    overflow: hidden;
}

#mobile-menu-dialog-header > * {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#mobile-menu-dialog.show #mobile-menu-dialog-header > *:nth-child(1) {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition-delay: 0.2s;
}

#mobile-menu-dialog.show #mobile-menu-dialog-header > *:nth-child(2) {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
    transition-delay: 0.25s;
}

#mobile-menu-dialog-header > *:nth-child(1) {
    transform: translateX(-50px) scale(0.8);
}

#mobile-menu-dialog-header > *:nth-child(2) {
    transform: translateX(50px) rotate(180deg) scale(0.8);
}

#mobile-menu-dialog-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--clr-green-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: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-list-wrapper {
    padding: 25px;
}

#mobile-menu-logo {
    max-width: 60%;
    margin-top: -5px;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-list a {
    color: var(--clr-green-200);
    font-size: 1.5rem;
    font-family: "Nicholas";
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-100px) rotate(-10deg) scale(0.8);
    filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left center;
}

#mobile-cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    margin-top: 20px;
    background-color: var(--clr-white);
    color: var(--clr-green-800);
    font-size: var(--text-300);
    font-family: "Nicholas";
    font-weight: 700;
    text-decoration: none;
    border-radius: 80px;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(1) {
    transition-delay: 0.3s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(2) {
    transition-delay: 0.35s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(3) {
    transition-delay: 0.4s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(4) {
    transition-delay: 0.45s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(5) {
    transition-delay: 0.5s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(6) {
    transition-delay: 0.55s;
}

#mobile-menu-dialog.show #mobile-cta-button {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.6s;
}

.mobile-menu-list a:hover {
    color: var(--clr-orange-500);
    transform: translateX(15px) scale(1.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* Shortcode : [hero_content] */
#hero-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100%
}

@media (max-width: 980px) {
    #hero-content-wrapper {
        flex-direction: column;
        justify-content: center;
        min-height: fit-content;
    }
}

#hero-content-media {
    width: 50%;
}

@media (max-width: 980px) {
    #hero-content-media {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #hero-content-media.hide-mobile-media {
        display: none !important;
    }
}

#hero-content {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 980px) {
    #hero-content {
        justify-content: flex-start;
        width: 100%;
    }
}

#hero-content-text {
    padding: 65px 0px;
    width: min(620px, 80%);
}

@media (max-width: 980px) {
    #hero-content-text {
        width: 100%;
        margin: 0 10%;
    }
}

#hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-green-900);
    z-index: -1;
}

#hero-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 35%;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0));
    z-index: 2;
}

#hero-content-media::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to left, rgba(14, 38, 32, 0.0), rgba(14, 38, 32, 1));
    z-index: 1;
    width: 50%;
}

@media (max-width: 980px) {
    #hero-content-media::before {
        display: none;
    }
}

#hero-photo-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 980px) {
    #hero-photo-gallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 10px
    }
}

@media (max-width: 980px) {
    .hero-gallery-desktop {
        display: none !important;
    }
}

@media (min-width: 980px) {
    .hero-gallery-desktop {
        display: block;
    }
}

@media (min-width: 980px) {
    .hero-slider-mobile {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .hero-slider-mobile {
        display: block;
    }
}

#hero-slider-wrapper .slider-item {
    height: 300px;
}

#hero-slider-wrapper ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: var(--clr-green-800);
    border-radius: 80px;
    width: fit-content;
    padding: 0px 10px 5px 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
}

#hero-slider-wrapper ul li button {
    font-size: 0px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--clr-white);
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border: 0px solid var(--clr-white);
}

#hero-slider-wrapper ul li.slick-active button {
    background-color: var(--clr-green-200);
}

.hero-photo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-photo-slide.active {
    opacity: 1;
}

#hero-dots-container {
    padding: 30px 0px;
    z-index: 10;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: min(620px, 80%);
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 980px) {
    #hero-dots-container {
        position: relative;
        width: fit-content;
        justify-content: center;
        margin-top: auto;
        background-color: var(--clr-green-800);
        border-radius: 80px;
        padding: 10px;
    }
}

#hero-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--clr-white);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-dot.active {
    background-color: var(--clr-green-800);
}

@media (max-width: 980px) {
    .hero-dot.active {
        background-color: var(--clr-green-200);
    }
}

.hero-dot.active:hover {
    background-color: var(--clr-green-800);
}

@media (max-width: 980px) {
    .hero-dot.active:hover {
        background-color: var(--clr-green-200);
    }
}


.opaque-logo::before {
    content: '';
    background-image: url(/wp-content/uploads/2025/11/overgaauw-tandartsen-logo-icoon-wit.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -150px;
    left: -5%;
    width: var(--logo-width);
    height: var(--logo-height);
    opacity: 0.05;
    z-index: 3;
}

@media (max-width: 980px) {
    .opaque-logo::before {
        right: -5%;
        left: auto;
        top: -15vw;
    }
}