*{
  --blue: #1700FF;
  --white: #FFFFFF;
  --black: #000000;
}
a{
  text-decoration: none;
  color: var(--blue);
}

@font-face {
  font-family: "akira";
  src: url('/public/fonts/akira.ttf') format('truetype');
}
.akira{
  font-family: "akira", sans-serif;
}

@font-face {
  font-family: "product-sans";
  src: url('/public/fonts/product-sans.ttf') format('truetype');
}
.product{
  font-family: "product-sans", sans-serif;
}

header{
  display: flex;
  flex-direction: column;
}


#menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px;
}

#menu a>img , #menu i{
  width: 50px;
  font-size: 40px;
  color: var(--blue);
  position: fixed;
  top: 7%;
}

#reves-icon{
  width: 50px;
}

#menu>img{
  width: 300px;
}
#menu>video{
  width: 300px;
}

.container {
  position: relative;
  padding: 0.25rem 1rem;
}
.menu-toggle {
  position: fixed;
  right: 3rem;
  top: 8%;
  transform: translateY(0, -50%);
  height: 1.68rem;
  width: 1.81rem;
}
.menu-toggle, .menu-toggle:hover {
  color: var(--blue);
}
.menu-toggle-bar {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -0.1rem;
  right: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: var(--blue);
  transition: all 0.3s ease;
}
.menu-toggle-bar.menu-toggle-bar--top {
  transform: translateY(-8px);
}
.menu-toggle-bar.menu-toggle-bar--bottom {
  transform: translateY(8px);
}
.nav-open .menu-toggle-bar.menu-toggle-bar--top {
  transform: translateY(0) rotate(45deg);
}
.nav-open .menu-toggle-bar.menu-toggle-bar--middle {
  opacity: 0;
}
.nav-open .menu-toggle-bar.menu-toggle-bar--bottom {
  transform: translateY(0) rotate(-45deg);
}

#navigation{
  width: 100%;
  height: 100%;
}

.navigation-main{
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}

.navigation-main a{
  margin: 10px 0;
}

.navigation-main a:hover{
  text-decoration: underline;
}

.embed-ytb{
  display: flex;
  justify-content: center;
  margin-top: 5%;
}

.embed-ytb iframe{
  width: 1120px;
  height: 630px;
}

.poster-reves{
  width: 800px;
  display: flex;
  align-self: center;
  margin: 5% 0;
}

.poster-reves>img{
  width: 100%;
}

.poster-video{
  width: 800px;
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  margin: 5% 0;
  display: flex;
  align-self: center;
}

.poster-video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/** MAIN **/
.reves-page-main{
  padding: 0 150px;
  display: flex;
  flex-direction: column;
}

.artists-list{
  margin: 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title{
  display: flex;
  align-self: center;
  font-size: 65px;
  margin: 5% 0;
}

.texte-reves{
  text-align: center;
  font-size: 30px;
  color: var(--blue);
}

.homepage-main{
  color: var(--blue);
  font-family: 'product-sans', sans-serif;
  display: flex;
  flex-direction: column;
  padding: 0 100px;
}

.reseaux-sociaux{
  display: flex;
  justify-content: center;
}

.reseaux-sociaux a{
  margin: 0 30px;
}

.reseaux-sociaux a>i{
  font-size: 40px;
}

.pages-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.pages-list a{
  margin: 10px;
  font-size: 30px;
  width: 45%;
}

.page-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.page-item>.container-photo{
  width: 100%;
}

.page-item img{
  width: 100%;
}

/* ARCHIVES */

.archives{
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.archives-photos{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.archives-photos img{
  width: 100%;
}

.container-photo{
  overflow: hidden;
  margin: 1px;
  width: 49%;
}

.container-photo img{
  transition: transform .5s ease;
}

.container-photo:hover img{
  transform: scale(1.2);
}

.date-place {
  margin-top: 20px;
}

/* CREDITS */
.credits{
  margin: 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--blue);
}

.credits a{
  text-decoration: underline;
}

footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 0;
  font-family: 'product-sans', sans-serif;
  color: var(--blue);
}

footer p{
  margin: 10px 0;
  font-size: 20px;
}

footer>a{
  text-decoration: underline;
  margin-top: 20px;
}

#app-homepage{
  position: relative;
  z-index: 1;
}

