#global-page {
   margin: auto;
   position: relative;
}

i.t1 {
    position: relative;
    top: -1px;
    line-height: 1;
}

header {
    position: fixed;
    width: 100%;
    z-index: 90;
    transition: .2s all ease;
    background: var(--color-black);
    border-bottom: 1px solid transparent;
}

header.scroll {
    border-bottom: 1px solid #333;
}

header .container {
   max-width: 100%;
   padding: 0 30px;
   transition: .2s all ease;
}

header .logo-content {
    height: 25px;
    margin: 5px 0;
}

header .logo-content img {
    width: auto;
    height: 100%;
}

header .nav-desktop nav > ul > li,
header .nav-bis nav > ul > li {
    display: inline-block;
    margin-right: 15px;
}

header .nav-desktop nav a {
    font-weight: var(--font-weight-max);
    position: relative;
}

header .nav-bis nav > ul > li {
    margin-right: 0;
}

header .nav-desktop nav > ul > li:last-child,
header .nav-bis nav > ul > li:last-child {
    margin-right: 0;
}

header .nav-desktop nav > ul > li.parent,
header .nav-bis nav > ul > li.parent {
    padding-right: 10px;
    background: url(img/arrow-nav.png) no-repeat;
    background-position: center right;
}

header .nav-desktop nav > ul > li > a,
header .nav-desktop nav > ul > li > span,
header .nav-bis nav > ul > li > a,
header .nav-bis nav > ul > li > span {
    color: var(--color-txt) !important;
    display: block;
    line-height: 70px;
    letter-spacing: 1px;
    padding: 0 5px;
    position: relative;
    transition: .2s all ease;
}

header.scroll .nav-desktop nav > ul > li > a,
header.scroll .nav-desktop nav > ul > li > span,
header.scroll .nav-bis nav > ul > li > a,
header.scroll .nav-bis nav > ul > li > span {
    line-height: 90px;
}

header .nav-desktop nav > ul > li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive > span,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > span,
header .nav-bis nav > ul > li.parent ul li.menuactive a {
    color: var(--color-primary) !important;
    position: relative;
}

header .nav-desktop nav > ul > li.menuactive > a:after,
header .nav-desktop nav > ul > li > a:hover:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 4px;
    transform: translateX(-10px);
    background: var(--color-primary);
    left: 50%;
    top: 0;
    border-radius: 0 0 4px 4px;
    transition: .2s all ease;
}

header.scroll .nav-desktop nav > ul > li.menuactive > a:after,
header.scroll .nav-desktop nav > ul > li > a:hover:after {
    bottom: -5px;
}

