/* general and body styling */
* {
  margin: 0;
  padding: 0;
}

@viewport {
  width: device-width;
  zoom: 1;
}

Body {
  font-family: Georgia, "Times New Roman", Times, serif;
  cursor: url("images/apple-platter-cursor.png"), default;
  scroll-behavior: auto;
}

/* ................................................................................... */
/* navigation menu */
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
.navigation-container {
  background-color: white;
  height: 70px;
  position: relative;
  width: 100%;
}
.menu-toggle {
  position: absolute;
  padding-top: 20px;
  padding-bottom: 90px;
  left: 30px;
  z-index: 999;
  font-size: 25px;
  border: none;
  background: none;
  color: rgb(90, 69, 46);
}
.menu-items {
  display: none;
  position: absolute;
  top: 28px;
  width: 80%;
  height: 100%;
  left: 10%;
  list-style: none;
}
.menu-items.show {
  display: flex;
  flex-direction: row;
}
.slide-right {
  -webkit-animation: slide-right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.navigation-item:link,
.navigation-item:visited {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  text-decoration: none;
  color: rgb(90, 69, 46);
  margin-left: 200px;
  display: flex;
  flex-direction: row;
}
.navigation-item:hover,
.navigation-item:active {
  font-size: 15px;
  text-decoration: none;
  color: rgb(230, 213, 193);
  text-transform: uppercase;
  margin-left: 200px;
  display: flex;
  flex-direction: row;
}
ul:last-child {
  margin-left: 0;
}
/* .................................................................................................... */
.container-one {
  position: sticky;
  top: 0;
  z-index: 1;
}
.produits-nappe {
  width: 100%;
  height: auto;
}
/* .................................................................................................... */
.h1-container {
  height: 100px;
  background-color: white;
  width: 100%;
  position: relative;
  top: 0;
  z-index: 2;
}
.h1-styling {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 33px;
  color: rgb(90, 69, 46);
  background-color: white;
  padding-top: 60px;
  text-align: center;
}
/* .................................................................................................... */
.container-two {
  display: grid;
  border: solid white 50px;
  row-gap: 3%;
  position: relative;
  top: 0;
  z-index: 2;
  background-color: white;
  padding-bottom: 15%;
}
/* /////////// */
.grid-row-one {
  display: grid;
  grid-row: 1;
  grid-template-columns: 1fr 1fr;
  height: 5%;
  column-gap: 3%;
}
.grid-row-two {
  display: grid;
  grid-row: 2;
  grid-template-columns: 1fr 1fr;
  height: 5%;
  column-gap: 3%;
}
/* ........... */
.grid-row-three {
  display: grid;
  grid-row: 3;
  grid-template-columns: 1fr 1fr;
  height: 5%;
  column-gap: 3%;
}
/* ........... */
.grid-row-four {
  display: grid;
  grid-row: 4;
  grid-template-columns: 1fr 1fr;
  height: 5%;
  column-gap: 3%;
}

/* ............ */
.hide {
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1),
    opacity 0.6s ease-in-out;
}

.scale-up {
  opacity: 1;
  transform: scale(1);
}

/* .scale-up-left {
  -webkit-animation: scale-up-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 3s
    both;
  animation: scale-up-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 3s both;
} */

/* animation scale-up-left */
@-webkit-keyframes scale-up-left {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
}
@keyframes scale-up-left {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
}

.container-left-one,
.container-left-two,
.container-left-three,
.container-left-four {
  /* background-color: rgb(214, 222, 240); */
  background-color: rgb(255, 248, 239);
  display: grid;
  grid-template-columns: 70% 30%;
  border-radius: 5%;
  border: solid 1px rgb(90, 69, 46);
}
.img-left {
  display: grid;
  grid-column: 1;
}
.miel-photo-editing {
  width: 80%;
  height: auto;
  max-width: 100%;
  margin-top: 6%;
  margin-bottom: 5%;
  margin-left: 7%;
  border-radius: 5%;
}

