@import 'general.css';


/* HEADER INITIAL */
#site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
}

#process {
  z-index: 0;
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  transition: all 0.4s ease;
  max-width: var(--container-width);
  margin: 0 auto;
}

.header-logo img {
  height: 220px;
  transition: all 0.4s ease;
}

/* MENU BLOC (BANDE BLANCHE CONTENUE) */
.header-menu {
  background: white;
  margin-top: 20px;
  padding: 12px 0;
  width: 100%;
  max-width: var(--container-width);
  transition: all 0.4s ease;
}
.header-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
}

.header-menu ul li a {
  text-decoration: none;
  color: var(--color-bleu-anthracite);
  transition: color 0.3s;
}

.header-menu ul li a:hover {
  text-decoration: none;
  color: var(--color-rose);
  transition: color 0.3s;
}

/* SCROLL DOWN (classe ajoute dynamiquement en JS) */
#site-header.scrolled {
  background: white;
  height: auto;
  box-shadow: 0 7px 11px rgba(0, 0, 0, 0.25);
}

#site-header.scrolled .header-inner {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding: 7px 0px;
}

#site-header.scrolled .header-logo img {
  height: 85px;
  margin-left: 20px;
}

#site-header.scrolled .header-menu {
  margin-top: 60px;
  width: 100%;
  background: white;
#site-header.scrolled .header-menu {
  height: auto;
  padding: 10px 0;
}

#site-header.scrolled .header-menu ul {
  justify-content: flex-end;
  padding-right: 30px;
}