header .nav-desktop nav > ul > li.parent ul,
header .nav-bis nav > ul > li.parent ul {
    position: absolute;
    background: var(--color-white);
    padding: 10px 20px;
    -webkit-filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    min-width: 230px;
    visibility: hidden;
    opacity: 0;
    margin-top: 20px;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent ul li {
    display: block;
    padding: 10px 0;
}

header .nav-bis nav > ul > li.parent ul li {
    display: block;
}

header .nav-desktop nav > ul > li.parent ul li:last-child,
header .nav-bis nav > ul > li.parent ul li:last-child {
    border-bottom: 0;
}

header .nav-desktop nav > ul > li.parent ul li a,
header .nav-bis nav > ul > li.parent ul li a {
    display: block;
    line-height: 1;
    letter-spacing: .5px;
    color: var(--color-black);
}

header .nav-desktop nav a:hover,
header .nav-bis nav a:hover {
    color: var(--color-primary) !important;
}

header .nav-desktop nav > ul > li > ul > li > ul,
header .nav-bis nav > ul > li > ul > li > ul {
    visibility: hiddent;
    opacity: 0;
    transition: .3s;
    top: 0;
    left: calc(100% - 20px);
}

header .nav-desktop nav > ul > li > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li > ul > li > ul > li > ul,
.nav-mobile nav > ul > li > ul > li > ul > li > ul {
    display: none;
}

header .nav-bis nav a {
    font-size: 22px !important;
    line-height: 1 !important;
}

header .nav-bis nav a i {
   line-height: 70px;
}

header .nav-bis nav > ul > li.parent {
    position: relative;
}

header .nav-bis nav > ul > li.parent ul li a {
    font-size: 15px !important;
}

header .nav-bis nav > ul > li.parent ul {
    min-width: inherit !important;
    right: 0;
}
header .nav-bis nav > ul > li.parent {
    background-position-x: right !important;
    background-position-y: 20px !important;
}

/* Nav mobile */

.nav-mobile {
    position: fixed;
    width: 320px;
    height: 100%;
    right: -330px;
    top: 0;
    z-index: 999999;
    background: #fff;
    transition: .2s;
    opacity: 0;
}

.nav-mobile.open-nav {
    right: 0;
    opacity: 1;
    transition: .4s;
}

.nav-mobile .inner {
    height: 100%;
    overflow: scroll;
    padding-bottom: 120px;
}

.nav-mobile nav ul li {
    padding: 10px 0;
    border-top: 1px dotted #ddd;
}

.nav-mobile nav ul li.parent {
    padding-bottom: 0 !important;
}

.nav-mobile nav ul li.parent > span {
    padding-bottom: 10px;
}

.nav-mobile nav ul li ul li {
    padding-left: 20px;
}

.nav-mobile nav ul li a,
.nav-mobile nav ul li > span {
    display: block;
    color: var(--color-secondary);
    padding-left: 20px;
    font-weight: 600;
}

.nav-mobile nav ul li.menuactive > a {
    color: var(--color-primary); !important;
}

.nav-mobile nav ul li.parent > a {
    margin-bottom: 10px;
}

.nav-mobile nav ul li a:hover {
    color: var(--color-primary);;
}

.bt-open-nav {
    border-radius: 50%;
    overflow: hidden;
    margin-left: 1rem;
    cursor: pointer;
}

.bt-open-nav i {
    background: var(--color-primary);
    color: var(--color-white);
    line-height: 45px;
    width: 45px;
    text-align: center;
    font-size: 26px;
}

.bt-open-nav:hover i {
    background: var(--color-primary-hover);
}

.bt-close-nav {
    line-height: 60px;
    padding-left: 15px;
    font-size: 28px;
    cursor: pointer;
}

.bt-close-nav i {
    line-height: 3;
}

.bt-close-nav:hover i {
    color: var(--color-primary);
}

.bt-mask-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    backdrop-filter: blur(2px);
}

.open-nav .bt-mask-nav {
    transition: .3s;
    opacity: 1;
    visibility: visible;
}

.nav-mobile .nav-item a {
    color: var(--color-secondary);
    font-weight: 600;
}

.nav-mobile .nav-item a:hover {
    color: var(--color-primary);
}

.nav-mobile .nav-item .bt-search {
    font-size: 28px !important;
    margin-left: 15px;
    margin-right: 15px;
}

.nav-mobile .nav-item .bt-search i {
    line-height: 3;
}


/* Heading */

.heading-content {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 70px 30px;
    padding-bottom: 0;
    overflow: hidden;
}

.banner-content {
    position: absolute;
    width: calc(100% - 60px);
    height: calc(100% - 70px);
}

.banner-content .component-fullwidth {
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: var(--border-radius-max);
    overflow: hidden;
}

.banner-content .component > ul {
    position: absolute;
    top: 0;
}

.banner-content .component-fullwidth li .filter {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.banner-content .component-fullwidth li .filter:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(0,0,0, 1) 0%, rgba(0,0,0, 8) 100%);
    opacity: .5;
}

.banner-content .component-fullwidth li .filter:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(61, 72, 77, .5) 0%, rgba(61, 72, 77, 0) 100%);
}

.banner-content .component-fullwidth nav {
    display: none;
}

.banner-content .component-fullwidth li img {
    top: 0;
}

.banner-content .component-fullwidth li .inner {
    position: relative;
    top: 100px;
    opacity: 0;
    transition: .3s;
}

.banner-content .component-fullwidth li.current .inner {
    top: 0;
    opacity: 1;
    transition: .3s;
}

.banner-content .component-fullwidth li .background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center !important;
    background-size: cover !important;
}

