@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto&display=swap");

:root {
  --blue: #2eafff;
  --yellow: #fde005;
  --green: #9acd32;
  --red: #ff6347;
  --darkblue: #6495ed;
  --purple: #a705fd;

  --dimmed-blue: #0c9ddd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 220px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: var(--blue);
}

header {
  z-index: 100;
  background-color: var(--blue);
  position: fixed;
  top: 0%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 1s;
}

.header-logo {
  z-index: 9999;
  height: 60px;
  margin: 10px;
}

.hamburger-menu {
  background-color: inherit;
}

.hamburger-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.hamburger-menu li {
  list-style: none;
}

.hamburger-menu li a {
  text-decoration: none;
  color: white;
  padding: 1rem;
  display: block;
}

.hamburger-menu li:hover {
  background-color: var(--dimmed-blue);
}

/* .menu-toggle-button {
  position: absolute;
  top: .75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
} */

.menu-toggle-button {
  position: absolute;
  right: 0;
  display: none;
  border-width: 0;
  background-color: inherit;
}

.menu-toggle-button:active {
  background-color: var(--dimmed-blue);
}

.hamburger-menu-icon {
  padding: 20px;
  color: white;
  font-size: 32px;
}

@media screen and (max-width: 600px) {
  .menu-toggle-button {
    display: flex;
  }

  .hamburger-menu {
    display: none;
    width: 100%;
  }

  header {
    flex-direction: column;
  }

  .hamburger-menu ul {
    width: 100%;
    flex-direction: column;
  }

  .hamburger-menu li {
    text-align: center;
    transform: translateY(-10px);
    transition: 150ms ease-in-out;
  }

  .hamburger-menu li a {
    padding: 0.5rem 1rem;
  }

  .hamburger-menu.active {
    display: flex;
  }

  .hamburger-menu.active li {
    transform: translateY(0px);
  }
}

.dropdown-menu {
  position: absolute;
  /* top: 100%; */
  width: 100%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 150ms ease-in-out;
}

.hamburger-menu > button:focus + .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}

/* Main Menu Link */
.main_menu_link {
  margin: 0 20px;
  color: white;
}
.main_menu_link:link {
  text-decoration: none;
}
.main_menu_link:visited {
  text-decoration: none;
}
.main_menu_link:hover {
  text-decoration: underline;
}
.main_menu_link:active {
  text-decoration: none;
}

/* Section */
section {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: white;
  /* scroll-snap-align: start; */
  min-height: calc(100vh - 80px);
}

/* Home */
#home {
  background: var(--blue);
  flex-direction: column;
  margin-top: 80px;
  padding-bottom: 20px;
}

#home h1 {
  color: var(--yellow);
  text-align: left;
}

#home div#home-text-wrapper {
  margin: 0 20px;
}

.hero-image {
  max-height: 50vh;
  width: 80%;
  object-fit: contain;
}

.home-store-logo {
  max-width: 100px;
  width: 30%;
}

/* About */
#about {
  flex-direction: column;
  justify-content: space-between;
  color: gray;
}

.about-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.about-desc {
  margin: 0 20px;
}

#about video {
  max-width: 800px;
}

.video-zone-deco {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.video-zone-deco-img {
  width: 100px;
}

/* Stox2Go Benefits */
#stox2go-benefit {
  background-color: var(--blue);
  color: var(--yellow);
  flex-direction: column;
  padding: 50px 20px;
}

.stox2go-benefit-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#stox2go-benefit h1 {
  color: var(--yellow);
}

.stox2go-benefit-content {
  display: flex;
  flex-wrap: wrap;
}

.stox2go-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 50%;
  padding: 10px;
}

.stox2go-benefit-text {
  text-align: center;
}

.hexagon {
  /* margin: 20px 20px 0 0; */
  width: 24px;
  height: 24px;
}

.benefit-title {
  font-weight: bold;
}

.benefit-description {
  color: white;
}

