html {
  background-color: white;
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  width: 100vw;
  margin: auto;
  background-color: #2e3136;
  color: white;
  font-family: "Bodoni Moda", serif;
  font-size: 18px;
  overflow-x: hidden;
}

.loadingPage {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  min-height: 100vh;
  padding-top: 100px;
}

h1 {
  font-size: clamp(40px, 9vw, 70px);
  text-align: center;
  font-family: "Bodoni Moda", serif;
}

h2 {
  font-size: clamp(18px, 3vw, 24px);
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}

h3 {
  font-size: 25px;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}

header {
  position: fixed;
  display: flex;
  width: 100%;
  margin: auto;
  background-color: black;
  z-index: 999;
}
header .logo {
  height: 100px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}
header nav {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
header nav a {
  margin: 0 30px 10px;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}
header nav a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}

.active {
  opacity: 0.5;
}

.menu {
  position: fixed;
  top: 60px;
  right: 30px;
  width: 40px;
  height: 25px;
  display: none;
  transition: all 0.3s;
  cursor: pointer;
}
.menu .menu-trait {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
  transition: all 0.3s;
}
.menu .menu-trait:nth-child(1) {
  top: 0;
}
.menu .menu-trait:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}
.menu .menu-trait:nth-child(3) {
  bottom: 0;
}

.menu.cross .menu-trait:nth-child(1) {
  top: 50%;
  transform: translatey(-50%) rotate(45deg);
}

.menu.cross .menu-trait:nth-child(2) {
  transform: translateX(-100%);
  opacity: 0;
}

.menu.cross .menu-trait:nth-child(3) {
  top: 50%;
  transform: translatey(-50%) rotate(-45deg);
}

.accueil {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  background-image: url(../ressources/saumon.jpg);
  background-position: center;
  background-size: cover;
}
.accueil .titles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  width: clamp(310px, 80vw, 800px);
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.a-propos-container {
  width: 100%;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "img txt1" "img txt2";
}
.a-propos-container .a-propos-img {
  grid-area: img;
  width: 100%;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.a-propos-container .a-propos-img img {
  width: 100%;
  max-width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5px;
}
.a-propos-container .a-propos-txt {
  margin: 0 20px;
}
.a-propos-container .a-propos-txt p {
  margin-bottom: 50px;
  line-height: 1.8rem;
}
.a-propos-container .txt1 {
  grid-area: txt1;
}
.a-propos-container .txt2 {
  grid-area: txt2;
}

#concept h1,
#carte h1,
#menuDesSens h1,
#galerie h1 {
  font-size: clamp(35px, 9vw, 70px);
  margin: 100px 0;
}

#concept .concept-img {
  width: 90%;
  min-width: 310px;
  margin: 0 auto 100px;
  height: 300px;
  border-radius: 5px;
  background-image: url(../ressources/service.jpg);
  background-position: bottom;
  background-size: cover;
}
#concept h1 {
  margin: 100px 0;
}
#concept .services {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
}
#concept .services .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 80px 0;
}
#concept .services .service img {
  width: 100px;
  margin-bottom: 50px;
  opacity: 0.5;
}

#carte .menu-img {
  width: 90%;
  min-width: 310px;
  border-radius: 5px;
  margin: 0 auto 100px;
  height: 300px;
  background-image: url(../ressources/menu.jpg);
  background-position: center;
  background-size: cover;
}
#carte h1 {
  margin: 100px 0;
}
#carte .cards {
  width: 100%;
  margin: 0 auto 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#carte .cards .card {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 5px;
  background: linear-gradient(135deg, #c0c0c0, black);
  margin: 20px;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
#carte .cards .card span {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  width: 100%;
  text-align: center;
  font-size: 30px;
  transition: all 0.3s;
}
#carte .cards .card .btn {
  opacity: 1;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  width: 250px;
  text-align: center;
  border: solid 1px white;
  border-radius: 5px;
  padding: 10px 20px;
  transition: all 0.3s;
  font-family: "Montserrat", sans-serif;
}
#carte .cards .card .btn:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