.banner-content .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-white);
}

.banner-content .container .inner {
    max-width: 700px;
    position: relative;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: .6s all ease;
}

.banner-content.fx .container .inner {
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
}

.banner-content .logo-banner {
    width: 20vw !important;
    margin: auto;
    max-width: 400px;
}

.banner-content .phone-box {
    position: absolute;
    top: 50%;
    left: -1px;
    background: var(--color-black);
    writing-mode: vertical-lr;
    transform: rotate(180deg) translateY(50%) translateX(0);
    min-height: 250px;
    text-align: center;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
    z-index: 9;
    font-weight: var(--font-weight-max);
    transition: .6s all ease;
}

.banner-content.fx .phone-box {
    transform: rotate(180deg) translateY(50%) translateX(100px);
    transition: .6s all ease;
}

.banner-content .phone-box:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 20px;
    bottom: -20px;
    right: -10px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.banner-content .phone-box:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 20px;
    top: -20px;
    right: -10px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.banner-content .mail-box {
    position: absolute;
    top: 50%;
    right: -1px;
    background: var(--color-black);
    writing-mode: vertical-lr;
    transform: rotate(180deg) translateY(50%) translateX(0);
    min-height: 250px;
    text-align: center;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
    z-index: 9;
    font-weight: var(--font-weight-max);
    transition: .6s all ease;
}

.banner-content.fx .mail-box {
    transform: rotate(180deg) translateY(50%) translateX(-100px);
    transition: .6s all ease;
}

.banner-content .mail-box:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 20px;
    bottom: -20px;
    left: -10px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.banner-content .mail-box:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 20px;
    top: -20px;
    left: -10px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* Video banner */

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    transform: scale(0);
    transition: 1s all ease;
}

.video-content.active {
    opacity: 1;
    visibility: visible;
    border-radius: var(--border-radius-max);
    transform: scale(1.0);
}

.video-content video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    object-fit: cover;
}

.video-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 2;
}

.video-content .bt-close-movie i {
    position: absolute;
    background: var(--color-primary);
    color: var(--color-white);
    z-index: 9;
    top: 20px;
    right: 20px;
    font-size: 35px;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.video-content .bt-close-movie i:hover {
    background: var(--color-primary-hover);
}

/* Booking */

.booking-form-content {
    position: relative;
    transform: translateY(-50%);
    z-index: 99;
    background: rgba(245,245,245, 0);
    bottom: 0;
}

.booking-form {
   position: relative;
   background: var(--color-white);
   border-radius: var(--border-radius-max);
   padding: 15px;
   transition: padding 0.4s ease;
   background: var(--color-black);
}

.booking-form::before {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 30px;
    top: calc(50% - 5px);
    left: -20px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.booking-form::after {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 30px;
    top: calc(50% - 5px);
    right: -20px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(90deg);
    transform: translateY(-50%) rotate(180deg);
}

.booking-form .inner {
    background: var(--color-dark);
    padding: 10px 20px;
    padding-bottom: 15px;
    border-radius: var(--border-radius-base);
    border: 1px solid #333;
    position: relative;
    z-index: 99;
    transform-origin: bottom;
}

.booking-form-content.fx-zoom .inner {
    -webkit-animation: .4s zoom 2 alternate;
    -moz-animation: .4s zoom 2 alternate;
    -o-animation: .4s zoom 2 alternate;
    -ms-animation: .4s zoom 2 alternate;
    animation: .4s zoom 2 alternate;
}

@keyframes zoom {
    0% {transform: scale(1.0);}
    50% {transform: scale(1.19);}
    100% {transform: scale(1.0);}
}

@-webkit-keyframes zoom {
    0% {transform: scale(1.0);}
    50% {transform: scale(1.19);}
    100% {transform: scale(1.0);}
}

@-moz-keyframes zoom {
    0% {transform: scale(1.0);}
    50% {transform: scale(1.19);}
    100% {transform: scale(1.0);}
}

@-o-keyframes zoom {
    0% {transform: scale(1.0);}
    50% {transform: scale(1.19);}
    100% {transform: scale(1.0);}
}

@-ms-keyframes zoom {
    0% {transform: scale(1.0);}
    50% {transform: scale(1.19);}
    100% {transform: scale(1.0);}
}

.booking-form label {
    white-space: nowrap;
    padding-left: 15px;
    margin-bottom: 5px;
}

.booking-form input {
   margin-bottom: 0;
}

.booking-form input#date,
.booking-form input.booking-date {
    background: var(--color-white) url(img/date.svg) no-repeat;
    background-position: center right 15px;
    background-size: 20px;
    position: relative;
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding: 0 40px 0 var(--padding);
    border: 1px solid #ddd;
    border-radius: var(--border-radius-base);
    color: var(--color-dark);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-min);
    -webkit-appearance: none;
    appearance: none;
}
.booking-form input#date::-webkit-datetime-edit { color: var(--color-dark); padding: 0; }

/* Masque l'icône native du sélecteur de date et rend tout le champ cliquable
   (on conserve l'icône dorée date.svg en fond) */
.booking-form input#date::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
}

