
header svg {
    width: 180px;
}
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 999;
    padding:1% 5%;
    width: 90%;
    background: transparent;
    transition: all .3s ease;
}

.site-branding img {
    transition: all .3s ease;
}


      .cls-1 {
        fill: var(--pinkred) ;
      }

      .cls-2, .cls-3 {
        fill: #fff;
      }

      .cls-3 {
        stroke: var(--pinkred);
        stroke-miterlimit: 10;
      }

      /* Animation de transition */
.logo-s {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-all {
  transition: opacity 0.3s ease;
}

/* Effet au scroll */
.site-header.scrolled .logo-all {
  opacity: 0;
  pointer-events: none;
}

.site-header.scrolled .logo-s {
  transform: scale(1.3) translateY(12px);
  opacity: 1;
}


/* header.site-header.scrolled .site-branding img {
    width: 150px;
} */

header.site-header.scrolled {
  background: var(--black);
  padding:0.7% 5%;
   
}

header.site-header {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInSlide 0.6s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



ul {
    list-style: none;
    display: flex;
    color: #fff;
}


.site-header a {
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 0.9em;

}

/* Cible les <li> dans ton menu */
.main-navigation ul {
  display: flex;
  gap: 60px; /* espace horizontal entre les liens */
  padding: 0;
  margin: 0;
  align-items: center;
}



#primary-menu ul li:last-child a {
    background-color: var(--pinkred);
    color: var(--white);
    padding:0.8em 2em;
    border-radius: none;
    font-family: 'Lexend', sans-serif;
    transition: all .3s ease;
    text-decoration: none;
}

#primary-menu ul li:last-child a:hover {
    background-color: var(--white);
    color: var(--black);
}