.elementor-133 .elementor-element.elementor-element-ae9b92f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-133 .elementor-element.elementor-element-e5032a7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-133 .elementor-element.elementor-element-105a79e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-133 .elementor-element.elementor-element-ad48243{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-133 .elementor-element.elementor-element-c69a782{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-133 .elementor-element.elementor-element-e721347{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-133 .elementor-element.elementor-element-6f671f9{margin:-3px -3px calc(var(--kit-widget-spacing, 0px) + -3px) -3px;}}/* Start custom CSS for html, class: .elementor-element-e721347 *//* FORCE OVERRIDE TOTAL */
.elementor-menu-toggle,
.elementor-menu-toggle *,
[class*="menu-toggle"],
button[aria-label="Menu Toggle"] {
  color: #ffffff !important;
  fill: #ffffff !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ICONE HAMBURGER SPECIFIQUE */
.eicon-menu-bar:before,
.elementor-menu-toggle i:before {
  color: #ffffff !important;
}
/* BOUTON WHATSAPP - CORRECTION COULEUR SURVOL */
.qh-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #121212;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.qh-whatsapp-btn:hover {
  background: #25D366;      /* Vert WhatsApp */
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.qh-whatsapp-btn:visited,
.qh-whatsapp-btn:active,
.qh-whatsapp-btn:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

.qh-whatsapp-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-ae9b92f */<script>
(function() {
  // Scroll fluide avec compensation header fixe
  document.querySelectorAll('a[href^="#"]').forEach(function(anchor) {
    anchor.addEventListener('click', function(e) {
      var targetId = this.getAttribute('href');
      
      // Ignorer les liens vides ou "#"
      if (!targetId || targetId === '#') return;
      
      var targetSection = document.querySelector(targetId);
      
      if (targetSection) {
        e.preventDefault();
        
        // Hauteur du header fixe (90px desktop, 80px tablet, 70px mobile)
        var headerHeight = 90;
        if (window.innerWidth <= 1024) headerHeight = 80;
        if (window.innerWidth <= 480) headerHeight = 70;
        
        var targetPosition = targetSection.getBoundingClientRect().top + window.pageYOffset - headerHeight;
        
        window.scrollTo({
          top: targetPosition,
          behavior: 'smooth'
        });
        
        // Fermer le menu mobile si ouvert
        var mobileMenu = document.getElementById('qhMobileMenu');
        var menuToggle = document.getElementById('qhMenuToggle');
        if (mobileMenu && mobileMenu.classList.contains('open')) {
          mobileMenu.classList.remove('open');
          if (menuToggle) menuToggle.innerHTML = '&#9776;';
        }
      }
    });
  });
})();
</script>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ea0df17 *//* ============================================
   SLIDER QUEEN'HELVA - CSS COMPLET
   ============================================ */

:root {
  --vh: 1vh;
}

.qh-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #121212;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.qh-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.qh-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.qh-slide.active {
  opacity: 1;
  z-index: 1;
}

.qh-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #121212;
}

.qh-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.3) 0%, rgba(18, 18, 18, 0.15) 40%, rgba(18, 18, 18, 0.55) 100%);
  z-index: 2;
}

.qh-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: #ffffff;
  text-align: center;
  padding: 60px 40px;
  box-sizing: border-box;
}

.qh-slide-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 24px 0;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.qh-slide-divider {
  width: 60px;
  height: 2px;
  background: #E4B8B9;
  margin: 0 0 24px 0;
}

.qh-slide-cta {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qh-slide-cta:hover,
.qh-slide-cta:focus {
  background: #E4B8B9;
  color: #121212;
  border-color: #E4B8B9;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 184, 185, 0.35);
}

.qh-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.qh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.qh-dot.active {
  background: #E4B8B9;
  width: 28px;
  border-radius: 4px;
}

.qh-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.qh-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.qh-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.qh-arrow:active,
.qh-arrow:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}

.qh-arrow.prev {
  left: 24px;
}

.qh-arrow.next {
  right: 24px;
}

@media screen and (max-width: 768px) {
  .qh-slider {
    height: 100dvh;
    height: calc(var(--vh) * 100);
    width: 100vw;
    min-height: 500px;
  }

  .qh-slide,
  .qh-slides {
    height: 100%;
  }

  .qh-slide-bg {
    background-size: cover;
    background-position: center center;
  }

  .qh-slide-content {
    justify-content: center;
    padding: 80px 24px 100px 24px;
  }

  .qh-slide-title {
    font-size: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
  }

  .qh-slide-divider {
    width: 50px;
    margin-bottom: 18px;
  }

  .qh-slide-cta {
    padding: 12px 28px;
    font-size: 10px;
  }

  .qh-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .qh-arrow.prev {
    left: 12px;
  }

  .qh-arrow.next {
    right: 12px;
  }

  .qh-dots {
    bottom: 50px;
  }
}

@media screen and (max-width: 480px) {
  .qh-slider {
    min-height: 450px;
  }

  .qh-slide-title {
    font-size: 26px;
  }

  .qh-slide-content {
    padding: 70px 20px 90px 20px;
  }
}/* End custom CSS */