
/* ----------------- Navbar ----------------  */

#menuToggle
{
  display: block;
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 1;
}

#menuToggle a
{
  text-decoration: none;
  color: black; 
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: white;
}


#menuToggle input
{
  position: absolute;
  cursor: pointer;
  width: 40px;
  height: 32px;
  opacity: 0; 
  z-index: 2; 
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: black;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);  /* Je positionne bien les barres du menu */
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(2) /* Je positionne bien les barres du menu */
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2); /* Je cache la troisieme barre du menu */
}

#menu
{
  position: absolute;
  margin: -100px 0 0 -51px;
  padding: 50px;
  padding-top: 125px;
  
  
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked ~ ul
{
  transform: none; /* Comme ça on ne voit pas encore le menu */
}

/* ----------------- FIN NavBar ----------------  */

/* ----------------- Page accueil ----------------  */


 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.header_scroll {
  width: 99%;
  min-height: 30px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 20px;
  margin: 0 auto;
  position: absolute;
  z-index: 3;
  bottom: 0;
}

.header_scroll a { 
  display: inline-block;
  pointer-events: all;
}

/* ----------------- FIN Page accueil ----------------  */

/* ----------------- Contenu ----------------  */


/* artwork */

#artwork1{
  margin-bottom: 75px;
}

#artwork2{
  margin-bottom: 75px;
}

#artwork3{
  margin-bottom: 75px;
}

#artwork4{
  margin-bottom: 75px;
}

.artwork {
  display: flex;
  justify-content: space-between;
  margin: 0 150px;
}

.artwork button {
  margin: 5px 5px;
}

.artwork_text {
  margin: 0 150px;
}

.artwork img {
  width: 100%;
  align-self: center;
  margin: 5% auto;
  max-width: 400px;
}

.artwork_picture1 {
  display: flex;
  justify-content: space-around;
}


.artwork h3 {
  text-align: left;
}

.artwork_text h3 {
  text-align: left;
  font-family : "lustria", serif;
} 
.artwork h2 {
  font-family : "lustria", serif;
}

.artwork p {
  font-size: 2.5vh;
  text-align: left;
}

.artwork_picture h1 {
  text-align: left;
}

/* Actions */

.actions {
  display: flex;
  text-align: left;
  justify-content: flex-start;
  margin: 0 150px;
}

.btn-actions {
  margin: 10px 15px;
}

.actions1 {
  display: flex; 
  justify-content: flex-end;
  margin: 0 150px;
}

/* div pour les btns collés à l'img */

.test2 {
  display: flex; 
  flex-direction: column;
  align-items: center;
}

/* textes */

.text_art {
  font-size: 20px;
  max-width: 400px;
}

.text_art p {
  text-align: left !important;
}


.introduction {
  font-size: 2.5vh;
  text-align: center;
  margin: 50px 150px;
}

/* a garder au cas ou */
.contenu {
  font-size: 2.5vh;
  text-align: center;
}

/* img */

.img1 {
  display: flex;
}

/*div pour plus de responsive*/

.div-column {
  display: flex;
  flex-direction: column;
}

.div-row {
  display: flex;
  flex-direction: row;
}


/* ----------------- Fin Contenu ----------------  */

 /* ----------------- Footer ----------------  */

.container1 {
    display: flex;
    justify-content: center;
}


/* AUTRE (pour faire du responsive */

@media screen and (max-width: 3840px) {
  
  #scroll-indicator {
    position: sticky;
    top: 50%;
    left: 5px;
    transform: translate(0, -50%);
  }
}

@media screen and (max-width: 768px) {
  .artwork {
    flex-direction: column;
  }
  .artwork_text {
    margin: 0 100px;
  }
  
}

@media screen and (max-width: 426px) {
  .artwork {
    flex-direction: column;
    margin: 0 15px;
  }
  .artwork_text {
    margin: 0 10px;
  }
  .introduction {
    margin: 5px 20px;
    padding-bottom: 20px;
  }
  #artwork1{
    margin-bottom: 25px;
  }
  #artwork2{
    margin-bottom: 25px;
  }
  #artwork3{
    margin-bottom: 25px;
  }
  #artwork4{
    margin-bottom: 25px;
  }
  .actions1 {
    margin: 0 0;
  }
  .actions {
    margin: 0 0;
  }

  #scroll-indicator {
    top: 5%;
  }
}


