
.site-header {
    border-bottom: 1px solid black;
    z-index: 99998;
    position: fixed;
    width: calc(100vw - 20px);
    padding-left: 10px;
    padding-right: 10px;
    top: 0;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-link
{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:20px;
}

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


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

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

#burger-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: calc(100% - 65px);
  max-width: 450px;
  height: 100%;
  background: white;
  padding: 2rem;
  border-left: 1px solid black;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 600;
}

#burger-menu.open {
  right: 1px;
}

#burger-menu ul {
  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: #000; }

.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: 4px;
    background-color: #000;
    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); }




    /* ALERTE METEO ET AUTRE */



    .festival-alert {
    background-color: #ffcc00;
    color: #222;
    padding: 15px;
    text-align: center;
    border: 2px solid #e6b800;
    font-family: sans-serif;
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.festival-alert p 
{
    max-width: 600px;
}
.festival-alert strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.festival-alert p {
    margin: 0;
    font-size: 1em;
}



    /* 🧾 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;
 
}


}