#app-homepage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("https://i.imgur.com/CcnPhLx.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media screen and (max-width: 1400px){
  .reves-page-main{
      padding: 0 100px;
  }
  .homepage-main{
    margin-top: 30px;
  }

  #menu{
    margin: 50px 50px 10px 50px;
  }

  .section-title{
    font-size: 50px;
  }
  
  .embed-ytb iframe{
      width: 900px;
      height: 500px;
  }
  
  .poster-reves{
      width: 600px;
  }

  .texte-reves{
      font-size: 25px;
  }
}

@media screen and (max-width: 1200px){
  #app-homepage::before{
    background-image: url("https://i.imgur.com/YiVExs9.png") !important;
  }
}

@media screen and (max-width: 1024px){
  #menu>img{
      width: 200px;
  }
  .embed-ytb iframe{
      width: 700px;
      height: 400px;
  }
  .archives-photos{
    flex-direction: column;
    align-items: center;
  }
  .container-photo{
      width: 100%;
  }
  #app-homepage::before{
    background-image: url("https://i.imgur.com/AfYWrAK.png") !important;
  }
}

@media screen and (max-width: 900px){
  .section-title{
      font-size: 40px;
      margin-bottom: 5%;
  }

  .texte-reves{
      font-size: 20px;
  }

  .pages-list>a{
    width: 100%;
    height: 100%;
  }
  #app-homepage::before{
    background-image: url("https://i.imgur.com/5hzmoaf.png") !important;
  }
}

@media screen and (max-width: 768px){
  .reves-page-main{
      padding: 0 50px;
  }
  .embed-ytb iframe{
    width: 500px;
    height: 215px;
  }
  .section-title{
    font-size: 30px;
  }

  .poster-reves{
      width: 90%;
      height: 100%;
  }

  .page-item-text h3{
      font-size: 25px;
  }

  .reseaux-sociaux a{
    margin: 0px 20px;
  }

  .reseaux-sociaux a>i{
    font-size: 30px;
  }
}

@media screen and (max-width: 500px){
  .reves-page-main{
    padding: 0 30px;
}

  #menu a>img , #menu i{
    width: 40px;
    font-size: 30px;
  }

  #menu>img, #menu>video{
    width: 50%;
  }

  

  #reves-icon{
    width: 40px;
  }

  .embed-ytb iframe{
    width: 400px;
    height: 180px;
  }

  .section-title{
    font-size: 25px;
  }

  footer p{
    font-size: 15px;
  }

  .navigation-main{
    font-size: 2rem;
  }

  #app-homepage::before{
    background-image: url("https://i.imgur.com/x3W4D4c.png") !important;
  }
}

@media screen and (max-width: 360px){
  #app-homepage::before{
    background-image: url("https://i.imgur.com/ju9Oviz.png") !important;
  }
}

@media screen and (max-width: 320px){
  .reves-page-main{
    padding: 0 20px;
  }

  .section-title{
      font-size: 20px;
  }
  
  #menu{
    margin: 30px;
  }

  #menu a>img{
      width: 30px;
  }

  #reves-icon{
    width: 30px;
  }

  .menu-toggle {
      right: 0.2rem;
      height: 0.68rem;
  }

  .embed-ytb iframe{
    width: 300px;
    height: 180px;
  }

  .embed-ytb{
    margin-bottom: 20%;
  }

  #app-homepage::before{
    background-image: url("https://i.imgur.com/dJpy6QS.png") !important;
  }
}
