  /* -------------------------------- PARAMETRES GENERAUX -------------------------------- */

  #haut-page{
    background-image: url(/view/img/placehold_bg.png);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  table{
    text-align: center;
    border: solid red 2px;
    margin: auto;
  }

  th, td{
    padding: 10px;
    margin: 10px;
  }
  
  /* -------------------------------- VERSION MOBILE ------------------------------------- */
  @media screen and (max-width: 600px) {
  
    /* Page informations pratiques mobile*/
  
    p{
      margin: 0;
    }
  
    .page-infos{
      margin: auto;
      width: 80%;
      height: fit-content;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      line-height: 1.5em;
    }

    #pen{
      display: none;
    }
  
    #maps{
      margin-top: 5%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding:10%;
      background-image: url(/view/img/placehold_bg.png);
      background-repeat: no-repeat;
      border-top: solid rgb(125, 0, 0) 2px;
      border-bottom: solid rgb(125, 0, 0) 2px;
    }
  
    #maps iframe{
      width: 90%;
    }
  
    #maps ul{
      list-style: none;
    }
  
}
  /* -------------------------------- VERSION PC ------------------------------------- */
  
    /* --------------------- Page informations pratiques PC */
  
    @media screen and (min-width: 601px){

    
    .page-infos{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      justify-content: center;
      width: 80%;
      margin: 0 auto 100px auto;
      max-width: 1200px;
    }
  
    .span-two{
      grid-area: auto / span 2;
    }
  
    #maps{
      display: grid;
      grid-template-columns: repeat(2, 30em);
      grid-template-rows: repeat(2, 14em);
      justify-content: center;
      padding: 80px;
      background-image: url(/view/img/placehold_bg.png);
      background-repeat: no-repeat;
      border-top: solid rgb(125, 0, 0) 2px;
      border-bottom: solid rgb(125, 0, 0) 2px;
    }
  
    #maps h3{
      grid-area: 1 / 2;
    }
  
    #red-filter{
      filter:saturate(red);
    }
  
    #maps ul{
      padding-top: 7em;
      grid-area: 1 / 2 / span 2;
      list-style: none;
    }

  }

/* ----------------------- FORMULAIRES -------------------- */

/* Version Mobile */

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

   /* Boutons */
   button, .btn {
    background: none;
    color: #fff;
    border: solid red 2px;
    padding: 12px 30px;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 0.08em;
    margin: 50px 0;
    height: 55px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px #b3001b33;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  }

  button:hover, .btn:hover {
    color: #b3001b;
    box-shadow: 0 4px 22px #b3001b66;
    transform: translateY(-2px) scale(1.04);
  }

  /* Formulaires */

  form{
    margin: 80px 0px 80px 0px;
  }

  form, form div{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  input, textarea, select {
    width: 50%;
    height: 40px;
    padding: 10px 12px;
    margin: 20px 0px 0px 0px;
    border: none;
    border-radius: 10px;
    background: rgb(255, 237, 237);
    color: grey;
    font-size: 0.9rem;
    transition: border 0.2s;
    text-transform: uppercase;
  }

  input:focus, textarea:focus, select:focus {
    border: solid red 2px;
  }

  #starRating{
    display: flex;
    flex-direction: row;
  }

  #commentaire{
    border-top: solid red 2px;
    margin-top: 10%;
  }

  .comment{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
    justify-content: center;
    margin-bottom: 10%;
  }

}

/* Version PC */

@media screen and (min-width: 601px){
  /* Boutons */
  button, .btn {
    background: none;
    color: #fff;
    border: solid red 2px;
    padding: 12px 30px;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 0.08em;
    margin: 50px 0;
    height: 55px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 2px 8px #b3001b33;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  }

  button:hover, .btn:hover {
    color: #b3001b;
    box-shadow: 0 4px 22px #b3001b66;
    transform: translateY(-2px) scale(1.04);
  }

  /* Formulaires */

  form{
    display: grid;
    margin: 80px 0px 80px 0px;
    grid-template-columns: repeat(2, 18em);
    justify-content: center;
    align-items: center;
  }

  .short-input{
    width: 90%;
  }

  input, textarea, select {
    width: auto;
    height: 40px;
    padding: 10px 12px;
    margin: 20px 0px 0px 0px;
    border: none;
    border-radius: 10px;
    background: rgb(255, 237, 237);
    color: grey;
    font-size: 0.9rem;
    transition: border 0.2s;
  }

  ::placeholder{
    text-transform: uppercase;
  }

  input:focus, textarea:focus, select:focus {
    border: solid red 2px;
  }

  #commentaire{
    border-top: solid red 2px;
    padding-top: 5%;
  }

  #commentaire textarea{
    margin-top: 8%;
  }

  .comment{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
    justify-content: center;
    margin-bottom: 10%;
  }

  #starRating{
    display: flex;
    flex-direction: row;
  }

  #starRating span:hover{
    cursor: pointer;
  }
}

