﻿/* === Base layout + dividers === */
#inner-wrap {
    margin-bottom: -30px;
}

.divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #23302E, transparent);
    margin: 0 auto;
}

.divider-white {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F3E6C9, transparent);
    margin: 0 auto;
}

.divider-left {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #23302E, transparent);
    margin: 0;
}

.divider-left-white {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #F3E6C9, transparent);
    margin: 0;
}
/* === Carousel cards (rooms) === */

.slide-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    user-select: none;
}

.carousel-slide:not(.active) .slide-card {
    filter: brightness(0.4) blur(2px);
}

.carousel-slide.active .slide-card {
    box-shadow: 0 15px 50px rgba(245, 242, 234, 0.3); /* #F5F2EA */
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.room-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.room-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.room-features {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e2e8f0;
}

.feature-icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.room-cta {
    display: inline-flex;
    width: fit-content;
    align-self: flex-start;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.room-cta:hover {
    transform: translateX(5px);
    transition: transform 0.2s ease;
    color: #fff;
}

.room-cta svg {
    opacity: 0;
    transform: translateX(-6px) scale(0.85);
    transition:
        opacity 260ms ease,
        transform 260ms ease;
}

.room-cta:hover svg,
.room-cta:focus-visible svg {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* === Buttons + header overrides === */

.button:hover,
.wp-block-button__link:hover,
.kt-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    transform: translateX(5px);
    transition: transform 0.2s ease;
}

.header-button {
    transform: none !important;
}

.header-button:hover {
    transform: none !important;
}

.site-header .mobile-header-button,
.site-header .mobile-header-button:hover,
.site-header .mobile-header-button:focus {
    transform: none !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* === Language switcher (via Polylang) === */

.aah-lang-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.aah-lang-switcher--dropdown .aah-lang-switcher__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px;
	background: #F5F2EA;
	border: 1px solid #23302E;
	border-radius: 4px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
	color: #23302E;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: all 0.2s ease;
}

.aah-lang-switcher--dropdown .aah-lang-switcher__toggle:hover,
.aah-lang-switcher--dropdown .aah-lang-switcher__toggle:focus-visible {
	background: #23302E;
	color: #F5F2EA;
	transform: translateY(-1px);
    border: 1px solid #F5F2EA;
}

.aah-lang-switcher--dropdown .aah-lang-switcher__toggle[aria-expanded="true"] .aah-lang-switcher__arrow {
	transform: rotate(180deg);
}

.aah-lang-switcher__arrow {
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.aah-lang-switcher__dropdown {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	min-width: 120px;
	background: #F5F2EA;
	border: 1px solid #23302E;
	border-radius: 4px;
	list-style: none;
	margin: 0;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 1000;
}

.aah-lang-switcher--dropdown .aah-lang-switcher__toggle[aria-expanded="true"] + .aah-lang-switcher__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.aah-lang-switcher__dropdown .aah-lang-switcher__item {
	margin: 0;
}

.aah-lang-switcher__dropdown .aah-lang-switcher__link {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	color: #23302E;
	text-decoration: none !important;
    font-family: "Nunito", sans-serif;
	font-weight: 500;
    font-size: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-radius: 2px;
	transition: all 0.15s ease;
}

.aah-lang-switcher__dropdown .aah-lang-switcher__link:hover,
.aah-lang-switcher__dropdown .aah-lang-switcher__link:focus-visible {
	background-color: #23302E;
	color: #F5F2EA;
}

@media (max-width: 768px) {
	.aah-lang-switcher--dropdown .aah-lang-switcher__toggle {
		padding: 8px 10px;
		gap: 6px;
		font-size: 13px;
	}

	.aah-lang-switcher--dropdown .aah-lang-switcher__toggle img,
	.aah-lang-switcher--dropdown .aah-lang-switcher__dropdown img {
		display: none;
	}

	.aah-lang-switcher--dropdown .aah-lang-switcher__text {
		display: inline-block;
		max-width: 2ch;
		overflow: hidden;
		text-overflow: clip;
		white-space: nowrap;
		letter-spacing: 0;
	}

	.aah-lang-switcher--dropdown .aah-lang-switcher__arrow {
		width: 10px;
		height: 6px;
	}

	.aah-lang-switcher__dropdown {
		min-width: 80px;
		padding: 6px;
	}

	.aah-lang-switcher__dropdown .aah-lang-switcher__link {
		padding: 8px 10px;
		font-size: 13px;
		letter-spacing: 0;
	}
}
/* === Carousel navigation === */

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background-color: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-nav.prev {
    left: 20px;
    flex-direction: row;
}

.carousel-nav.next {
    right: 20px;
    flex-direction: row-reverse;
}

.nav-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-button:hover {
    background: none !important;
    box-shadow: none;
    outline: none;
    transform: translateX(5px);
    transition: transform 0.2s ease;
}

.carousel-nav.prev .nav-button:hover {
    transform: translateX(-5px);
}

.nav-button:focus {
    background: none !important;
    box-shadow: none;
    outline: none;
}

.nav-button:focus-visible,
.nav-button:active {
    background: none !important;
    outline: none;
    box-shadow: none;
}

.nav-button svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}
/* === Carousel indicators === */


.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #fff;
    width: 32px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* === Carousel responsive === */
@media (max-width: 1200px) {
    .carousel-slide {
        width: 414px;
        height: 504px;
    }

    .carousel-slide.prev,
    .carousel-slide.next {
        transform: translateX(-270px) scale(0.7) translateZ(-200px);
    }

    .carousel-slide.next {
        transform: translateX(270px) scale(0.7) translateZ(-200px);
    }
}

@media (max-width: 768px) {
    .carousel-viewport {
        height: 550px;
    }

    .carousel-slide {
        width: 300px;
        height: 420px;
    }

    .carousel-slide.prev,
    .carousel-slide.next {
        transform: translateX(-180px) scale(0.6) translateZ(-200px);
        opacity: 0.3;
    }

    .carousel-slide.next {
        transform: translateX(180px) scale(0.6) translateZ(-200px);
    }

    .slide-content {
        padding: 25px;
    }

    .room-title {
        font-size: 24px;
    }

    .nav-button {
        width: 50px;
        height: 50px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }
}
/* === Parallax helper === */

.parallax {
    --parallax-offset-x: 0px;
    --parallax-offset-y: 0px;
    transform: translate3d(var(--parallax-offset-x), var(--parallax-offset-y), 0);
    will-change: transform;
    transition: transform 0.08s linear;
}


@media (max-width: 768px) {
    .mobile-header-button-wrap {
        position: fixed !important;
        bottom: 12px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
        z-index: 99999;
        pointer-events: none;
    }

    .mobile-header-button-inner-wrap {
        pointer-events: auto;
        width: 100%;
    }

    .mobile-header-button-wrap .mobile-header-button {
        display: block;
        width: 100%;
        text-align: center;
    }
}
/* === Reveal / fade utilities === */

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up-fast {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up-slow {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in-up-large {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-in-up.visible,
.fade-in-up-fast.visible,
.fade-in-up-slow.visible,
.fade-in-up-large.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* hero home only */
.delay-1400 {
    transition-delay: 1.4s;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

/* === Tabs animation === */
@keyframes tabFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.room-equip-tabs .tab-replay {
  animation: tabFadeUp 0.6s ease-out;
}

/* Marquee price bar */
.aah-marquee {
    width: 100%;
    height: 64px;
    overflow: visible;
    color: #ffffff;
    position: relative;
}

.aah-marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: aah-marquee-slide 12s linear infinite;
}

.aah-marquee-track span {
    padding: 0 8rem;
    font-size: 17px;
    line-height: 64px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
@keyframes aah-marquee-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

@media (max-width: 768px) {
    .aah-marquee {
        height: 52px;
    }

    .aah-marquee-track span {
        font-size: 14px;
        line-height: 52px;
        padding: 0 2rem;
    }
}

/* Leaflet zoom controls */
.leaflet-top.leaflet-left {
    left: auto !important;
    right: 0 !important;
}

.leaflet-control-zoom.leaflet-bar {
    margin-right: 10px;
    margin-top: 10px;
}
/* Sticky header + map wrapper */

.kadence-sticky-header.item-is-stuck {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
}

.map-wrapper {
    height: 600px !important;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(90, 61, 46, 0.25);
    border-radius: 12px;
}

@media (max-width: 640px) {
    .map-wrapper {
        height: 400px !important;
        margin: 0 16px; 
    }
}

/* Offers grid (static) */

.offers-section-static {
    padding: 60px 0;
}

.offers-section-static .carousel-container {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 5%;        
    box-sizing: border-box;
}

.offers-section-static .offers-grid-static {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;  
}

.offers-section-static .slide-card {
    height: 480px;
    box-shadow: 0 15px 50px rgba(245, 242, 234, 0.08);
}

.offers-section-static .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.offers-section-static .room-features {
    display: flex;
    flex-direction: column;   
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    z-index: 10;
}

.offers-section-static .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .offers-section-static .offers-grid-static {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .offers-section-static .offers-grid-static {
        grid-template-columns: 1fr;
    }
}
/* Header base (sticky) */


.kadence-sticky-header {
    background-color: transparent;
    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.mobile-header-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: padding-right 0.38s cubic-bezier(0.25, 0.1, 0.25, 1);
}
/* === Hero carousel === */


.hero-carousel-section {
    width: 100%;
    height: 80vh;  
    min-height: 650px;    
    padding: 0;
    margin: 0;
    font-family: inherit;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.hero-carousel-section-alt {
    width: 100%;
    height: 80vh;        
    min-height: 650px;    
    padding: 0;
    margin: 0;
    font-family: inherit;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.hero-carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-carousel-viewport {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
    perspective: 1200px;
    user-select: none;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SLIDES ===== */
.hero-carousel-slide {
    position: absolute;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
}

/* Slide actif  */
.hero-carousel-slide.active {
    width: 60vw;
    height: 70vh;
    transform: translateX(0) scale(1);
    z-index: 10;
    opacity: 0.95;
}

/* Slide précédent */
.hero-carousel-slide.prev {
    width: 15vw;
    height: 70vh;
    transform: translateX(-38vw);
    z-index: 10;
    opacity: 1;
}

/* Slide suivant */
.hero-carousel-slide.next {
    width: 15vw;
    height: 70vh;
    transform: translateX(38vw);
    z-index: 5;
    opacity: 0.95;
}

/* Slides cachés */
.hero-carousel-slide.hidden {
    transform: translateX(0) scale(0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* ===== CARD STYLING ===== */
.hero-slide-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    user-select: none;
}

.hero-carousel-slide:not(.active) .hero-slide-card {
    filter: brightness(0.4) blur(3px);
}

.hero-carousel-slide.active .hero-slide-card {
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.hero-carousel-slide.active .hero-slide-card:hover {
    transform: scale(1.02);
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.6s ease;
}

.hero-carousel-slide.active:hover .hero-slide-image {
    transform: scale(1.05);
}

/* ===== OVERLAY & CONTENT ===== */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
    transition: opacity 0.4s ease;
}

.hero-carousel-slide:not(.active) .hero-slide-overlay {
    opacity: 0.6;
}

.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel-slide.active .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.hero-room-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-room-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #e2e8f0;
}

.hero-feature-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

.hero-room-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-room-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-room-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-room-cta svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

.hero-room-cta:hover svg {
    opacity: 1;
    transform: translateX(0);
}

/* ===== NAVIGATION ARROWS ===== */
.hero-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.hero-carousel-nav:hover,
.hero-carousel-nav:focus,
.hero-carousel-nav:active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-carousel-nav.hero-prev-btn {
    left: 8vw;
}

.hero-carousel-nav.hero-next-btn {
    right: 8vw;
}

.hero-carousel-nav svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

/* ===== INDICATORS ===== */
.hero-carousel-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 14px;
    padding-bottom: 8px;
}

.hero-indicator {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.hero-indicator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.hero-indicator.active {
    width: 80px;
}

.hero-indicator.active::before {
    transform: translateX(0);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ===== SCROLL HINT ===== */
.hero-scroll-hint {
    position: absolute;
    bottom: 50px;
    right: 60px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@keyframes heroScrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-carousel-slide.active {
        width: 65vw;
    }
    
    .hero-carousel-slide.prev,
    .hero-carousel-slide.next {
        width: 18vw;
        transform: translateX(-42vw) scale(0.9);
    }
    
    .hero-carousel-slide.next {
        transform: translateX(42vw) scale(0.9);
    }
    
    .hero-carousel-nav.hero-prev-btn {
        left: 5vw;
    }
    
    .hero-carousel-nav.hero-next-btn {
        right: 5vw;
    }
}

@media (max-width: 1024px) {
    .hero-room-title {
        font-size: 42px;
    }
    
    .hero-slide-content {
        padding: 40px;
    }
    
    .hero-carousel-nav {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .hero-carousel-section {
        min-height: 600px;
    }
    
    .hero-carousel-slide.active {
        width: 85vw;
        height: 75vh;
    }
    
    .hero-carousel-slide.prev,
    .hero-carousel-slide.next {
        opacity: 0;
        pointer-events: none;
    }
    
    .hero-room-title {
        font-size: 36px;
    }
    
    .hero-room-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-slide-content {
        padding: 30px;
    }
    
    .hero-carousel-nav.hero-prev-btn {
        left: 20px;
    }
    
    .hero-carousel-nav.hero-next-btn {
        right: 20px;
    }
    
    .hero-carousel-nav {
        width: 50px;
        height: 50px;
    }
    
    .hero-scroll-hint {
        display: none;
    }
    
    .hero-room-features {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-room-title {
        font-size: 28px;
    }
    
    .hero-carousel-indicators {
        bottom: 30px;
    }
    
    .hero-indicator {
        width: 40px;
    }
    
    .hero-indicator.active {
        width: 60px;
    }
}

.hero-carousel-slide.hidden {
    opacity: 0;
    pointer-events: none;

    transform: translateX(0) scale(0.5);

    transition: opacity 0s ease-out !important;
}
/* Drawer menu + widgets */

.widget-title {
    font-size: 17px !important;
    color: #F5F2EA !important;
}

#mobile-drawer .drawer-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.drawer-content.mobile-drawer-content {
  flex: 1 1 100%;
  max-width: 100%;
  z-index: 0;
}

.drawer-image-container {
  flex: 1;
  background-image: url('https://monsieur-jules-hotel-clamart.fr/wp-content/uploads/2025/11/chb_clamart_3-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10%;
  background-origin: content-box;
  background-clip: content-box; 
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .drawer-image-container {
    display: block;
  }

  .drawer-content.mobile-drawer-content {
    flex: 0 0 40%;
    max-width: 500px;
  }
}

.drawer-image-container::before {
  content: '';
  position: absolute;
  top: 5%;
  right: 5%;
  bottom: 5%;
  left: 5%;
  pointer-events: none;
}

.drawer-image-container::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 60px;
  width: 220px;
  height: 200px;
  background-image: url('https://monsieur-jules-hotel-clamart.fr/wp-content/uploads/2025/12/Black_and_White_Minimalist_Professional_Initial_Logo__2_-removebg-preview.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 3;
}

.drawer-image-container {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.drawer-image-container.fade-out {
    opacity: 0;
}

.drawer-inner {
  position: relative;
  background-color: #23302E !important;
}

.drawer-inner .drawer-header,
.drawer-inner .drawer-content,
.drawer-inner .site-header-item,
.drawer-inner .mobile-drawer-content {
  background-color: transparent !important;
  background-image: none !important;
}

.drawer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background-image: url('https://monsieur-jules-hotel-clamart.fr/wp-content/uploads/2025/11/leaves_pattern.png');
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  
  -webkit-mask-image: radial-gradient(
    ellipse at top left,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0) 70%
  );
  mask-image: radial-gradient(
    ellipse at top left,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0) 70%
  );
  
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

/* Motif en BAS � DROITE */
.drawer-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background-image: url('https://monsieur-jules-hotel-clamart.fr/wp-content/uploads/2025/11/leaves_pattern.png');
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  
  -webkit-mask-image: radial-gradient(
    ellipse at bottom right,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0) 70%
  );
  mask-image: radial-gradient(
    ellipse at bottom right,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0) 70%
  );
  
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

/* Contenu au-dessus */
.drawer-inner > * {
  position: relative;
  z-index: 2;
}
/* Section backgrounds (light/dark) */

.section-light {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.section-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background-image: url('https://monsieur-jules-hotel-clamart.fr/wp-content/uploads/2025/12/leaves_pattern_3.png');
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  
  mask-image: 
    radial-gradient(
      ellipse at top left,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.3) 30%,
      rgba(0,0,0,0) 60%
    );
  -webkit-mask-image: 
    radial-gradient(
      ellipse at top left,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.3) 30%,
      rgba(0,0,0,0) 60%
    );

  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.section-light::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background-image: url('https://monsieur-jules-hotel-clamart.fr/wp-content/uploads/2025/12/leaves_pattern_3.png');
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;

  mask-image: 
    radial-gradient(
      ellipse at bottom right,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.3) 30%,
      rgba(0,0,0,0) 60%
    );
  -webkit-mask-image: 
    radial-gradient(
      ellipse at bottom right,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.3) 30%,
      rgba(0,0,0,0) 60%
    );

  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background-color: #23302E;
  z-index: 0;
}

.section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;

  background-image: url('https://monsieur-jules-hotel-clamart.fr/wp-content/uploads/2025/12/leaves_pattern_4.png');
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;

  opacity: 0.15;  /* Opacit� douce pour rester subtil */
  
  -webkit-mask-image: radial-gradient(
    ellipse at top left,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0) 70%
  );
  mask-image: radial-gradient(
    ellipse at top left,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0) 70%
  );

  pointer-events: none;
  z-index: 0;
}

.section-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;

  background-image: url('https://monsieur-jules-hotel-clamart.fr/wp-content/uploads/2025/12/leaves_pattern_4.png');
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;

  opacity: 0.15;
  
  -webkit-mask-image: radial-gradient(
    ellipse at bottom right,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0) 70%
  );
  mask-image: radial-gradient(
    ellipse at bottom right,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0) 70%
  );

  pointer-events: none;
  z-index: 0;
}

