.headertitle {
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  line-height: 1em;
}

.headertitle-row {
  display: flex;
  justify-items: center;
  align-items: center;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: fit-content;
  column-gap: 5px;
}

@media (max-width: 460px) {
  .headertitle-row {
    font-size: 14px;
    flex-direction: column;
  }
}

.headertitle-row h1 {
  display: flex;
  text-align: center;
  color: #ff8c2a;
  font-family: Arial, sans-serif;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
}

@media (max-width: 525px) {
  .headertitle-row h1 {
    font-size: 15px;
  }
}

.headertitle p {
  display: flex;
  text-align: center;
  font-size: 12px;
  font-family: Arial, sans-serif;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 525px) {
  .headertitle p {
    display: none;
  }
}
.headerband {
  text-align: center;
  line-height: 1em;
}

.headerband span {
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: 600;
}

/* Défilement seulement sur petits écrans */
@media (max-width: 500px) {
  .headerband {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
  }

  .headerband span {
    display: inline-block;
    padding-left: 100%;
    animation: headerbandScroll 15s linear infinite;
  }

  @keyframes headerbandScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }
}