body {
  background-image: url("/resto/photos/fond.webp");
  background-size: cover;
  background-attachment: fixed;
  color: white;
  --taille: 800px;
}
.mapsresto {
  position: absolute;
  bottom: 5px;
  right: 10px;
}
.calltel {
  display: none;
}
#entete {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: var(--taille);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
.photo1 {
  grid-area: ph1;
}
.photo2 {
  grid-area: ph2;
}
.photo3 {
  grid-area: ph3;
}
.resto {
  border: 1px solid white;
  width: var(--taille);
  height: 400px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "ph1 ph2"
    "ph1 ph3";
  grid-auto-flow: row;
  align-content: stretch;
  gap: 2px 2px;
  margin-left: auto;
  margin-right: auto;
}
.description {
  font-size: 20px;
  border: 1px solid white;
  width: var(--taille);
  box-sizing: border-box;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  position: relative;
}
.adresse {
  font-family: "verdana";
  line-height: 1.5em;
  font-size: 20px;
  color: #ffa500;
  text-shadow: 0px 5px 5px #aaaaaa;
}
button {
  color: white;
  font-size: 18px;
  width: 140px;
  height: 35px;
  border-radius: 8px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: #880033;
}
a:link {
  text-decoration: none;
  color: white;
}
a:visited {
  color: white;
}

button img {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 5px;
}
#overlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #b2f2f9;
  border: 1px solid gold;
  border-radius: 10px;
  font-size: 20px;
  text-align: left;
  z-index: 15;
}
.masque {
  display: none;
}
#sombre {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 10;
}
/* ================================================== */

@media screen and (max-width: 599px) {
  body {
    --taille: 340px;
  }
  .description {
    width: var(--taille);
  }
  #entete img {
    width: 200px;
  }
  .calltel {
    position: relative;
    width: 100px;
    text-align: right;
    display: unset;
  }
  button {
    font-size: 15px;
    /* width: 120px; */
    height: 30px;
  }
  .center {
    text-align: center;
    margin-top: 10px;
  }
  .photo1 img {
    width: 340px;
    height: 224px;
  }
  .photo2 img,
  .photo3 img {
    width: 168px;
    height: 168px;
  }
  .resto {
    width: var(--taille);
    height: 396px;
    grid-template-columns: 2fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "ph1 ph1"
      "ph2 ph3";
  }
  .mapsresto {
    bottom: 10px;
  }
}
/* ============================================================== */
@media screen and (min-width: 700px) and (max-width: 1023px) {
  body {
    --taille: 692px;
  }
  .calltel {
    display: unset;
  }
  button {
    font-size: 15px;
    width: 120px;
    height: 30px;
  }
  .center {
    text-align: center;
    margin-top: 10px;
  }
  .resto {
    width: var(--taille);
    height: 334px;
  }
  .photo1 img {
    width: 525px;
    height: 332px;
  }
  .photo2 img,
  .photo3 img {
    width: 165px;
    height: 165px;
  }
  .description {
    width: var(--taille);
  }
}