.section-light > *,
.section-dark > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  /* Trim the top gap when a hero carousel is the first element in its column */
  .kt-inside-inner-col > .hero-carousel-section:first-child,
  .kt-inside-inner-col > .hero-carousel-section-alt:first-child {
    margin-top: -80px;
    padding-top: 0;
  }

  /* Tame the leaf patterns on mobile for readability */
  .section-light::before,
  .section-light::after,
  .section-dark::before,
  .section-dark::after {
    width: 280px;
    height: 280px;
    opacity: 0.15;
    background-size: contain;
  }
}
/* Page loader (disabled) */

 /* body.is-loading {
  overflow: hidden;
  height: 100vh;
}

.page-loader {
  position: fixed;
  inset: 0;
  background-color: #23302E;
  width: full;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.page-loader-logo {
  width: 220px;
  height: auto;
  opacity: 0;
  transform: scale(0.96);
  animation: logoFadeIn 1.5s ease-out forwards;
}

@keyframes logoFadeIn {
  0%   { opacity: 0; transform: scale(0.96); }
  20%  { opacity: 1; transform: scale(1); }
  80%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.02); }
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
 .page-loaded .site-container > * {
  animation: fadeOnly 0.6s ease-out both;
}

@keyframes fadeOnly {
  from { opacity: 0; }
  to   { opacity: 1; }
} 
 */
