
.site-header {
    border-bottom: 1px solid var(--text);;
    z-index: 99998;
    position: fixed;
    width: calc(100vw - 60px);
    padding-left: 30px;
    padding-right: 30px;
    top: 0;
    background-color: var(--background);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-link
{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:20px;
  filter: grayscale(100);
}

.logo-link img
{
  height:60px;
}

.titre_du_site
{
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.header_right, .header_right ul
{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

#burger-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1.5;
}

#burger-menu {
  position: fixed;
  top: -100%;
  width: 100%;
  height: calc(100% - 150px);
  background: var(--background);
  padding: 2rem;
  transition: top 0.3s ease-in-out;
  z-index: 1000;
  font-size: 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0px 100px;
}

#burger-menu.open {
  top: 0px;
}

#burger-menu ul {
/*   display: flex;
  justify-content: center;
  flex-direction: column; */
  
  list-style: none;
  padding: 0;
  margin-top: 80px;
}

#burger-menu li {
  margin: 30px 0;
}

/*fancy burger menu*/

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: var(--text); }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--text);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

 /* Stand */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/* 🧾 Medium - tablettes */
@media (max-width: 768px) {
.titre_du_site
{
  flex-direction: column;
  gap:2px
}
.titre_du_site span
{
  display: none;
}
#burger-menu {
  font-size: 27px;
}
.site-header {
    width: calc(100vw - 30px);
    padding-left: 15px;
    padding-right: 15px;
}

.header_right ul
{
  display: none;
}
}