/* 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;
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal {
  position: relative;
  opacity: 0;
}
.reveal.active {
  opacity: 1;
}
.active.fade-right {
  animation: fade-right 1s ease-in;
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.active.fade-left {
  animation: fade-left 1s ease-in;
}

/* .................................................................................................... */
/* 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;
}
/* .................................................................................................... */
.h1-container {
  background-color: white;
  width: 100%;
}
.h1-styling {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
  color: rgb(90, 69, 46);
  background-color: white;
  margin-top: 50px;
  text-align: center;
  padding-bottom: 20px;
}

.introduction-text {
  width: 40%;
  margin-left: 30%;
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  color: rgb(90, 69, 46);
  margin-bottom: 30px;
}
/* .................................................................................................... */
.images-div-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: auto;
  padding-top: 50px;
  padding-bottom: 70px;
}
.image-left {
  display: grid;
  grid-column: 1;
  /* height: 595px; */
  height: auto;
  max-width: 100%;
}
.image-middle {
  display: grid;
  grid-column: 2;
  /* height: 595px; */
  height: auto;
  margin-right: 0.3%;
  max-width: 100%;
}
.image-right {
  display: grid;
  grid-column: 3;
  /* height: 595px; */
  height: auto;
  max-width: 100%;
}

/* .................................................................................................... */
.h4-div {
  text-align: center;
}
.h4-styling {
  font-size: 30px;
  color: rgb(90, 69, 46);
  padding-top: 10px;
  padding-bottom: 10px;
}
/* .................................................................................................... */
/* container one image left text right */
.container-one {
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 50%;
  background-color: white;
}
.container-left-one {
  grid-column: 1;
}
.image-jars-market {
  width: 350px;
  height: auto;
  max-width: 80%;
  border: solid 2px rgb(90, 69, 46);
  margin-top: 10%;
  margin-bottom: 10%;
  margin-left: 50%;
}

.container-right-one {
  grid-column: 2;
}
.text-container-one {
  font-size: 20px;
  color: rgb(90, 69, 46);
  margin-top: 30%;
  margin-left: 10%;
  width: 50%;
  background-color: white;
}
.h2-styling-one {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 25px;
  margin-bottom: 5%;
}

/* .................................................................................................... */
/* container two text left image right */
.container-two {
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 50%;
  background-color: rgb(213, 222, 246);
}
.container-left-two {
  grid-column: 1;
}
.h2-styling-two {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: white;
  font-size: 25px;
  margin-bottom: 5%;
}
.text-container-two {
  font-size: 20px;
  text-align: end;
  color: white;
  margin-top: 35%;
  margin-left: 47%;
  width: 50%;
}
/* .......... */
.container-right-two {
  grid-column: 2;
}
.image-boris-market-two {
  width: 330px;
  height: auto;
  max-width: 80%;
  border: solid 2px rgb(90, 69, 46);
  margin-top: 10%;
  margin-bottom: 10%;
  margin-left: 10%;
}

/* .................................................................................................... */
.h4-div-two {
  text-align: center;
  margin-top: 40px;
}
/* see h4 styling above - directly after h4-div */
/* .................................................................................................... */
/* container three - image left, text right */
.container-three {
  width: 100%;
  display: grid;
  grid-template-columns: 50%;
  background-color: white;
}
/* ..........*/
.container-left-three {
  display: grid;
  grid-column: 1;
}
.biocoop {
  width: 500px;
  height: 380px;
  max-width: 80%;
  border: solid 2px rgb(90, 69, 46);
  margin-left: 35%;
  margin-top: 10%;
  margin-bottom: 15%;
}
/* ..........*/
.container-right-three {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 15px;
  display: grid;
  grid-column: 2;
}
.text-container-three {
  font-size: 20px;
  text-align: left;
  color: rgb(90, 69, 46);
  margin-top: 18%;
  margin-left: 15%;
  width: 60%;
}
.h2-styling-three {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 25px;
  margin-bottom: 5%;
}
ul {
  list-style: none;
}
.list-item {
  margin-bottom: 20px;
}
/* .................................................................................................... */
/* container four text left image right*/
.container-four {
  display: grid;
  grid-template-columns: 50%;
  background-color: rgb(213, 222, 246);
}
.container-left-four {
  display: grid;
  grid-column: 1;
}
.text-container-four {
  font-size: 20px;
  text-align: end;
  color: white;
  margin-top: 28%;
  margin-left: 33%;
  width: 60%;
}
.h2-styling-four {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: white;
  font-size: 25px;
  margin-bottom: 5%;
  /* width: 30%; */
}
.address {
  margin-bottom: 10px;
}
/* .......... */
.container-right-four {
  display: grid;
  grid-column: 2;
}
.comptoirs-bio {
  width: 500px;
  height: 380px;
  max-width: 80%;
  border: solid 2px rgb(90, 69, 46);
  margin-left: 2%;
  margin-top: 10%;
  margin-bottom: 10%;
}
/* .................................................................................................... */
/* footer container */
.footer-container {
  height: 100px;
  display: grid;
}
.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;
}