/* Room details section */

.room-details {
  padding: 60px 0;
  background-color: #F5F2EA;
}

.room-details__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.room-details__header {
  margin-bottom: 36px;
}

.room-details__title {
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #49443E;
  margin: 0 0 10px;
}

.room-details__subtitle {
  color: #7C756C;
  line-height: 1.6;
  max-width: 620px;
}

/* GRID */
.room-details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 840px) {
  .room-details__grid {
    grid-template-columns: 1fr;
  }
}

.room-equip-tabs .kt-tabs-layout-vtabs {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(243,230,207,0.15);
  border-radius: 14px;
  padding: 40px 50px;
  backdrop-filter: blur(2000px);
}
/* Gallery hover effects */


.gallery-custom .kb-gal-image-radius {
  overflow: hidden;
  border-radius: 2px;
}

.gallery-custom .kb-gallery-image-contain img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              filter 0.6s ease;
  transform-origin: center center;
}

.gallery-custom .kb-gallery-item-link {
  position: relative;
  display: block;
}

.gallery-custom .kb-gallery-item-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.gallery-custom .kb-gallery-item-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;

  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: opacity 0.4s ease 0.1s,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.gallery-custom .kadence-blocks-gallery-item-inner:hover .kb-gallery-image-contain img {
  transform: scale(1.08);
  filter: brightness(0.85) contrast(1.05);
}