.booking-form input#hour {
    background: var(--color-white) url(img/hour.svg) no-repeat;
    background-position: center right 15px;
    background-size: 20px;
    padding-right: 40px;
}

.booking-form-content.fixed {
    position: fixed;
    width: 100%;
    transform: translateY(0);
    bottom: 0;
    padding: 5px 0;
}

.booking-form-content.fixed.fx .inner {
    background: transparent;
}

.booking-form-content.fx {
    background: var(--color-dark);
    border-top: 1px solid #333;
}

.booking-form-content.fx .booking-form {
    background: transparent;
    padding: 0 15px;
}

.booking-form-content.fx .booking-form::before,
.booking-form-content.fx .booking-form::after {
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-dark);
    box-shadow: inset -10px 10px 0px 0px var(--color-dark);
}

.booking-form-content.fx .booking-form .inner {
    border: 0;
    padding: 20px;
    padding-top: 15px;
}

.booking-form-content .booking-form .open-legend {
    position: relative;
    line-height: 0;
    margin-left: 2px;
}

.booking-form-content .booking-form .open-legend i {
    font-size: 20px;
    color: var(--color-primary);
    cursor: pointer;
}

.booking-form-content .booking-form .open-legend legend {
    position: absolute;
    line-height: var(--line-height-base);
    white-space: normal;
    width: 300px;
    display: none;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    padding: 15px;
    border-radius: var(--border-radius-min);
    -webkit-box-shadow: 0px 0px 4px 5px rgba(0,0,0,0.11);
    box-shadow: 0px 0px 4px 5px rgba(0,0,0,0.11);
}

.booking-form-content .booking-form .open-legend:hover legend {
    display: block;
}

.mobile-open-booking-form {
    position: relative;
    transform: translateY(-50%);
    z-index: 88;
    background: rgba(245,245,245, 0);
    bottom: 0;
    transition: .4s all ease;
    opacity: 1;
    visibility: visible;
}

.mobile-open-booking-form.opacity {
    opacity: 0;
    visibility: hidden;
}

.mobile-open-booking-form .inner {
    position: relative;
    margin: auto;
    background: var(--color-black);
    border-radius: var(--border-radius-max);
    padding: 15px;
    max-width: 400px;
}

