@charset "UTF-8";
img {
  width: 100%;
}

video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__img video {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@font-face {
  font-family: "helvetica light";
  src: url("/assets/fonts/helvetica/HelveticaNeue-Light.otf");
}
@font-face {
  font-family: "helvetica regular";
  src: url("/assets/fonts/helvetica/HelveticaNeue-Roman.otf");
}
@font-face {
  font-family: "helvetica thin";
  src: url("/assets/fonts/helvetica/HelveticaNeue-Thin.otf");
}
@font-face {
  font-family: "helvetica bold";
  src: url("/assets/fonts/helvetica/HelveticaNeueBold.ttf");
}
h1 {
  font-size: 94px;
  margin: 0;
  line-height: 1;
  font-weight: 900;
  font-family: "helvetica bold";
}
@media (min-width: 1000px) {
  h1 {
    font-size: 175px;
  }
}

h2 {
  font-family: "helvetica thin";
  font-size: 32px;
  margin: 0;
  font-weight: 100;
  text-transform: uppercase;
}
@media (min-width: 1000px) {
  h2 {
    font-size: 100px;
  }
}

h3 {
  font-family: "helvetica light";
  font-size: 16px;
  margin: 0;
}

p {
  font-family: "helvetica light";
}

a {
  font-family: "helvetica thin";
}

.menu-container {
  z-index: 999;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 50px;
  padding: 20px;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
.menu-container .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1000px) {
  .menu-container {
    padding: 0px 100px;
  }
}

.burger-icon {
  cursor: pointer;
  width: 30px;
  height: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1000px) {
  .burger-icon {
    display: none;
  }
}

.burger-icon div {
  width: 100%;
  height: 1px;
  background-color: white;
  transition: all 0.5s ease;
}

.menu {
  position: relative;
}
.menu ul {
  display: flex;
  gap: 20px;
}
@media (max-width: 500px) {
  .menu {
    position: fixed;
    z-index: -1;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.5s ease 0.5s;
  }
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu ul li {
  margin: 20px 0;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}
@media (min-width: 1000px) {
  .menu ul li a {
    font-size: 16px;
  }
}

.social-media {
  position: absolute;
  bottom: 20px;
}
@media (min-width: 1000px) {
  .social-media {
    display: none;
  }
}

.social-media a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.burger-icon.open .bar1 {
  transform-origin: center;
  transform: rotate(-45deg) translate(-5px, 5px);
}

.burger-icon.open .bar2 {
  transform-origin: center;
  transform: rotate(45deg) translate(-5px, -5px);
}

.menu.open {
  top: 0;
}

.btn--page {
  background-color: black;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: solid 1px white;
}

a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}

footer {
  padding-top: 100px;
}

.copyright {
  border-top: solid 0.5px rgb(120, 120, 120);
  text-align: center;
  padding-bottom: 10px;
}

body {
  background-color: black;
  color: white;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}

.slogan svg {
  width: 100px;
}
@media (min-width: 1000px) {
  .slogan svg {
    width: 150px;
  }
}

.section--hero {
  padding-top: 250px;
}
.section--hero .container--title {
  padding-left: 100px;
}
@media (min-width: 1000px) {
  .section--projects {
    padding-top: 100px;
    padding-left: 100px;
    padding-right: 100px;
  }
}
.section--projects .container {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1000px) {
  .section--projects .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .section--projects .container .projects-text__content p {
    max-width: 56ch;
  }
}
.section--about {
  padding-top: 100px;
}
.section--about .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1000px) {
  .section--about .container {
    padding-top: 100px;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .section--about .container .about-text__content p {
    max-width: 56ch;
  }
}

.container {
  padding: 20px;
}
.container p {
  text-transform: uppercase;
  margin: 0;
}
.container--title {
  display: inline-block;
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
}
.container--title div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.project {
  position: relative;
  height: 100vh;
}
.project video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  /* Couvre tout le conteneur tout en conservant les proportions */
  z-index: 1;
  position: absolute;
  top: 0;
}
.project__info {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  padding: 20px;
  text-transform: uppercase;
  z-index: 2;
  /* Assurez-vous que le texte est au-dessus de la vidéo */
  color: white;
  /* Pour que le texte soit visible sur la vidéo */
}
.project__info p {
  font-size: 16px;
  margin: 0;
}

.about__img {
  padding-top: 50px;
}
.about__img img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 90%;
}

.gallery {
  display: grid;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
  /* 2 colonnes de taille égale */
  grid-template-rows: repeat(2, 1fr);
  /* 2 lignes de taille égale */
}

.project {
  position: relative;
  height: 100vh;
}

.project video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  position: absolute;
  top: 0;
}

.project__info {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  padding: 20px;
  text-transform: uppercase;
  z-index: 2;
  color: white;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-content {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

#lightbox video {
  width: 100%;
  height: auto;
}

#close-lightbox,
#prev-project,
#next-project {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

#close-lightbox {
  top: 10px;
  right: 10px;
}

#prev-project {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

#next-project {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

#project-title {
  margin-top: 20px;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}

/*# sourceMappingURL=app.css.map*/