/* 
.hexagon {
  width: 100px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
}

.hexagon:before,
.hexagon:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 2px solid transparent;
}

.hexagon:before {
  transform: rotate(60deg);
}

.hexagon:after {
  transform: rotate(-60deg);
} */

#about div#about-text-wrapper {
  display: flex;
  justify-content: stretch;
  flex-direction: column;
}

#about span {
  color: yellow;
}

/* Product */
#product {
  flex-direction: column;
  padding: 50px 20px;
}

.product-img {
  max-height: 70vh;
  width: 100%;
  object-fit: contain;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  min-width: calc(100vw - 40px);
  position: relative;
  margin: auto;
}

.mySlides {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

#product span.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Contact */
#contact {
  color: black;
  flex-direction: column;
  justify-content: space-between;
}

.contact-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.contact-qrcode-text {
  display: none;
}

.contact-deco-img-side {
  display: none;
  width: 160px;
  object-fit: contain;
  margin-right: 20px;
}

.contact-whatsapp-qrcode {
  display: none;
  width: 250px;
  object-fit: contain;
}

.contact-card {
  width: calc(100vw - 40px);
  margin: 20px;
  padding: 20px;
  background: var(--blue);
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}

.contact-card:hover {
  background: var(--darkblue);
}

.contact-icon {
  color: white;
  margin-right: 10px;
}

.contact-card p {
  margin: 0;
  color: white;
}

.contact-deco {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.contact-deco-img {
  width: 80px;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* scroll-snap-align: start; */
  background: var(--blue);
  color: white;
  min-height: 50px;
  padding: 20px;
  font-family: sans-serif;
  font-size: 14px;
}

@media screen and (min-width: 800px) {
  html {
    scroll-padding-top: 80px;
  }

  .hamburger-menu li {
    height: 80px;
    display: flex;
    align-items: center;
  }

  .about-wrapper,
  .stox2go-benefit-wrapper,
  .contact-wrapper {
    max-width: 1000px;
    width: 100%;
  }

  .video-zone-deco-img {
    width: 200px;
  }

  .hexagon {
    width: 50px;
    height: 50px;
  }

  .stox2go-benefit-card {
    flex: 33%;
  }

  .contact-qrcode-text {
    display: block;
  }

  .contact-item-wrapper {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-content-wrapper {
    display: flex;
    flex-direction: row;
  }

  .contact-card {
    max-width: 300px;
  }

  .contact-deco-img-side,
  .contact-whatsapp-qrcode {
    display: block;
  }

  .contact-deco {
    justify-content: flex-end;
  }

  .contact-deco-img {
    width: 160px;
  }

  .contact-deco-img-down {
    display: none;
  }

  footer {
    flex-direction: row;
    padding: 10px;
  }
}

/* @media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
    height: 100px;
    justify-content: center;
  }

  #contact #contact-wrapper {
    flex-direction: column;
  }
}

@media screen and (min-width: 600px) {
  html {
    scroll-snap-type: y mandatory;
  }

  h1 {
    font-size: 48px;
  }

  #logo {
    height: 150px;
  }

  section {
    height: calc(100vh - 200px);
  }

  #home {
    flex-direction: row;
  }

  #about {
    justify-content: flex-end;
    background-size: 100% 100%;
    background-attachment: scroll;
  }

  #about h1 {
    text-align: end;
  }

  #about p {
    width: 45vw;
  }

  #about div#about-text-wrapper {
    flex-direction: row;
  }

  #about div#about-p-wrapper {
    padding-right: 5vw;
  }

  #product img.product-image {
    width: 49vw;
  }
}

@media screen and (max-width: 800px) {
  #product #product-header {
    margin: auto;
    width: 100vw;
    text-align: center;
    padding: 20px 0;
  }
} */

/* Mobile */
/* @media screen and (min-width: 800px) {
  header {
    flex-direction: row;
    align-items: flex-end;
  }

  .hero-image {
    height: 80vh;
  }

  #product {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 200px);
  }

  #product img.product-image {
    height: 80%;
    width: unset;
  }
} */