.miel-photo-editing:hover {
  transform: scale(1.3);
}
/*............. */
.container-right-one,
.container-right-two,
.container-right-three,
.container-right-four {
  background-color: rgb(255, 248, 239);
  /* background-color: rgb(214, 222, 240); */
  display: grid;
  grid-template-columns: 70% 30%;
  border-radius: 5%;
  border: solid 1px rgb(90, 69, 46);
}
.text-right {
  display: grid;
  grid-column: 2;
}
.text-styling {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 18px;
  margin-top: 100%;
  margin-left: -20%;
  width: 90%;
}
/* ................................................................................... */
.container-three {
  background-color: white;
  height: cover;
  padding-top: 5%;
  padding-bottom: 10%;
  position: relative;
  top: 0;
  z-index: 2;
}
.text-container-three {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 18px;
  text-align: left;
  width: 50%;
  margin-left: 25%;
}
.h3-styling {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 24px;
  margin-bottom: 2%;
}
.paragaphs-container-three {
  margin-bottom: 15px;
  line-height: 1.5;
}

/* ................................................................................... */
/* footer container */
.footer-container {
  height: 100px;
  display: grid;
  position: relative;
  top: 0;
  z-index: 2;
}
.footer-styling {
  font-size: 14px;
  color: rgb(90, 69, 46);
  padding-top: 30px;
  padding-bottom: 10px;
  display: grid;
  grid-template-columns: 50%;
  background-color: white;
}
.footer-list-right {
  display: grid;
  grid-column: 1;
  margin-left: 10%;
}
.footer-list-left {
  display: grid;
  grid-column: 2;
}
.list-styling {
  list-style: none;
}
.footer-list-item {
  margin-bottom: 10px;
}
.instagram-link:link,
.instagram-link:visited {
  font-size: 14px;
  color: rgb(90, 69, 46);
  text-decoration: none;
}
.instagram-link:hover,
.instagram-link:active {
  font-weight: bold;
  text-decoration: none;
}

/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* smaller screen */
@media screen and (max-width: 1200px) {
  @-webkit-keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
  }
  .miel-photo-editing {
    width: 70%;
    height: auto;
    max-width: 100%;
    margin-top: 20%;
    margin-bottom: 10%;
    margin-left: 15%;
    border-radius: 5%;
    /* border: solid 1px rgb(90, 69, 46); */
  }
}