.gallery-custom .kadence-blocks-gallery-item-inner:hover .kb-gallery-item-link::before {
  opacity: 1;
}

.gallery-custom .kadence-blocks-gallery-item-inner:hover .kb-gallery-item-link::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-custom .kadence-blocks-gallery-item-inner {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-custom .kadence-blocks-gallery-item-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
/* Mobile menu toggle icon */

#mobile-toggle .kadence-menu-svg {
    width: 40px;
    height: 40px;
}

#mobile-toggle .burger-line {
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
    transform-box: fill-box; 
}

#mobile-toggle[aria-expanded="true"] .burger-line-top {
    transform: translateY(6px) rotate(45deg);
}

#mobile-toggle[aria-expanded="true"] .burger-line-bottom {
    transform: translateY(-6px) rotate(-45deg);
}

#mobile-toggle[aria-expanded="true"] .burger-line-middle {
    opacity: 0;
    transform: scaleX(0.2);
}

/* Vertical divider ornament */
.divider-container {
    position: relative;
    height: 0;
    z-index: 10;
}

.divider-line {
    width: 100%;
    height: 2px;
    position: relative;
}

.divider-ornament {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, #fff 0%, #fff 50%, #23302E 50%, #23302E 100%);
    z-index: 11;
}

@media (max-width: 768px) {
    .divider-ornament {
        height: 60px;
    }
}

