/*
.accueil-introduction {
    margin: auto;    
   display: flex;
   flex-direction: row;
   align-items: center;
   
*/
.accueil-introduction {
  padding: 40px;
}

.titre {
  width: 800px;
  height: 400px;
  border-left: #FCFAF8 5px solid;
  padding-left: 10px;

}

.accueil-introduction img {
  border-radius: 0px;
  opacity: 1;
  width: 100%;
  margin: auto;
  height: 450px;
  object-fit: contain;
}

.accueil-photos {
  background-color: #FCFAF8;
  padding: 40px;
}

.accueil-photos h2 {
  color: black;
  text-align: center;
  margin-bottom: 100px;
}

h3 {
  color: #FCFAF8;
  font-family: 'Circe Light';
  font-size: 4em;
  font-weight: 200;
  top: 50%;
  left: 0%;
  right: 0%;
  bottom: 10%;
}

.accueil-photos img {
  width: 100%;
  height: 100%;
  /* Même si vous ne connaissez pas cette propriété, vous en aurez besoin pour permettre aux images de respecter les dimensions de la grid CSS */
  object-fit: cover;
  border-radius: 10px;
  transition: transform .4s;
}

.photos {
  display: grid;
  grid-template-rows: 300px 300px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-left: 23%;
  margin-right: 23%;
}

.lien-conteneur-photo {
  position: relative;
}

.photo-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 1.5em;
  font-weight: 400;
  color: black;
  opacity: 0.7;
  border-radius: 5px;
  display: none
}

.lien-conteneur-photo:hover .photo-hover {
  display: flex;
  transform: scale(1.05);
}

.lien-conteneur-photo:hover img {
  display: flex;
  transform: scale(1.05);
}

.contact h2 {
  color: black;
  text-align: center;
  margin-bottom: 80px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  color: white;
}

.form-nom-email {
  display: flex;
  flex-direction: row;
  grid-column-gap: 20px;
}

.form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

input,
textarea {
  padding: 15px;
  border-radius: 3px;
  border: none;
}

label {
  margin-bottom: 10px;
}

input[type='submit'] {
  width: 200px;
  margin: auto;
  margin-top: 30px;
}

@media screen and (max-width: 996px) {
  section {
    padding: 50px 20px;
  }

  .accueil-introduction {
    margin: auto;
    padding: 10px;
  }

  .accueil-introduction img {
    height: 200px;
  }

  @media screen and (max-width: 1400px) {
    .accueil-photos {
      padding: 50px 20px;
      margin: auto;
    }

    .accueil-photos h2 {
      margin-bottom: 40px;
    }

    .accueil-photos div {
      width: 100%;
      grid-template-rows: 120px 120px;
      grid-template-columns: 1fr 1fr 1fr;
      grid-gap: 20px;
      margin: auto;
    }

    .contact {
      padding: 50px 20px;
    }

    .form-nom-email {
      flex-direction: column;
      grid-gap: 0;
    }

    /*
    nav a {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 100px;
    font-size: 2.5em;
   }
    nav img {
    width: 20%;
    margin-bottom: 500px;
   }
   */
  }