@import url('style.css');


body {
  background: white;
  color: black;
  overflow: visible;
  margin: 0;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0%;
  padding-top: 80px;
  padding-right: 5vw;
  padding-bottom: 24px;
  background-color: white;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-btn{
  margin-left: 48.5%;
}

.retour {
  font-family: "Helvetica Neue Regular";
  text-decoration: none;
  color: black;
  font-size: 14px;
  letter-spacing: -0.5px;
}

.scroll-down {
  opacity: 1;
  transition: opacity 0.3s ease;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5em;
  animation: bounce 1.5s infinite;
}

/* SECTION PRINCIPALE */
.apropos-section {
  position: relative;
  min-height: 320vh; /* laisse de la place au scroll */
  width: 100%;
  overflow: hidden;
}

/* Titre fixe */
.apropos-title {
  font-family: "OGG";
  font-size: 160px;
  font-weight: 400;
  letter-spacing: -10px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

/* CONTENU */
.apropos-content {
  position: relative;
  will-change: transform;
  top: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  z-index: 2;
}

/* Image */
.apropos-img {
  width: 250px;
  transform: translateX(320px);
  filter: grayscale(1);
  will-change: transform;
}

/* Texte */
.apropos-text1 {
  max-width: 550px;
  font-family: "Helvetica Neue Regular";
  font-size: 15px;
  line-height: 1.3;
  color: black;
  text-align: left;
  transform: translateX(-320px);
  will-change: transform;
  mix-blend-mode: difference;
}

/* Texte */
.apropos-text2 {
  max-width: 550px;
  font-family: "Helvetica Neue Italic";
  font-size: 30px;
  line-height: 1.3;
  color: black;
  text-align: left;
  transform: translateX(320px);
  will-change: transform;
}

/* Texte */
.apropos-text3 {
  max-width: 550px;
  font-family: "Helvetica Neue Italic";
  font-size: 15px;
  line-height: 1.3;
  color: black;
  text-align: right;
  transform: translateX(290px);
  will-change: transform;
}

.apropos-text4 {
  max-width: 550px;
  font-family: "Helvetica Neue Italic";
  font-size: 15px;
  line-height: 1.3;
  color: black;
  text-align: left;
  transform: translateX(-450px);
  will-change: transform;
}

.tbwa-img{
  width: 500px;
  transform: translateX(320px);
  margin-top: 450px; 
}

.apropos-text5 {
  max-width: 550px;
  font-family: "Helvetica Neue Italic";
  font-size: 30px;
  line-height: 1.3;
  color: black;
  text-align: left;
  transform: translateX(-400px);
  will-change: transform;
}

.apropos-text6 {
  max-width: 550px;
  font-family: "Helvetica Neue Regular";
  font-size: 15px;
  line-height: 1.3;
  color: black;
  text-align: left;
  transform: translateX(-320px);
  will-change: transform;
}
@media screen and (max-width: 1280px) {

  .apropos-title{
    font-size: 120px;
  }

  .apropos-img{
    transform: translateX(200px);
    padding-bottom: 120px;
  }

  .tbwa-img {
    width: 400px;
  }
  .apropos-text1{
    transform: translateX(-200px);
  }

  .apropos-text2{
    transform: translateX(230px);
  }

  .apropos-text3{
    transform: translateX(200px);
  }

  .apropos-text4{
    transform: translateX(-330px);
  }

  .apropos-text5{
    transform: translateX(-290px);
  }

  .apropos-text6{
    transform: translateX(-200px);
  }
}

/* Version mobile */

@media screen and (max-width: 980px) {

  html,
  body,
  * {
    cursor: auto !important;
  }

  .menu-btn {
    margin-left: 48.5%;
  }

  .apropos-title{
    opacity: 0;
  }

  .apropos-img {
    width: 250px;
    transform: translateX(0px);
    padding-bottom: 120px;
  }

  .tbwa-img {
    width: 400px;
    transform: translateX(0px);
    padding-bottom: 120px;
  }

  .apropos-text1,
  .apropos-text2,
  .apropos-text3,
  .apropos-text4,
  .apropos-text5,
  .apropos-text6{
    transform: translateX(0px);
    padding: 0px 24px;
  }

  .apropos-text3{
    text-align: left;
    width: 100%;
  }

  .apropos-text4{
    width: 100%;
  }

  .apropos-text5{
    padding-bottom: 20px;
  }
}