.divider-line-alt {
    width: 100%;
    height: 2px;
    position: relative;
}

.divider-ornament-alt {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, #23302E 0%, #23302E 50%, #fff 50%, #fff 100%);
    z-index: 11;
}

@media (max-width: 768px) {
    .divider-ornament-alt {
        height: 60px;
    }
}
/* Animated letters */

.letter {
    display: inline-block;
    opacity: 0;
    font-size: 100px !important;
    transform: translateX(30px);
    animation: slideIn 0.6s ease-out forwards;
}

@media (max-width: 768px) {
    .letter {
        font-size: 48px !important;
    }
}   

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    60% {
        transform: translateX(-3px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.08s; }
.letter:nth-child(3) { animation-delay: 0.16s; }
.letter:nth-child(4) { animation-delay: 0.24s; }
.letter:nth-child(5) { animation-delay: 0.32s; }
.letter:nth-child(6) { animation-delay: 0.4s; }
.letter:nth-child(7) { animation-delay: 0.48s; }
.letter:nth-child(8) { animation-delay: 0.56s; }
.letter:nth-child(9) { animation-delay: 0.64s; }
.letter:nth-child(10) { animation-delay: 0.72s; }
.letter:nth-child(11) { animation-delay: 0.8s; }
.letter:nth-child(12) { animation-delay: 0.88s; }
.letter:nth-child(13) { animation-delay: 0.96s; }
.letter:nth-child(14) { animation-delay: 1.04s; }
.letter:nth-child(15) { animation-delay: 1.12s; }

.letter.space {
    width: 0.3em;
}

@media (prefers-reduced-motion: reduce) {
  .letter {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
/* FAQ accordion */

.faq-accordion-wrapper{
    width: 100%;
    max-width: 100%;
}

.faq-section{
    margin-bottom: 2.5rem;
}

.faq-section-title{
    font-size: 1.6rem;
    font-weight: 500;
    color: #1a1a2e;
    margin: 3.75rem 0 1.875rem;
    letter-spacing: 0.03125rem;
}

.faq-accordion-wrapper .accordion-item{
    margin-bottom: 0.75rem;
    border-left: 0.1875rem solid transparent;
    transition: border-color 0.3s ease;
}

.faq-accordion-wrapper .accordion-item:hover{
    border-left-color: #b8976d; 
}

.faq-accordion-wrapper .accordion-header{
    padding: 1.25rem 1.5625rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.05);
}

.faq-accordion-wrapper .accordion-header:hover{
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.10);
    transform: translateX(0.3125rem);
}

.faq-accordion-wrapper .accordion-header h3{
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.0125rem;
    flex: 1;
    padding-right: 0.9375rem;
}

.faq-accordion-wrapper .accordion-item.active .accordion-header h3{
    color: #b8976d;
}

.faq-accordion-wrapper .accordion-icon{
    font-size: 1.3rem;
    color: #b8976d; 
    transition: transform 0.3s ease;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 1.25rem;
    text-align: center;
}

.faq-accordion-wrapper .accordion-item.active .accordion-icon{
    transform: rotate(45deg);
}

.faq-accordion-wrapper .accordion-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-wrapper .accordion-content-inner{
    padding: 1.25rem 1.5625rem;
    line-height: 1.8;
    background: #fafbfc;
    margin-top: 0.375rem;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.625rem rgba(0,0,0,0.03);
}

.faq-accordion-wrapper .accordion-content-inner a{
    color: #1a1a2e;
    text-decoration: underline;
    text-underline-offset: 0.1875rem;
}

@media (max-width: 768px){
    .faq-section-title{
        font-size: 1.35rem;
        margin: 2.8125rem 0 1.375rem;
    }

    .faq-accordion-wrapper .accordion-header{
        padding: 1rem 1.125rem;
    }

    .faq-accordion-wrapper .accordion-header h3{
        font-size: 1rem;
    }

    .faq-accordion-wrapper .accordion-content-inner{
        padding: 1rem 1.125rem;
        font-size: 0.95rem;
    }
}

/* Footer full width adjustment */
#colophon .aah-footer-row{
  min-width: 100% !important;
  max-width: none !important;
}

#colophon .aah-footer-row > .kt-row-column-wrap{
  min-width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
