.page-content .hero {
  background: url('../images/Ecorces.webp') no-repeat center center;
  background-size: cover;
  justify-content: flex-start;
  padding-top: 30%;
  position: relative;
}
.page-content {
  overflow: hidden;
}
.hero__content {
  width: fit-content;
  margin-left: 5%;
}
.hero__main-title {
  font-family: 'Hiragino Kaku Gothic StdN W8', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  color: var(--vitrine-lemon-color);
  position: relative;
  line-height: 0.8;
}

/* Une ligne de titre */
.hero__line {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0.82;
}

/* le fond indépendant */
.hero__line-bg {
  position: absolute;
  inset: 0;
  background: var(--vitrine-black-color);
  z-index: 0;
  transform: scale(1, 1.35);
  transform-origin: center;
}

/* le texte */
.hero__line span {
  position: relative;
  z-index: 1;
  padding-inline: 0.4rem;
  display: inline-block;
}

/* décalages personnalisés */
.hero__line:first-child {
  margin-left: 0.4rem;
}
.hero__line:nth-child(2) {
  margin-left: 1.8rem;
}

.hero__line:nth-child(3) {
  margin-left: 3.2rem;
}

.hero__line:nth-child(4) {
  margin-left: 0;
}

.hero__line:last-child {
  margin-left: 4.45rem;
}
.hero__bottom-content {
  display: flex;
  margin-top: 0.2rem;
  margin-right: 10%;
}
.hero__top-title,
.hero__bottom-title {
  font-family: 'DIN 1451 Mittelschrift', sans-serif;
  font-size: 2rem;
  color: var(--vitrine-white-color);
  font-weight: 400;
  position: relative;
  z-index: 2;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  line-height: 1;
  width: fit-content;
}

.hero__bottom-title > *:first-child {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  text-wrap: nowrap;
}
.hero__bottom-title > *:first-child > *:first-child > *:first-child {
  color: var(--vitrine-lemon-color);
}
.hero__bottom-title > *:first-child > *:first-child > *:last-child {
  font-size: 1.5rem;
}
.hero__bottom-title > *:last-child {
  font-size: 1rem;
}

.hero__top-title {
  display: block;
  padding-inline: 0.4rem;
  width: fit-content;
  background: var(--vitrine-black-color-2);
}

.hero__top-title {
  margin-bottom: 0;
  margin-left: 1.8rem;
}

/* same as style.css */

.btn-ticket {
  color: var(--vitrine-white-color);
  background: var(--vitrine-black-color);
  border: 2px solid var(--vitrine-white-color);
  padding: 0rem 1rem;
  text-transform: uppercase;
  font-family: 'DIN 1451 Mittelschrift', sans-serif;
  border-radius: 0.8rem;
  font-weight: 400;
  font-size: 0.875rem;
  min-height: 36px;
  height: fit-content;
  width: fit-content;
}
.btn-ticket:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}
.btn-ticket__container {
  position: fixed;
  right: 3rem;
  bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}
.btn-ticket__title {
  color: var(--vitrine-white-color);
  font-family: 'Hanson Bold', sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(100%);
}

.btn-ticket__title > * {
  display: block;
}
/* FIN REDONDANCE STYLE.CSS */

/* Button reveal (grow in height from center) */
.btn-ticket {
  display: inline-block;
  transform-origin: center center;
  transform: scaleX(0);
  opacity: 0;
  will-change: transform, opacity;
  vertical-align: middle;
}

.btn-ticket--visible {
  transform: scaleX(1);
  opacity: 1;
}

.text-container {
  display: flex;
  justify-content: center;
  padding-block: 4rem 5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background: var(--vitrine-gray-color);
}
.text-content {
  font-family: 'Avenir Heavy', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 824px;
}

.text-content__left {
  text-align: left;
  text-wrap: nowrap;
  align-self: end;
}
.text-content__left > ul {
  margin-top: 1rem;
}
.text-content__left > ul > li {
  text-align: left;
  width: 100%;
}
.text-content__left > ul > li > p {
  line-height: 1.35;
}
.text-content__left > ul > li > p > span {
  background: var(--vitrine-lemon-color);
  width: fit-content;
  padding-inline: 0.2rem;
}

.text-content__right {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
}

/* Mobile in Landscape */
@media screen and (max-width: 1023px) and (orientation: landscape) {
  .page-content .hero {
    height: fit-content;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ---------- Large Mobile --------- */
@media screen and (min-width: 480px) {
}

/* ------------- Tablet ---------- */
@media screen and (min-width: 768px) {
}

/* ------------ Small Laptop ---------- */
@media screen and (min-width: 1024px) {
  .hero__line:first-child {
    margin-left: 2.5rem;
  }
  .hero__line:nth-child(2) {
    margin-left: 5.3rem;
  }

  .hero__line:nth-child(3) {
    margin-left: 8rem;
  }
  .hero__bottom-title {
    font-size: 4rem;
  }
  .text-content {
    flex-direction: row;
    gap: 1rem;
  }
  .text-content__left {
    text-align: right;
  }
  .text-content__left > ul > li {
    text-align: right;
  }
  .page-content .hero {
    justify-content: center;
    padding-top: 0;
  }
  .btn-ticket__container {
    right: 6rem;
  }
  .btn-ticket {
    font-size: 1rem;
  }
  .hero__main-title {
    font-size: 4rem;
  }
  .hero__top-title {
    font-size: 1rem;
  }
  .hero__top-title {
    margin-bottom: 0.3rem;
  }
  .text-container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ------------ Laptop ---------- */
@media screen and (min-width: 1280px) {
}

/* ------------ Large Screen ---------- */
@media screen and (min-width: 1526px) {
}

/* ------------ Desktop ---------- */
@media screen and (min-width: 1920px) {
}