.mobile-open-booking-form .inner::before {
    position: absolute;
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    border-radius: 30px;
    top: calc(50% - 3px);
    left: -16px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px rgba(0,0,0, 1);
    box-shadow: inset -10px 10px 0px 0px rgba(0,0,0, 1);
    -webkit-transform: rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.mobile-open-booking-form .inner::after {
    position: absolute;
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    border-radius: 30px;
    top: calc(50% - 3px);
    right: -16px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px rgba(0,0,0, 1);
    box-shadow: inset -10px 10px 0px 0px rgba(0,0,0, 1);
    -webkit-transform: rotate(90deg);
    transform: translateY(-50%) rotate(180deg);
}

.mobile-open-booking-form.fixed {
    position: fixed;
    width: 100%;
    bottom: 0;
    transform: translateY(0%);
}

.mobile-open-booking-form.fixed.fx {
    background: var(--color-dark);
    -webkit-box-shadow: 0px 0px 4px 2px #000;
    box-shadow: 0px 0px 4px 2px #000;
}

.mobile-open-booking-form.fixed .inner {
    background: transparent;
    padding: 10px 0;
}

.mobile-open-booking-form.fixed .inner::before,
.mobile-open-booking-form.fixed .inner::after {
    -webkit-box-shadow: inset -10px 10px 0px 0px rgba(0,0,0, 0);
    box-shadow: inset -10px 10px 0px 0px rgba(0,0,0, 0);
}

.bt-mask-open-booking-form {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 92;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    backdrop-filter: blur(2px);
}

.bt-mask-open-booking-form.open {
    transition: .3s;
    opacity: 1;
    visibility: visible;
}

/* Our spaces */

.our-spaces {
    position: relative;
    width: 100%;
    padding: 0 30px;
}

.our-spaces .space {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius-max) var(--border-radius-max) var(--border-radius-max) 0;
    color: var(--color-txt);
}

.our-spaces .space .img {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius-max);
}

.our-spaces .space .img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(196,158,143,0.3)
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.our-spaces .space:hover .img::before,
.our-spaces .space.fx-position .img::before {
  opacity: .5 !important;
  transform: rotate(45deg) translateY(100%) !important;
}

.our-spaces .space .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: translateY(0) scale(1.0);
    transition: .6s all ease;
}

.our-spaces .space:hover .img img,
.our-spaces .space.fx-position .img img {
    transform: translateY(-20px) scale(1.15) !important;
}

.our-spaces .space .img .filter:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(0,0,0, 1) 0%, rgba(0,0,0, 8) 100%);
    opacity: .6;
    z-index: 1;
}

.our-spaces .space .img .filter:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(61, 72, 77, .5) 0%, rgba(61, 72, 77, 0) 100%);
    z-index: 1;
}

.our-spaces .space .inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 100px);
    max-width: 450px;
    background: var(--color-black);
    z-index: 5;
    padding: 10px 20px;
    padding-left: 0;
    padding-bottom: 0;
    border-radius: 0 var(--border-radius-base) 0 0;
}

.our-spaces .space .inner::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 20px;
    top: -20px;
    left: -10px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.our-spaces .space .inner::after {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 30px;
    bottom: -10px;
    right: -20px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px rvar(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(90deg);
    transform: rotate(180deg);
}

.our-spaces .space .inner h4 {
    border-bottom: 1.5px solid #eee;
}

.our-spaces .space .inner .txt {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
}

.our-spaces .space:hover .inner .txt,
.our-spaces .space.fx-position .inner .txt {
    max-height: 500px !important;
    overflow: hidden !important;
    transition: 1.5s ease !important;
}

.our-spaces .space .inner .txt p {
    position: relative;
    top: 20px;
    margin-bottom: 1rem;
    opacity: 0;
    transition: .4s;
}

.our-spaces .space:hover .inner .txt p,
.our-spaces .space.fx-position .inner .txt p {
    top: 0 !important;
    opacity: 1 !important;
    transition-delay: .2s !important;
    transition-property: top, opacity !important;
}

.our-spaces .space .inner .more-info {
    margin-left: 0;
    font-weight: var(--font-weight-max);
    transition: .4s all ease;
}

.our-spaces .space:hover .inner .more-info,
.our-spaces .space.fx-position .inner .more-info {
    margin-left: -5px !important;
}

.our-spaces .space .inner .more-info span {
    color: var(--color-primary);
}

.our-spaces .space .inner .more-info span i {
    top: -2px;
    max-width: 0;
    overflow: hidden;
    transition: .4s all ease;
}

.our-spaces .space:hover .inner .more-info span i,
.our-spaces .space.fx-position .inner .more-info span i {
    max-width: 100% !important;
}

/* About */

.about-content {
    position: relative;
    background: rgba(150,150,150, 0);
    transition: 1.5s all ease;
}

.about-content.fx-color {
    transition-delay: 1s;
    transition-property: background;
    background: rgba(150,150,150, .1);
}

.about-content .container {
    position: relative;
    z-index: 2;
}

.about-content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(img/overlay-1.webp) no-repeat;
    background-size: 200% 200%;
    opacity: 0;
    transition: 2s all ease;
}

