.elementor-4182 .elementor-element.elementor-element-8a1bb91{--display:flex;--min-height:100vh;--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;--justify-content:flex-start;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--overflow:hidden;--border-radius:0px 0px 0px 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-4182 .elementor-element.elementor-element-6dd6345 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;border-style:none;border-radius:0px 0px 0px 0px;}.elementor-4182 .elementor-element.elementor-element-6dd6345.xpro-widget-bg-overlay:before{transition:background 0.3s;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-4182 .elementor-element.elementor-element-8a1bb91{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-6dd6345 *//* Import de la police Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* Fond de page (WordPress section) */
.elementor-4182 .elementor-element.elementor-element-6dd6345 {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Superposition des éléments */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Zones cliquables */
.clickable-zone {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Label des zones cliquables */
.zone-label {
  position: absolute;
  top: -30px; /* Ajuster selon la position voulue */
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 700;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s ease 0.3s;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 10;
}

/* Affichage du label au survol */
.clickable-zone:hover .zone-label {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

/* Timeline */
.timeline {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  gap: 30px;
  z-index: 10;
  pointer-events: none;
  width: calc(100% - 0px);
  padding: 10px 20px;
  background: #212121;

  /* Fond discret */
  backdrop-filter: blur(3px);
  border-radius: 0px;
}

/* Ligne horizontale */
.timeline-line {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #ccc;
  z-index: -1;
}

.timeline {
  pointer-events: auto; /* permet les clics sur les liens */
}

.timeline-event {
  text-align: center;
  pointer-events: auto;
}

.timeline-event a {
  text-decoration: none;
  color: #F6F6F6;
  pointer-events: auto;
  display: inline-block;
}

.timeline-event .year {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3px;
  margin: 12px auto 0;
  color: #F6F6F6;
  transition: font-weight 0.3s ease;
}

.timeline-event .description {

  font-size: 14px;
  color: #F6F6F6;
  line-height: 1.2em;
  margin-top: 6px;
  display: none;
  transition: opacity 0.3s ease;
}

/* Point fixe */
.vertical-line {
  width: 1px;
  height: 10px;
  background-color: #F6F6F6;
  border-radius: 50%;
  margin: 8px auto 0;
  transition: transform 0.3s ease;
}

/* Highlight propre */
.timeline-event.highlight .year,
.timeline-event.highlight .description {
  font-weight: 700;
  color: #F6F6F6;
}

.timeline-event.highlight {
  transform: translateY(-10px);
}


/*Animation cursor*/
/* Animation du clignotement de l'overlay */
@keyframes overlay-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Overlay transparent clignotant */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  display: none; /* Initialement caché */
  z-index: 10;
}

.overlay.blink {
  animation: overlay-blink 1s steps(1) 3; /* Clignotement pendant 3 secondes */
}

/* Animation du curseur clignotant */
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.animated-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  background-image: url('https://cdn-icons-png.flaticon.com/32/7347/7347133.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -120%);
  z-index: 11;
  display: none; /* Initialement caché */
}

.animated-cursor.blink {
  animation: cursor-blink 1s steps(1) 3; /* Clignotement pendant 3 secondes */
}/* End custom CSS */