/* Even smaller screen */
@media screen and (max-width: 950px) {
  @-webkit-keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
  }
  @keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
  }
  .navigation-container {
    background-color: white;
    height: 70px;
    position: relative;
    width: 100%;
  }
  .menu-toggle {
    position: absolute;
    padding-top: 20px;
    padding-bottom: 110px;
    left: 30px;
    z-index: 999;
    font-size: 25px;
    border: none;
    background: none;
    color: rgb(90, 69, 46);
  }
  .menu-items {
    display: none;
    background-color: white;
    list-style: none;
    width: 40%;
    height: 100%;
    left: 0;
    bottom: 0;
    margin-top: 4%;
    z-index: 2;
  }
  .menu-items.show {
    display: flex;
    flex-direction: column;
  }
  .slide-bottom {
    -webkit-animation: slide-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: slide-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .navigation-item:link,
  .navigation-item:visited {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 17px;
    text-decoration: none;
    color: rgb(90, 69, 46);
    margin-left: 0;
    padding: 15%;
    display: flex;
    flex-direction: column;
    background-color: white;
  }
  .navigation-item:hover,
  .navigation-item:active {
    font-size: 15px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    margin-left: 0;
    padding: 15%;
    display: flex;
    flex-direction: column;
    background-color: rgb(248, 190, 128);
  }
  /* ......................... */

  .container-two {
    display: grid;
    border: solid white 10px;
    row-gap: 10px;
  }
  /* /////////// */
  .grid-row-one,
  .grid-row-two,
  .grid-row-three,
  .grid-row-four {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: none;
    height: auto;
    row-gap: 40px;
    margin-bottom: 30px;
  }
  .container-left-one,
  .container-left-two,
  .container-left-three,
  .container-left-four {
    background-color: rgb(251, 245, 237);
    display: grid;
    grid-template-columns: 70% 30%;
    border-radius: 5%;
    height: 480px;
    margin-bottom: 0;
  }
  /* /////////// */
  .container-right-one,
  .container-right-two,
  .container-right-three,
  .container-right-four {
    background-color: rgb(251, 245, 237);
    border-radius: 5%;
    height: 480px;
    margin-bottom: 0;
  }
  /* /////////// */
  .img-left {
    display: grid;
    grid-column: 1;
  }
  .miel-photo-editing {
    width: 50%;
    height: auto;
    max-width: 100%;
    margin-top: 3%;
    margin-bottom: 3%;
    margin-left: 10%;
    border-radius: 10%;
    /* border: solid 1.5px rgb(90, 69, 46); */
  }
  /* /////////// */
  .text-right {
    display: grid;
    grid-column: 2;
  }
  .text-styling {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 16px;
    margin-top: 70%;
    margin-left: -10%;
    width: 50%;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////  */
/* // 750px// */
/* Even smaller screen */
@media screen and (max-width: 750px) {
  .container-two {
    display: grid;
    border: solid white 10px;
    row-gap: 10px;
  }
  /* /////////// */
  .grid-row-one,
  .grid-row-two,
  .grid-row-three,
  .grid-row-four {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: none;
    height: auto;
    row-gap: 40px;
    margin-bottom: 30px;
  }
  .container-left-one,
  .container-left-two,
  .container-left-three,
  .container-left-four {
    background-color: rgb(251, 245, 237);
    display: grid;
    grid-template-columns: 70% 30%;
    border-radius: 5%;
    height: 370px;
    margin-bottom: 0;
  }
  /* /////////// */
  .container-right-one,
  .container-right-two,
  .container-right-three,
  .container-right-four {
    background-color: rgb(251, 245, 237);
    border-radius: 5%;
    height: 370px;
    margin-bottom: 0;
  }
  /* /////////// */
  .img-left {
    display: grid;
    grid-column: 1;
  }
  .miel-photo-editing {
    width: 50%;
    height: auto;
    max-width: 100%;
    margin-top: 3%;
    margin-bottom: 3%;
    margin-left: 10%;
    border-radius: 10%;
    /* border: solid 1.5px rgb(90, 69, 46); */
  }
  /* /////////// */
  .text-right {
    display: grid;
    grid-column: 2;
  }
  .text-styling {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 16px;
    margin-top: 70%;
    margin-left: -10%;
    width: 50%;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////  */
/* // 750px// */
/* Even smaller screen */
@media screen and (max-width: 600px) {
  .container-two {
    display: grid;
    border: solid white 10px;
    row-gap: 10px;
  }
  /* /////////// */
  .grid-row-one,
  .grid-row-two,
  .grid-row-three,
  .grid-row-four {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: none;
    height: auto;
    row-gap: 40px;
    margin-bottom: 30px;
  }
  .container-left-one,
  .container-left-two,
  .container-left-three,
  .container-left-four {
    background-color: rgb(251, 245, 237);
    display: grid;
    grid-template-columns: 70% 30%;
    border-radius: 5%;
    height: 300px;
    margin-bottom: 0;
  }
  /* /////////// */
  .container-right-one,
  .container-right-two,
  .container-right-three,
  .container-right-four {
    background-color: rgb(251, 245, 237);
    border-radius: 5%;
    height: 300px;
    margin-bottom: 0;
  }
  /* /////////// */
  .img-left {
    display: grid;
    grid-column: 1;
  }
  .miel-photo-editing {
    width: 50%;
    height: auto;
    max-width: 100%;
    margin-top: 3%;
    margin-bottom: 10%;
    margin-left: 10%;
    border-radius: 10%;
    /* border: solid 1.5px rgb(90, 69, 46); */
  }
  /* /////////// */
  .text-right {
    display: grid;
    grid-column: 2;
  }
  .text-styling {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 16px;
    margin-top: 60%;
    margin-left: -10%;
    width: 50%;
  }
}
/* //////////////////////////////////////////////////////////////////////////////////////////  */
/* // MOBILE // */
@media screen and (max-width: 480px) {
  @-webkit-keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
  }
  @keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
  }
  .navigation-container {
    background-color: white;
    height: 70px;
    position: relative;
    width: 100%;
  }
  .menu-toggle {
    position: absolute;
    padding-top: 20px;
    padding-bottom: 110px;
    left: 30px;
    z-index: 999;
    font-size: 25px;
    border: none;
    background: none;
    color: rgb(90, 69, 46);
  }
  .menu-items {
    display: none;
    background-color: white;
    list-style: none;
    width: 40%;
    height: 100%;
    left: 0;
    bottom: 0;
    margin-top: 10%;
    z-index: 2;
  }
  .menu-items.show {
    display: flex;
    flex-direction: column;
  }
  .slide-bottom {
    -webkit-animation: slide-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: slide-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .navigation-item:link,
  .navigation-item:visited {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 17px;
    text-decoration: none;
    color: rgb(90, 69, 46);
    margin-left: 0;
    padding: 15%;
    display: flex;
    flex-direction: column;
    background-color: white;
  }
  .navigation-item:hover,
  .navigation-item:active {
    font-size: 15px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    margin-left: 0;
    padding: 15%;
    display: flex;
    flex-direction: column;
    background-color: rgb(248, 190, 128);
  }

  /* .................................................................................................... */
  .container-one {
    position: relative;
  }
  .honey-jars-stripes {
    width: 100%;
    height: 250px;
    z-index: -1;
  }
  /* .................................................................................................... */
  .h1-container {
    height: 120px;
    background-color: white;
    width: 100%;
    margin-bottom: 50px;
  }
  .h1-styling {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 33px;
    color: rgb(90, 69, 46);
    background-color: white;
    margin-top: 10px;
    text-align: center;
  }
  /* .................................................................................................... */
  .container-two {
    display: grid;
    border: solid white 10px;
    row-gap: 10px;
  }
  /* /////////// */
  .grid-row-one,
  .grid-row-two,
  .grid-row-three,
  .grid-row-four {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: none;
    height: auto;
    row-gap: 40px;
    margin-bottom: 30px;
  }
  .container-left-one,
  .container-left-two,
  .container-left-three,
  .container-left-four {
    background-color: rgb(251, 245, 237);
    display: grid;
    grid-template-columns: 70% 30%;
    border-radius: 5%;
    height: 300px;
    margin-bottom: 0;
  }
  /* /////////// */
  .container-right-one,
  .container-right-two,
  .container-right-three,
  .container-right-four {
    background-color: rgb(251, 245, 237);
    border-radius: 5%;
    height: 300px;
    margin-bottom: 0;
  }
  /* /////////// */
  .img-left {
    display: grid;
    grid-column: 1;
  }
  .miel-photo-editing {
    width: 75%;
    height: auto;
    max-width: 100%;
    margin-top: 5%;
    margin-bottom: 10%;
    margin-left: 10%;
    border-radius: 10%;
    /* border: solid 1.5px rgb(90, 69, 46); */
  }
  /* /////////// */
  .text-right {
    display: grid;
    grid-column: 2;
  }
  .text-styling {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 16px;
    margin-top: 60%;
    margin-left: -10%;
    width: 50%;
  }
  /* ................................................................................... */
  .container-three {
    background-color: white;
    height: cover;
    padding-top: 5%;
    padding-bottom: 10%;
  }
  .text-container-three {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 18px;
    text-align: left;
    width: 90%;
    margin-left: 5%;
  }
  .h3-styling {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 24px;
    margin-bottom: 2%;
  }
  .paragaphs-container-three {
    margin-bottom: 15px;
    line-height: 1.5;
  }
  /* ................................................................................... */
  /* footer container */
  .footer-container {
    height: 100px;
    display: grid;
  }
  .footer-styling {
    font-size: 14px;
    color: rgb(90, 69, 46);
    padding-top: 0;
    padding-bottom: 10px;
    display: grid;
    grid-template-columns: 50%;
    background-color: white;
  }
  .footer-list-right {
    display: grid;
    grid-column: 1;
    margin-left: 10%;
  }
  .footer-list-left {
    display: grid;
    grid-column: 2;
    margin-left: 30px;
  }
  .list-styling {
    list-style: none;
  }
  .footer-list-item {
    margin-bottom: 10px;
  }
  .instagram-link:link,
  .instagram-link:visited {
    font-size: 14px;
    color: rgb(90, 69, 46);
    text-decoration: none;
  }
  .instagram-link:hover,
  .instagram-link:active {
    font-weight: bold;
    text-decoration: none;
  }
}