.popUp {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
}
.popUp img {
  width: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.popUp .popUp-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 80%;
  height: 80%;
  overflow-y: scroll;
  border: solid 1px white;
  background-color: #2e3136;
  padding: 50px;
  text-align: center;
  border-radius: 5px;
}
.popUp .popUp-container .card-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.popUp .popUp-container .card-header span:nth-child(1) {
  font-family: "Bodoni Moda", serif;
  font-size: 50px;
}
.popUp .popUp-container .card-header .tirait {
  width: 100px;
  height: 2px;
  background-color: white;
  margin: 40px;
}
.popUp .popUp-container .card-body span {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
}
.popUp .popUp-container .card-body p {
  padding: 40px 0 40px;
}

.popUp1,
.popUp2,
.popUp3,
.popUp4,
.popUp5,
.popUp6 {
  display: none;
}

#menuDesSens h1 {
  margin: 100px 0;
}
#menuDesSens a {
  color: white;
  margin: 40px auto;
  display: block;
  text-align: center;
}

.menuDesSens-container {
  display: flex;
  justify-content: center;
}
.menuDesSens-container img {
  width: 80%;
  max-width: 500px;
  margin: 0 20px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.menuDesSens-container .menuDesSens-txt {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.menuDesSens-container .menuDesSens-txt p {
  margin-bottom: 20px;
}
.menuDesSens-container .menuDesSens-txt img {
  width: 100%;
  max-width: 300px;
  margin-top: 50px;
  align-self: center;
}

#galerie {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.galerie-container {
  margin: 0 auto 100px;
  width: 95%;
  height: auto;
  position: relative;
}
.galerie-container .pictures {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-width: 300px;
  height: 500px;
  margin: auto;
  overflow: hidden;
}
.galerie-container .pictures img {
  width: 100%;
  opacity: 0;
  transition: all 1s;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.galerie-container .pictures img.appear {
  display: block;
  opacity: 1;
  transition: all 1s;
}
.galerie-container .gauche,
.galerie-container .droite {
  width: 60px;
  opacity: 0.5;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
}
.galerie-container .gauche {
  left: 10%;
}
.galerie-container .droite {
  right: 10%;
}

footer {
  width: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
}
footer .contact,
footer .links,
footer .reseaux {
  width: 100%;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
}
footer .contact a,
footer .links a,
footer .reseaux a {
  color: white;
}
footer .contact a:hover,
footer .links a:hover,
footer .reseaux a:hover {
  opacity: 0.5;
}
footer .contact img,
footer .links img,
footer .reseaux img {
  width: 50px;
  margin: 0 20px;
}
footer .contact span,
footer .links span,
footer .reseaux span {
  margin: 5px 0;
}
footer .reseaux {
  flex-direction: row;
}

/* MENTIONS LEGALES */
/*******************************/
.mentions-container {
  background-color: #242423;
  color: beige;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  padding: 50px 15px;
}
.mentions-container .mention {
  margin-bottom: 20px;
}
.mentions-container .mention h3 {
  width: 100%;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-align: start;
}
.mentions-container .mention p {
  opacity: 0.6;
  line-height: 25px;
}

@media screen and (max-width: 1100px) {
  header {
    flex-direction: column;
  }
  header nav {
    height: 0px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  nav.open {
    height: 300px;
    transition: all 0.3s;
  }
  .menu {
    display: block;
  }
  header .logo {
    width: 150px;
  }
}
@media screen and (max-width: 1010px) {
  .a-propos-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "img txt1" "img txt1" "txt2 txt2";
  }
  .a-propos-container .a-propos-img {
    grid-area: img;
    border-radius: 5px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 950px) {
  .menuDesSens-container {
    flex-direction: column;
  }
  .menuDesSens-container .img1 {
    margin: 0 auto 50px;
  }
  .menuDesSens-container .menuDesSens-txt {
    text-align: center;
  }
}
@media screen and (max-width: 850px) {
  .a-propos-container {
    display: flex;
    flex-direction: column;
  }
  .a-propos-container .txt1 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 700px) {
  .galerie-container .gauche,
  .galerie-container .droite {
    opacity: 1;
  }
  .galerie-container .gauche {
    left: 0;
  }
  .galerie-container .droite {
    right: 0;
  }
}/*# sourceMappingURL=style.css.map */