/* ----------------------- PAGE CONCEPT -------------------- */

/* Version Mobile */

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

  #pen{
    position: absolute;
    right: 5px;
  }

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

  .slide{
    margin: 10% 5%;
  }

}

/* Version PC */

@media screen and (min-width: 601px){

  #pen{
    position: absolute;
    top: 0;
    right: 200px;
  }

  #enveloppe{
    margin: 0 30%;
  }

  .cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 80%;
    margin-bottom: 5%;
  }

  .slide {
      flex: 0 0 100%;
      transition: .5s ease-in-out;
      margin: 5%;
  }

  .slide p{
    display: none;
    position: absolute;
    width: 150px;
    text-align: center;
    margin-left: 60px;
    margin-top: 200px;
    z-index: 0;
    
  }
  
  .slide img {
    object-fit: cover;
    z-index: -1;
  }

  .slide img:hover{
    filter:opacity(15%);
    cursor: pointer;
  }

  .slide:hover p{
    display: block;
  }
  
  
  }

  /* ---------------------- Page messagerie mobile ----------------------------- */
@media screen and (max-width: 600px) {

  #fond-messagerie{
    background-image: url(/view/img/photo_concept.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .messagerie-m{
    margin: auto;
    width: 80%;
    border: solid lightgrey 1px;
    background-color: black;
  }

  .messagerie-m ul{
    list-style: none;
    grid-column: 2 / span 2;
    border-left: solid lightgray 1px;
  }

  #messagerie-e{
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 80%;
    border: solid lightgrey 1px;
    background-color: black;
    margin: 10%;
  }

  #messagerie-e textarea{
    margin: 2%;
    width: 70%;
    padding: 3% 5%;
  }

  #message{
    height: 25vh;
  }

  #messagerie-e ::placeholder{
    text-transform: initial;
    font-size: 1.2em;
  }

  #messagerie-e h3{
    color: white;
    text-transform: initial;
    font-family: "Asar", serif;
    font-size: 1.5em;
    border-bottom: solid lightgrey 1px;
    text-align: center;
    padding-bottom: 7%;
    width: 100%;
  }

  #messagerie-e button{
    background-color: rgb(190, 17, 17);
    color: white;
    border: none;
  }
}

/* ------------------------------- Page messagerie PC ------------------------ */
@media screen and (min-width: 601px) {

  #fond-messagerie{
    background-image: url(/view/img/photo_concept.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  #messagerie-m{
    display: grid;
    margin: auto;
    width: 80%;
    grid-template-columns: repeat(3, 1fr);
    border: solid lightgrey 1px;
    background-color: black;
  }

  #messagerie-m ul{
    list-style: none;
    grid-column: 2 / span 2;
    border-left: solid lightgray 1px;
  }

  #messagerie-e{
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 80%;
    border: solid lightgrey 1px;
    background-color: black;
    margin: 10%;
  }

  #messagerie-e textarea{
    margin: 2%;
    width: 60%;
    padding: 5%;
  }

  #message{
    height: 25vh;
  }

  #messagerie-e ::placeholder{
    text-transform: initial;
    font-size: 1.2em;
  }

  #messagerie-e h3{
    color: white;
    text-transform: initial;
    font-family: "Asar", serif;
    font-size: 1.5em;
    border-bottom: solid lightgrey 1px;
    text-align: center;
    padding-bottom: 7%;
    width: 100%;
  }

  #messagerie-e button{
    background-color: rgb(190, 17, 17);
    color: white;
    border: none;
  }
}

 /* -------------------------------- VERSION MOBILE ------------------------------------- */
  
    /* --------------------- Page admin Mobile */
  
    @media screen and (max-width: 600px){
      
      #page-admin{
        margin-top: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
      }

      #page-admin ul{
        border: solid lightgrey 1px;
        margin: 5%;
        padding: 5%;
      }

    }

 /* -------------------------------- VERSION PC ------------------------------------- */
  
    /* --------------------- Page admin pratiques PC */
  
    @media screen and (min-width: 601px){

      #page-admin{
        margin-top: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
      }

      #page-admin ul{
        border: solid lightgrey 1px;
        margin: 5%;
        padding: 5%;
      }

    }

    /* -------------------------------- VERSION MOBILE ------------------------------------- */
  
    /* --------------------- Page panier Mobile */
  
    @media screen and (max-width: 600px){
     
    }

    /* -------------------------------- VERSION PC ------------------------------------- */
  
    /* --------------------- Page panier PC */
  
    @media screen and (min-width: 601px){

      #contenu{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 10%;
      }

      #contenu a{
        margin-top: 10%;
      }

    }