.elementor-273 .elementor-element.elementor-element-2761d8c{--display:flex;--min-height:100vh;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-273 .elementor-element.elementor-element-2761d8c.e-con{--align-self:flex-start;--flex-grow:0;--flex-shrink:0;}.elementor-273 .elementor-element.elementor-element-e8b8ab0{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-273 .elementor-element.elementor-element-e8b8ab0 .elementor-wrapper{--video-aspect-ratio:1.77777;}#elementor-popup-modal-273 .dialog-widget-content{animation-duration:1.25s;background-color:var( --e-global-color-primary );box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);margin:0px 0px 0px 0px;}#elementor-popup-modal-273 .dialog-message{width:100vw;height:100vh;align-items:center;padding:0px 0px 0px 0px;}#elementor-popup-modal-273{justify-content:center;align-items:center;}@media(min-width:768px){.elementor-273 .elementor-element.elementor-element-2761d8c{--content-width:100%;}}/* Start custom CSS for video, class: .elementor-element-e8b8ab0 *//* Force le widget à prendre toute la place disponible */
.elementor-273 .elementor-element.elementor-element-e8b8ab0, 
.elementor-273 .elementor-element.elementor-element-e8b8ab0 .elementor-widget-container, 
.elementor-273 .elementor-element.elementor-element-e8b8ab0 .elementor-video-container {
    width: 100% !important;
    height: 100vh !important; /* Force la hauteur de l'écran */
}

/* Force la vidéo à remplir l'espace sans se déformer (zoom) */
.elementor-273 .elementor-element.elementor-element-e8b8ab0 video, 
.elementor-273 .elementor-element.elementor-element-e8b8ab0 iframe {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important; /* C'est LA commande clé */
    position: absolute;
    top: 0;
    left: 0;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-2761d8c *//* Section intro */
#intro-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vidéo centrée */
#intro-video video,
#intro-video iframe {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Bouton "Passer l'intro" */
.skip-intro-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.skip-intro-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-2px);
}

/* Animation d'apparition du contenu principal */
#main-content {
  animation: fadeInContent 1.5s ease;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */