@font-face {
  font-family: poppins-semibold;
  src: url(/assets/fonts/Poppins-SemiBold.ttf);
}

* {
  box-sizing: border-box;
  font-size: 16px;
  font-family: "poppins-semibold";
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #699483;
}

a {
  text-decoration: none;
  color: #fff;
}

#width {
  position: fixed;
  top: 2rem;
  left: 2rem;
  font-size: 2rem;
  color: #fff;
}

nav {
  // display: none;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  color: white;
  align-items: center;
  margin-top: 3.8rem;
  margin-bottom: 0.5rem;
  padding: 0 2rem;
  // background: red;
}

// #nav-small {
//   display: none;
// }

// #nav-large {
//   display: flex;
//   justify-content: space-between;
// }

// #nav-list-md {
//   width: 100%;
// }

// #nav-list-md > span {
//   margin-left: 2rem;
//   font-size: 1.2rem;
// }

#menu-btn {
  display: none;
}

#bars > i {
  cursor: pointer;
  z-index: 2;
}

#nav-list {
  color: #fff;
  position: fixed;
  top: 0;
  left: -65%;
  z-index: 1;
  background-color: #699483;
  width: 250px;
  height: 100vh;
  padding: 0 2rem 0 2em;
  // opacity: 0;
}

#nav-list span {
  display: block;
  margin-top: 2rem;
  cursor: pointer;
}

#nav-list span:nth-child(1) {
  text-align: right;
}

#nav-list span:nth-child(1) > i {
  cursor: pointer;
}

.main-logo {
  text-align: center;
  width: 100%;
  // background: red;
}

.main-logo img {
  width: 60%;
}

#main-title {
  text-align: center;
  font-size: 3rem;
  color: #ffca4d;
  text-shadow: 3px 3px #fff, 6px 6px rgba(0, 0, 0, 0.4);
  font-weight: bold;
  padding: 1rem;
  margin-top: 1rem;
}

#video-container {
  text-align: center;
}

#video-container video {
  width: 100%;
}

.pink-divider {
  color: #3d6152;
  width: 100%;
  height: auto;
  background-image: url(/assets/images/pink-stripes.png);
  background-size: cover;
  text-align: center;
  font-size: 2.4rem;
  text-shadow: 4px 2px #fff, 6px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  position: relative;
  top: -8px;
  padding: 1.8rem 0;
}

.yellow-divider {
  color: #3d6152;
  width: 100%;
  height: auto;
  background-image: url(/assets/images/yellow-stripes.png);
  background-size: cover;
  text-align: center;
  // line-height: 100px;
  padding: 1.8rem 0;
  font-size: 2.4rem;
  text-shadow: 4px 2px #fff, 6px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  position: relative;
  top: -4px;
}

#top-flavours {
  width: 100%;
  overflow: hidden;
}

#top-flavours div:nth-child(1),
#top-flavours div:nth-child(2) {
  display: flex;
  position: relative;
  left: -20%;
}

#top-flavours div > img {
  width: 73%;
}

footer {
  background-color: #4f5757;
  text-align: center;
  color: #fff;
  padding: 1rem;
}

#about-section {
  width: 100%;
  padding: 0 2rem;
}

#about-section-left h1 {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  color: #fbd16d;
  text-shadow: -2px -2px #96685c, 2px 2px #4da0a4;
}

#about-section-left p {
  line-height: 1.5rem;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #fff;
}

#about-section img {
  width: 100%;
}

// @media screen and (min-width: 280px) {
//   #main-title {
//     font-size: 2rem;
//     text-shadow: 1px 1px #fff, 2px 2px rgba(0, 0, 0, 0.4);
//   }
// }

@media screen and (min-width: 768px) {
  nav {
    height: 100px;
    margin-top: 5.8rem;
    // background-color: red;
    // justify-content: space-between;
    margin-bottom: 2.5rem;
  }

  #nav-list {
    position: relative;
    left: 0px;
    top: 0px;
    display: inline;
    color: #fff;
    height: auto;
    width: 100%;
    background-color: transparent;
  }

  #nav-list span {
    // display: inline;
    margin-left: 2rem;
  }

  #nav-list span:nth-child(1) {
    // text-align: right;
    display: none;
  }

  #bars {
    display: none;
  }

  .main-logo {
    // width: 100%;
    // background-color: green;
    align-items: baseline;
    text-align: left;
  }

  .main-logo > img {
    max-width: 350px;
    transform: translateX(-50%);
  }

  #nav-list span {
    // margin-left: 1.5rem;
    display: inline;
    font-weight: bold;
    font-size: 1.2rem;
  }

  #social-icons img {
    margin-left: 1.5rem;
  }

  #menu-btn {
    display: block;
    background-color: #fbd16d;
    padding: 10px 4rem;
    box-shadow: 10px 10px #363654;
    border-radius: 5px;
    position: relative;
    top: 0;
    left: 0;
    transition: 0.1s all ease-in;
  }

  #menu-btn:hover {
    background-color: #8b8cd6;
    box-shadow: none;
    color: white;
    position: relative;
    top: 10px;
    left: 10px;
  }

  #menu-btn a {
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
  }

  #menu-btn a:hover {
    color: white;
  }

  #main-logo img {
    max-width: 25rem;
  }

  #main-title {
    font-size: 4rem;
    text-shadow: 2px 2px #fff, 4px 4px rgba(0, 0, 0, 0.4);
  }

  #video-container video {
    width: 100%;
  }

  .pink-divider {
    width: 100%;
    font-size: 4rem;
    text-shadow: 6px 2px #fff, 12px 4px rgba(0, 0, 0, 0.3);
  }

  #top-flavours {
    // display: flex;
    text-align: center;
  }

  #top-flavours div:nth-child(1),
  #top-flavours div:nth-child(2) {
    display: inline;
    position: relative;
    left: 0;
  }

  #top-flavours div > img {
    width: 20%;
  }

  .yellow-divider {
    width: 100%;
    font-size: 4rem;
    text-shadow: 6px 2px #fff, 12px 4px rgba(0, 0, 0, 0.3);
    padding: 0;
  }

  // #about-section {
  //   max-width: 600px;
  //   margin: auto;
  // }

  #about-section-left > p {
    line-height: 1.5rem;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  }

  #about-section img {
    min-width: 400px;
  }

  #about-section-left h1 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    // text-align: left;
  }
}

@media screen and (min-width: 999px) {
  #about-section {
    // padding: 0 10rem;
    // margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  #about-section-left,
  #about-section-right {
    max-width: 500px;
    // min-width: 350px;
    padding: 5rem 3rem;
  }

  #about-section-left > h1 {
    font-size: 3.5rem;
    text-align: left;
  }
}
