/* 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;
}
/* .................................................................................................... */
.panel {
  position: sticky;
  top: 0; /* We use 'relative' here, not 'sticky' */
  z-index: 1;
  transition: all 0.3s ease;
}

.container-one {
  background-color: white;
  font-family: Georgia, "Times New Roman", Times, serif;
  background-size: cover;
  background-position: center;
  padding-top: 70px;
  padding-bottom: 50px;
  line-height: 1.5;
  position: sticky;
  top: 0;
  z-index: 1;
}
.text-container-one {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 18px;
  text-align: center;
  width: 50%;
  margin-left: 25%;
}
.h1-styling {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 28px;
  margin-bottom: 15px;
}
.first-h2-styling {
  font-size: 18px;
  font-weight: lighter;
  margin-bottom: 20px;
}
.introduction-text {
  font-size: 18px;
  color: rgb(90, 69, 46);
  margin-bottom: 20px;
}
.introduction-text-paragraphs {
  margin-bottom: 20px;
}

/* .................................................................................................... */
/* container one with text in white container on the left and 2 <img/>'s on the right */

.container-two {
  /* background-color: rgb(214, 222, 240); */
  background-color: white;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1;
  /* padding-top: 3%;
  padding-bottom: 3%; */
}
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}
.slide {
  display: none;
}
.slide-image {
  width: 60%;
  height: auto;
  max-width: 100%;
  margin-left: 20%;
  border-radius: 2%;
  /* object-fit: fill;
  object-position: top; */
}

/* .................................................................................................... */
/* Text in beige container */
.container-three {
  background-color: white;
  height: cover;
  padding-top: 8%;
  padding-bottom: 10%;
  position: relative;
  top: 0;
  z-index: 2;
}
.h2-styling {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 30px;
  margin-bottom: 2%;
}
.text-container-three {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(90, 69, 46);
  font-size: 18px;
  text-align: left;
  line-height: 1.5;
  width: 51%;
  margin-left: 24.5%;
}
.h3-styling {
  font-size: 20px;
  margin-bottom: 3px;
}

.image-container {
  width: 100%;
}
.hidden {
  opacity: 0;
}
.ruches-a-lumiere {
  height: auto;
  width: 800px;
  max-width: 100%;
  margin-top: 2%;
  margin-bottom: 5%;
  border: solid 2px rgb(90, 69, 46);
}
.transhumance-abeilles {
  height: auto;
  width: 450px;
  max-width: 100%;
  margin: 2% 0 2% 24.5%;
  border: solid 2px rgb(90, 69, 46);
}
.dans-les-montagnes {
  height: auto;
  width: 370px;
  max-width: 100%;
  margin: 2% 0 2% 0;
  border: solid 2px rgb(90, 69, 46);
}
.adding-honey-to-jar {
  height: auto;
  width: 500px;
  max-width: 100%;
  margin-top: 2%;
  margin-bottom: 2%;
  border: solid 2px rgb(90, 69, 46);
}
.pollen {
  height: auto;
  width: 400px;
  max-width: 100%;
  margin-top: 2%;
  margin-bottom: 2%;
  border: solid 2px rgb(90, 69, 46);
}
.paragraph-honey-making {
  margin-bottom: 30px;
}
/* ................................................................................... */
/* footer container */
.footer-container {
  height: 100px;
  display: grid;
  position: relative;
  top: 0;
  z-index: 3;
}
.footer-styling {
  font-size: 14px;
  color: rgb(90, 69, 46);
  padding-top: 30px;
  padding-bottom: 10px;
  display: grid;
  grid-template-columns: 50%;
  background-color: rgb(255, 248, 239);
}
.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;
}

/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* @media screen and (max-width: 1066px) {
  .dans-les-montagnes {
    display: none;
  }
  .transhumance-abeilles {
    height: auto;
    width: 450px;
    max-width: 100%;
    margin: 2% 0 2% 25%;
    border: solid 2px rgb(90, 69, 46);
    display: inline-block;
  }
} */

/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* // 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%;
  }
  .menu-items.show {
    display: flex;
    flex-direction: column;
    z-index: 2;
  }
  .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 {
    background-color: white;
    position: relative;
    z-index: 1;
  }
  .text-container-one {
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1.5;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .h1-styling {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 28px;
    margin-bottom: 10px;
  }
  .first-h2-styling {
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 20px;
  }
  .introduction-text {
    font-size: 18px;
    color: rgb(90, 69, 46);
    width: 90%;
    text-align: left;
    margin-bottom: 20px;
    margin-left: 5%;
  }

  /* .................................................................................................... */
  /* container one with text in white container on the left and 2 <img/>'s on the right */
  .container-two {
    background-color: white;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
  }
  .slide {
    display: none;
  }
  .slide-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-left: 0%;
    border-radius: 0;
    /* object-fit: fill;
      object-position: top; */
  }

  /* .................................................................................................... */
  /* Text in beige container */
  .container-three {
    background-color: white;
    height: cover;
    padding-top: 20%;
    padding-bottom: 10%;
    position: relative;
    z-index: 2;
  }
  .h2-styling {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 25px;
    margin-bottom: 5%;
  }
  .text-container-three {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: rgb(90, 69, 46);
    font-size: 18px;
    text-align: left;
    line-height: 1.5;
    width: 90%;
    margin-left: 5%;
  }
  .h3-styling {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .ruches-a-lumiere {
    height: auto;
    width: 800px;
    max-width: 100%;
    margin-top: 2%;
    margin-left: 1%;
    margin-bottom: 10%;
    border: solid 2px rgb(90, 69, 46);
  }
  .image-container {
    width: 100%;
  }
  .dans-les-montagnes {
    height: auto;
    width: 370px;
    max-width: 100%;
    margin: 2% 0 2% -1%;
    border: solid 2px rgb(90, 69, 46);
  }

  .transhumance-abeilles-mobile {
    height: auto;
    width: 370px;
    max-width: 100%;
    margin: 2% 0 2% 5%;
    border: solid 2px rgb(90, 69, 46);
  }

  .adding-honey-to-jar {
    height: auto;
    width: 500px;
    max-width: 100%;
    margin-top: 2%;
    margin-bottom: 2%;
    border: solid 2px rgb(71, 62, 52);
  }
  .pollen {
    height: auto;
    width: 400px;
    max-width: 100%;
    margin-top: 2%;
    margin-bottom: 2%;
    border: solid 2px rgb(90, 69, 46);
  }
  .paragraph-honey-making {
    margin-bottom: 30px;
  }
  /* ................................................................................... */
  /* 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;
  }
}