.about-content.fx-color::before {
    transition-delay: 1s;
    transition-property: opacity, background-size;
    background-size: 100% 100%;
    opacity: .8;
}

.about-content .icon {
    position: relative;
    flex: none;
}

.about-content .icon::after {
    position: absolute;
    content: "";
    width: 80%;
    height: 80%;
    top: 25%;
    left: 25%;
    background: var(--color-dark);
    border-radius: 50%;
    z-index: -1;
}

.about-content .icon img {
    flex: none;
}

.about-content .img-1 {
    position: relative;
    width: 100%;
    height: calc(100% + var(--gutter-y) + 80px);
    border-radius: var(--border-radius-max) var(--border-radius-max) 400px 400px;
    overflow: hidden;
    -webkit-box-shadow: 0px 8px 11px -8px rgba(0,0,0,0.6);
    box-shadow: 0px 8px 11px -8px rgba(0,0,0,0.6);
}

.about-content .img-1 .filter:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(0,0,0, 1) 0%, rgba(0,0,0, 8) 100%);
    opacity: .2;
    z-index: 1;
}

.about-content .img-1 .filter:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(61, 72, 77, .5) 0%, rgba(61, 72, 77, 0) 100%);
    z-index: 1;
}

.about-content .img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Map */

.location-content {
    padding: 30px;
}

.location-content .location {
    position: relative;
    background: var(--color-primary) url(img/bg.jpg) no-repeat;
    background-position: bottom right;
    background-size: cover;
    color: var(--color-black);
    border-radius: var(--border-radius-max);
    overflow: hidden;
}

.location-content .location ul {
    list-style: circle;
    padding-left: 22px;
}

.location-content .location ul li {
    margin-bottom: .4rem;
}

.location-content .location ul li:last-child {
    margin-bottom: 0;
}

.location-content .map-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.location-content .map-content .map {
    position: relative;
    filter: grayscale(.5);
    background: #6c6360;
    transition: .4s all ease;
    pointer-events: all;
}

.location-content .map-content .map:hover {
    filter: grayscale(0);
}

.location-content .map-content .map:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(80, 80, 80, .5) 0%, rgba(61, 72, 77, .9) 100%);
    opacity: .3;
    z-index: 999;
    pointer-events: none;
}

/* Teaser */

.spec-content .icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 20px;
    line-height: 0;
}

.spec-content .icon::after {
    position: absolute;
    content: "";
    width: 80%;
    height: 80%;
    top: 25%;
    left: 25%;
    background: #222;
    border-radius: 50%;
    z-index: -1;
}

/* Testimonial */

.testimonial-content {
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
  }

.testimonial-slider .ts-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slider .ts-slide {
    flex: 0 0 calc(33.3333% - 40px);
    box-sizing: border-box;
    padding: 25px 40px;
    padding-top: 30px;
    border: 1px solid #333;
    border-radius: var(--border-radius-base);
    background: var(--color-dark);
    margin: 0 20px;
    filter: blur(2px);
    opacity: .5;
}
.testimonial-slider .ts-slide.active {
    filter: blur(0);
    opacity: 1;
}
.testimonial-slider .ts-stars {
    color: var(--color-primary);
    line-height: 1;
    font-size: 14px;
    margin-bottom: 10px;
}
.testimonial-slider .ts-comment {
    margin-bottom: 10px;
}
.testimonial-slider .ts-author {
    color: var(--color-primary);
}

.testimonial-slider .ts-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--color-primary);
    color: var(--color-black);
    font-size: 26px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-slider .ts-prev { left: -4px; }
.testimonial-slider .ts-next { right: -4px; }

.testimonial-slider .ts-nav:hover {
    background: var(--color-primary-hover);
}

.testimonial-slider .ts-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider .ts-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f5f5f5;
    cursor: pointer;
    border: 0;
}

.testimonial-slider .ts-dot:hover {
    background: var(--color-primary);
}

