/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    /* Font */
    --inter: 'Inter', sans-serif;
    --playfair-display: 'Playfair Display', serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #193929;
    --primary-bg: #1b3625;
    --secondary: #ffc934;
    --gray: #474b4e;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--black);
    font-size: 16px;
    font-family: var(--inter);
    font-weight: 300;
    line-height: 1.5;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}
::selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

/* =============================== */
/* :: 4.0 Common CSS */
/* =============================== */

/* ===== Typography CSS Start ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--playfair-display);
}

.fs-1 {
    font-size: 36px !important;
    line-height: 1.173;
}
.fs-2 {
    font-size: 32px !important;
    line-height: 1.115;
}
.fs-3,
.fs-4 {
    font-size: 30px !important;
    line-height: 1.3;
}
.fs-base {
    font-size: 16px;
}

.ff-inter {
    font-family: var(--inter);
}
.ff-playfair-display {
    font-family: var(--playfair-display);
}
/* ===== Typography CSS End ===== */

/* ===== Color CSS Start ===== */
.text-primary {
    color: var(--primary) !important;
}
.text-gray {
    color: var(--gray) !important;
}
/* ===== Color CSS End ===== */

/* ===== Button CSS Start ===== */
.btn {
    min-height: 48px;
    padding: 11px 32px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-size: 14px;
    letter-spacing: 1.6px;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.btn--secondary,
.btn--secondaryTwo {
    background-color: var(--secondary);
}
.btn--secondary:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    background-color: transparent;
}
.btn--secondaryTwo:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}
.btn__icon--arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}
.btn__icon--arrow svg {
    max-width: 20px;
    height: auto;
}
/* ----- Button Animation ----- */
/* Button Text */
.btn__text {
    position: relative;
    display: inline-block;
    height: auto;
    overflow: hidden;
}
.btn__text__one,
.btn__text__two {
    display: block;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.btn__text__one {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}
.btn__text__two {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
}
.btn:hover .btn__text__one {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
}
.btn:hover .btn__text__two {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

/* Button Arrow */
.btn:hover .arrow-right-anim {
    -webkit-animation: arrowRightTrough 0.3s ease-in-out forwards;
    animation: arrowRightTrough 0.3s ease-in-out forwards;
}
@-webkit-keyframes arrowRightTrough {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    33% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    50% {
        opacity: 0;
    }
    66% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@keyframes arrowRightTrough {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    33% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    50% {
        opacity: 0;
    }
    66% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

/* ===== Button CSS End ===== */

/* ===== CSS for Random Componetns/Classes Start ===== */
.gradient-text {
    background: -o-linear-gradient(left, #c5a250 0%, #f8dc76 100%);
    background: -webkit-gradient(linear, left top, right top, from(#c5a250), to(#f8dc76));
    background: linear-gradient(to right, #c5a250 0%, #f8dc76 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.transition-common {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* ===== CSS for Random Componetns/Classes End ===== */

/* =============================== */
/* :: 5.0 Header Area CSS Start */
/* =============================== */
.header--area {
    border-bottom: 1px solid rgba(255, 201, 52, 0.25);
}
.header__wrapper {
    max-width: 1240px;
}
.logo--header {
    max-width: 112px;
}
.mobile-menu-open,
.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--black);
}
.mobile-menu .offcanvas {
    background-color: rgba(27, 54, 37, 0.75);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.mobile-menu .offcanvas-header {
    padding: 20px;
}
.mobile-menu .offcanvas-body {
    padding: 20px;
}
.nav__link--mobileMenu {
    padding: 14px 0;
    color: var(--white);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.nav__link--mobileMenu.active {
    pointer-events: none;
    font-weight: 700;
}
.nav__link--mobileMenu:hover {
    color: var(--secondary);
}
.nav__link--mobileActive {
    color: var(--secondary);
    font-weight: 700;
}

/* Header CSS for Desktop Start */
.nav--header {
    padding: 12px 0 0;
}
.nav__wrapper--header {
    gap: 32px;
}
.nav__link--header {
    color: var(--white);
    font-size: 15px;
}
.nav__link--header.active {
    font-weight: 700;
    pointer-events: none;
}
.nav__link--header:hover {
    color: var(--secondary);
}
ul.nav__wrapper--header li:last-child a {
    color: var(--secondary);
    font-weight: 700;
}
ul.nav__wrapper--header li ul li:last-child a {
    color: #fff;
    font-weight: 500;
}
}
/* Header CSS for Desktop End */

/* =============================== */
/* :: 5.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Hero Section CSS Start */
/* =============================== */
.hero__content {
    padding: 128px 0 64px;
    max-width: 1600px;
}
.hero__wrapper {
    max-width: 1240px;
}
.hero__thumb {
    max-width: 42%;
    width: 100%;
    max-height: 79%;
    position: absolute;
    bottom: 0;
    right: -5%;
    z-index: -1;
}
.hero__thumb__box {
    border-radius: 300px 300px 0 0;
}
.hero__thumb__object {
    position: absolute;
    top: -15%;
    right: 12%;
    width: 70%;
}
/* =============================== */
/* :: 6.0 Hero Section CSS End */
/* =============================== */

/* =================================== */
/* :: 7.0 Treatments Section CSS Start */
/* =================================== */
.treatments--section {
    padding: 48px 0;
}
.treatments__wrapper {
    max-width: 1148px;
}

/* Common CSS for Card Start */
.card {
    height: 100%;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}
/* Common CSS for Card End */

.card--treatment {
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.card--treatment .card__thumb {
    height: 352px;
    border-radius: 350px 350px 0 0;
    margin-bottom: 20px;
}
.card__thumb__image {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.card--treatment:hover .card__thumb__image {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.card--treatment .card__content {
    max-width: 292px;
}
.card--treatment .card__title {
    font-size: 24px;
}
/* ================================= */
/* :: 7.0 Treatments Section CSS End */
/* ================================= */

/* =============================== */
/* :: 8.0 Together Section CSS Start */
/* =============================== */
.together--section {
    padding: 48px 0;
}
.together__thumbs {
    aspect-ratio: 1 / 1;
    margin-bottom: 32px;
}
.together__thumb__img,
.together__obj__img {
    position: absolute;
}
.together__thumb__img--one {
    width: 47%;
    height: 54%;
    left: 14%;
    top: 12.5%;
    border-radius: 30% 0 0 0;
}
.together__thumb__img--two {
    width: 26%;
    height: 30%;
    right: 9%;
    top: 22%;
    border-radius: 0 40% 0 0;
}
.together__thumb__img--three {
    width: 31%;
    height: 29%;
    left: 30%;
    bottom: 0;
    border-radius: 0 0 40% 0;
}
.together__thumb__img--four {
    width: 35%;
    height: 27%;
    right: 0;
    bottom: 17%;
    border-radius: 0 39% 0 0;
}

.together__obj__img--string {
    width: 16%;
    height: auto;
    top: 3%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.together__obj__img--green {
    width: 19%;
    height: 18%;
    display: inline-block;
    border-radius: 65% 0 0 0;
    top: 0;
    right: 16%;
    background-color: var(--primary-bg);
}
.together__obj__img--yellow {
    width: 26%;
    height: 22%;
    display: inline-block;
    border-radius: 0 0 0 50%;
    bottom: 7%;
    left: 0;
    background-color: var(--secondary);
}
/* =============================== */
/* :: 8.0 Together Section CSS End */
/* =============================== */

/* =================================== */
/* :: 9.0 QuickLinks Section CSS Start */
/* =================================== */
.quick-links--section {
    padding: 48px 0;
    background-color: #f5f0e9;
}
.quick-links__items {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.quick-links__items:last-child {
    padding-bottom: 0;
    border: 0;
}
.quick-links__title {
    font-size: 20px;
}
.quick-links__items .link {
    color: var(--primary);
    gap: 4px;
}
.quick-links__items .link:hover {
    color: var(--secondary);
}
.quick-links__icon {
    max-width: 20px;
    height: auto;
}
.quick-links .link:hover .quick-links__icon .icon {
    -webkit-animation: iconTranslate 0.3s ease-in-out forwards;
    animation: iconTranslate 0.3s ease-in-out forwards;
}
@-webkit-keyframes iconTranslate {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    33% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    50% {
        opacity: 0;
    }
    66% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@keyframes iconTranslate {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    33% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    50% {
        opacity: 0;
    }
    66% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
/* ================================= */
/* :: 9.0 QuickLinks Section CSS End */
/* ================================= */

/* =============================== */
/* :: 10.0 TeamSection CSS Start */
/* =============================== */
.team--section {
    padding: 48px 0;
}
.team__content {
    max-width: 1920px;
}
.team__slider .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}
.team__slider .swiper-slide {
    max-width: 256px;
    width: 100%;
}
.card--team .card__thumb {
    height: 352px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.distortionHoverImg {
    position: relative;
}
.distortionHoverImg canvas {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
}
.card--team:hover .card__thumb__image {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.card--team .card__content {
    padding: 0 10px;
}
.card--team .card__title {
    font-size: 20px;
}
/* =============================== */
/* :: 10.0 TeamSection CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Contact Section CSS Start */
/* =============================== */
.contact__content {
    padding: 48px 0;
}
.contact__thumb {
    width: 47%;
    height: 84.5%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 300px 300px 0 0;
}
.form__input {
    height: 48px;
    padding: 12px 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.form__input--textarea {
    height: 96px;
}
.form__input:focus,
.form__input:not(:placeholder-shown) {
    border-color: var(--white);
}
.form__input::-webkit-input-placeholder {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5;
}
.form__input::-moz-placeholder {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5;
}
.form__input:-ms-input-placeholder {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5;
}
.form__input::-ms-input-placeholder {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5;
}
.form__input::placeholder {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5;
}
/* =============================== */
/* :: 11.0 Contact Section CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 Footer Area CSS Start */
/* =============================== */
.footer--area {
    background-color: #f5f0e9;
}
.footer__wrapper,
.footer__bottom__inner {
    max-width: 1288px;
}
.footer__content {
    padding: 48px 0;
}
.logo--footer {
    max-width: 160px;
}
.footer__widget__title {
    font-size: 18px;
}
.nav__wrapper--footer {
    gap: 8px;
}
.nav__link--footer,
.contact__item__text,
.contact__item__link,
.legal__link {
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
}
.nav__link--footer:hover,
.contact__item__link:hover,
.legal__link:hover {
    color: var(--secondary);
}
.contact--footer {
    gap: 12px;
}
.contact__item {
    gap: 8px;
}
.contact__icon {
    width: 16px;
    color: var(--primary);
    line-height: normal;
}
.contact__icon svg {
    max-width: 100%;
}
.social-link {
    gap: 12px;
}
.social-link__item {
    width: 36px;
    height: 36px;
    color: var(--white);
    background-color: var(--black);
}
.social-link__item:hover {
    color: var(--black);
    background-color: var(--secondary);
}
.social-link__item svg {
    width: auto;
    height: 50%;
}
.footer__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}
/* =============================== */
/* :: 12.0 Footer Area CSS End */
/* =============================== */


/* =============================== */
/* :: Dropdown navigation (drop-in) */
/* =============================== */

/* Zorg dat li ankerpunt kan zijn */
.nav__item.has-dropdown { position: relative; }

/* Desktop dropdown */
.nav__wrapper--header .nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  margin: 0;
  background: rgba(27, 54, 37, 0.98);
  border: 1px solid rgba(255, 201, 52, 0.25);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  display: none;
  z-index: 9999;
}

/* Link styling in dropdown */
.nav__dropdown__link {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  white-space: nowrap;
}

.nav__dropdown__link:hover {
  color: var(--secondary);
}

/* Openen op hover en keyboard focus */
.nav__wrapper--header .has-dropdown:hover > .nav__dropdown,
.nav__wrapper--header .has-dropdown:focus-within > .nav__dropdown {
  display: block;
}

/* Mobile dropdown layout */
.nav__mobileRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.nav__dropdownToggle{
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__dropdownToggle:hover{
  background: rgba(255,255,255,0.14);
  color: var(--secondary);
}

.nav__dropdown--mobile{
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.nav__dropdown--mobile .nav__dropdown__link{
  padding: 10px 0 10px 14px;
  color: var(--white);
  opacity: 0.95;
}

.nav__dropdown--mobile .nav__dropdown__link:hover{
  color: var(--secondary);
}

/* Optioneel: klein inspringen t.o.v. main link */
.nav__item--mobileMenu.has-dropdown > .nav__link--mobileMenu {
  border-bottom: 0; /* want de divider zit nu onder submenu */
}

.nav__item.has-dropdown::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;     /* vangt het gat op */
}