/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* // 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: 90px;
    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: 1;
  }
  .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);
  }

  /* ....................................................................................................
   */
  .h1-container {
    height: auto;
    background-color: white;
    width: 100%;
    margin-top: 50px;
  }
  .h1-styling {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 22px;
    color: rgb(90, 69, 46);
    background-color: white;
    text-align: left;
    margin-left: 15px;
  }
  .introduction-text {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    color: rgb(90, 69, 46);
    text-align: left;
    width: 95%;
    margin-left: 15px;
    margin-bottom: 10px;
  }
  /* .................................................................................................... */
  .images-div-top {
    display: grid;
    grid-template-rows: none;
    grid-template-columns: none;
    padding: 0;
    margin-bottom: 0;
    height: 400px;
  }
  .image-left {
    display: none;
  }
  .image-middle {
    display: none;
  }
  .image-right {
    width: 95%;
    height: auto;
    padding: 5px;
    margin-left: 1.3%;
    border-radius: 10%;
    padding-bottom: 30px;
  }
  /* .................................................................................................... */
  .h4-div {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 5px;
  }
  .h4-styling {
    font-size: 25px;
    color: rgb(90, 69, 46);
  }
  /* .................................................................................................... */
  /* container one image left text right */
  .container-one {
    background-size: auto;
    background-position: center;
    display: grid;
    grid-template-columns: 50%;
    background-color: rgb(251, 245, 237);
    padding: 60px 0 60px 0;
  }
  .container-left-one {
    grid-column: 1;
  }
  .image-jars-market {
    width: 180px;
    height: 230px;
    max-width: 100%;
    border: solid 2px rgb(90, 69, 46);
    margin-bottom: 20%;
    margin-left: 20%;
  }
  /* .......... */
  .container-right-one {
    grid-column: 2;
  }
  .text-container-one {
    font-size: 16px;
    background-color: rgb(251, 245, 237);
    color: rgb(90, 69, 46);
    margin-left: 25%;
    width: 70%;
  }
  .h2-styling-one {
    font-family: Georgia, "Times New Roman", Times, serif;
    /* color: white; */
    color: rgb(90, 69, 46);
    font-size: 20px;
    margin-bottom: 5%;
  }

  /* .................................................................................................... */
  /* container three - image left, text right */
  .container-two {
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: 50%;
    background-color: white;
    padding: 60px 0 40px 0;
  }
  /* .......... */
  .container-left-two {
    grid-column: 1;
    margin-top: -20px;
  }
  .h2-styling-two {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 20px;
    margin-bottom: 5%;
  }
  .text-container-two {
    font-size: 16px;
    color: rgb(90, 69, 46);
    margin-left: 10%;
    width: 70%;
  }
  /* .......... */
  .container-right-two {
    grid-column: 2;
  }
  .image-boris-market-two {
    width: 190px;
    height: 260px;
    max-width: 100%;
    border: solid 2px rgb(90, 69, 46);
    margin-bottom: 10%;
    margin-left: -10%;
  }

  /* .................................................................................................... */
  /* container two text left image right */
  .container-three {
    width: 100%;
    display: grid;
    grid-template-rows: 50%;
    grid-template-columns: none;
    background-color: rgb(251, 245, 237);
    padding: 30px 0 30px 0;
  }
  /* ..........*/
  .container-left-three {
    display: grid;
    grid-row: 1;
    grid-column: none;
  }
  .biocoop {
    width: 400px;
    height: 200px;
    max-width: 80%;
    border: solid 2px rgb(90, 69, 46);
    margin-left: 10%;
    margin-bottom: 80px;
  }
  /* ..........*/
  .container-right-three {
    display: grid;
    grid-row: 2;
    grid-column: none;
  }
  .text-container-three {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 16px;
    color: rgb(90, 69, 46);
    margin-left: 10%;
    margin-top: 0;
    width: 80%;
    text-align: center;
  }
  .h2-styling-three {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 20px;
    margin-bottom: 5%;
  }
  ul {
    list-style: none;
  }
  .list-item {
    margin-bottom: 20px;
  }
  /* .................................................................................................... */
  .h4-div-two {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
  }
  /* .................................................................................................... */
  /* container four text left image right*/
  .container-four {
    display: grid;
    grid-template-rows: 20% 80%;
    grid-template-columns: none;
    background-color: white;
    padding: 60px 0 60px 0;
  }
  .container-left-four {
    display: grid;
    grid-column: none;
    margin: 0;
    padding: 0;
    margin-bottom: 50px;
  }
  .text-container-four {
    text-align: left;
    grid-row: 1;
    font-size: 16px;
    color: rgb(90, 69, 46);
    margin-left: 0;
    margin-top: 0;
    width: 80%;
  }
  .h2-styling-four {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 20px;
    margin-bottom: 5%;
  }
  .address {
    margin-bottom: 0;
  }
  /* ................ */
  .container-right-four {
    display: grid;
    grid-column: none;
    grid-row: 2;
    margin-top: 20px;
  }
  .comptoirs-bio {
    width: 250px;
    height: 300px;
    max-width: 80%;
    border: solid 2px rgb(90, 69, 46);
    margin: 0;
  }

  /* .................................................................................................... */
  /* footer container */
  .footer-container {
    height: 100px;
    display: grid;
  }
  .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;
    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;
  }
}