.testimonial-slider .ts-dot.is-active{ background: var(--color-primary); }

@media (max-width: 768px) {
    .testimonial-slider .ts-slide { flex: 0 0 calc(50% - 40px); }
}
@media (max-width: 520px) {
    .testimonial-slider .ts-slide { flex: 0 0 100%; }
}


/* Prefooter */

.prefooter-content {
    padding: 30px;
    margin-bottom: 110px;
}

.prefooter-content .prefooter {
    position: relative;
    background: var(--color-primary) url(img/bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--color-black);
    border-radius: var(--border-radius-max);
    overflow: hidden;
}

.prefooter-content hr {
    margin: calc(var(--gutter-y)/2) 0;
    opacity: .2;
}

.newsletter .btn {
    background: var(--color-tertiary);
    border: 0;
    color: var(--color-primary);
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter .btn i {
    margin: 0;
    margin-left: 4px;
    font-size: 29px;
}

.newsletter .btn:hover {
    background: var(--color-tertiary-hover);
    color: var(--color-primary);
}

.prefooter-content .social-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 38px;
    height: 38px;
    background: var(--color-tertiary);
    border-radius: 50%;
    line-height: 0;
    margin-right: 10px;
    color: #fff;
    transition: background .2s, transform .2s;
}

.prefooter-content .social-link a i {
    color: #fff;
    font-size: 16px;
}

/* Bouton Réservation du footer : solide (contraste sur le fond doré) */
.prefooter-content .footer-resa-btn {
    background: var(--color-tertiary);
    color: #fff;
    border: 0;
    transition: background .2s, transform .2s;
}
.prefooter-content .footer-resa-btn:hover {
    background: var(--color-dark);
    color: var(--color-secondary);
    transform: translateY(-2px);
}
.prefooter-content .footer-resa-btn .material-symbols-outlined { color: inherit; }

.prefooter-content .social-link a:hover {
    background: var(--color-tertiary-hover);
    color: #fff;
    transform: translateY(-2px);
}

.prefooter-content .info-contact a {
    color: var(--color-tertiary);
}

.prefooter-content .social-link a:hover,
.prefooter-content .info-contact a:hover {
    color: var(--color-tertiary-hover);
}

.prefooter-content ul.nav-footer {
    list-style: circle;
    padding-left: 22px;
    color: var(--color-black);
}

.prefooter-content ul.nav-footer li {
    margin-bottom: .4rem;
}

.prefooter-content ul.nav-footer li:last-child {
    margin-bottom: 0;
}

.prefooter-content ul.nav-footer li a {
    color: var(--color-tertiary);
}

.prefooter-content ul.nav-footer li a:hover {
    color: var(--color-tertiary-hover);
}

.prefooter-content .info-contact span {
    display: block;
}

.prefooter-content .info-contact .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background: var(--color-tertiary);
    color: var(--color-primary);
    padding: 10px;
    border-radius: 50%;
    line-height: 0;
    margin-right: 1rem;
    max-width: 44px;
}

.prefooter-content .bt-booking {
    margin-top: 5px;
}

.prefooter-content .map-content {
    border-radius: var(--border-radius-base);
    overflow: hidden;
    position: relative;
    z-index: 9;
    min-height: 300px;
}

.prefooter-content a.top-scroll {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 9;
    background: var(--color-tertiary);
    color: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
}

.prefooter-content a.top-scroll:hover {
    background: var(--color-tertiary-hover);
    color: var(--color-primary);
}

.prefooter-content .copy {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    background: var(--color-black);
    font-size: var(--font-size-xs);
    padding: 15px 20px;
    padding-bottom: 10px;
    border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
    max-width: 460px;
    width: 100%;
    text-align: center;
}

.prefooter-content .copy::before {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 30px;
    bottom: -10px;
    left: -20px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.prefooter-content .copy::after {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 30px;
    bottom: -10px;
    right: -20px;
    z-index: 0;
    -webkit-box-shadow: inset -10px 10px 0px 0px var(--color-black);
    box-shadow: inset -10px 10px 0px 0px var(--color-black);
    -webkit-transform: rotate(90deg);
    transform: rotate(180deg);
}
