body {
  font-weight: 400;
  line-height: 1.5;
  font-size: 18px;
  font-family: "Tenor Sans", sans-serif;
  background-color: black;
  color: #e0e0e0;
}

h2 {
   font-family: "Cormorant Garamond", serif;
display: flex;
gap: 8px;
align-items: center;
text-transform: uppercase;
}

.in-light {
   font-size: 16px;
}


html,
body {
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.header-container {
  position: relative;
}

#site-fade {
  position: fixed;
  inset: 0; /* top: 0; right: 0; bottom: 0; left: 0 */
  background-color: black;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
#site-fade.fade-out {
  opacity: 0;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

header {
  width: 100%;
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: fixed;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: rgba(0, 0, 0, 0.761);
  z-index: 999;
}

.header-logo-container {
  height: 100%;
  padding: 5px;
  margin-left: 2rem;
}

.header-logo {
  height: 100%;
}
.header-menu {
  display: flex;
  gap: 2rem;
  padding: 5px;

  font-size: 14px;
}

.header-menu a {
  color: #e0e0e0;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;

  padding: 15px 20px;
}

.current-menu-item a {
  color: white !important;
  font-weight: bold;
}

.menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px; /* Épaisseur de la ligne de soulignement */
  background-color: white; /* Couleur de la ligne de soulignement */
  transform: scaleX(0); /* Initialement, la ligne est invisible */
  transform-origin: bottom left; /* Point d'origine de la transformation */
  transition: transform 0.5s ease; /* Transition de la ligne de soulignement */
}

.menu-item a:hover::after {
  transform: scaleX(1); /* La ligne de soulignement devient visible */
}

/* Icône burger */
.hamburger {
  display: none !important; /* Cache le bouton burger sur desktop */
}

.navigation-mobile {
  width: 100%;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 10px;
  font-size: 15px;
  z-index: 9999;

  background-color: #686a6cf3;

  text-transform: uppercase;
}

.navigation-mobile.active {
  visibility: visible;
  animation: latteral 0.4s forwards;
}

.navigation-mobile.inactive {
  display: none;
}

.navigation-mobile.closing {
  animation: latteral-off 0.4s forwards;
}

/* Animations */
@keyframes latteral {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes latteral-off {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* Responsive */
@media (max-width: 862px) {
  body {
    font-size: 14px;
  }

  header {
    align-items: center;
  }

  .header-menu {
    display: none;
  }

  .hamburger {
     
    display: block !important;
  }

 /* Couleur par défaut du hamburger */
.hamburger .hamburger-inner,
.hamburger .hamburger-inner::before,
.hamburger .hamburger-inner::after {
    background-color: #ffffff; /* ← couleur par défaut (fermé) */
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #ffffff!important;
}





  .menu-item {
    display: flex;
    justify-content: end;
    margin: 5px 0;
    padding: 5px 0;
  }

  .menu-item a {
    text-decoration: none;
    color: whitesmoke;
  }
}

/* Cible seulement les éléments de texte */
p, li, blockquote, a {
  text-align: justify;
  hyphens: auto;
}

main ul,
footer ul,
section ul,
article ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

main li,
footer li,
section li,
article li {
  margin-bottom: 0.5rem;
}

