#Contenant-Header {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--heritageBlack);
}

#Contenant-Header > div {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#Contenant-Header a {
  height: 100%;
}

/* Menu burger */
.burger-menu {
  cursor: pointer;
  z-index: 1000;
}

.burger-menu div {
  width: 25px;
  height: 3px;
  background-color: grey;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Animation du menu burger */
.burger-menu.active .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active .bar2 {
  opacity: 0;
}

.burger-menu.active .bar3 {
  transform: rotate(45deg) translate(-5px, -6px);
}
#Logo-Destop {
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
/* Styles pour le menu mobile */
@media screen and (max-width: 768px) {
  .burger-menu {
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 70px;
    background-color: #2c3e50;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    clip-path: circle(0px at 90% -10%);
    transition: clip-path 0.5s ease-in-out;
    pointer-events: none;
  }

  .nav-links.active {
    clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .nav-links li {
    margin: 1rem 0;
  }
}
