#home-header {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100vw;
  height: 700px;
  overflow: hidden;

  background-image: url("/assets/background-8ec7c34b.png");
  background-repeat: no-repeat;
  background-size: cover;
}
/*
#home-header::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100vw;
  height: 700px;
  background: radial-gradient(#ffffff, #ffffff00)
}
*/
#logo-hdr {
  width: 400px;
  transition: scale 0.2s ease;
}

#logo-hdr:hover {
  scale: 1.02;
}

#home-header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  margin-top: -50px;
}

#home-header-text h1 {
  font-size: 4em;
  font-weight: 400;
  margin: 0;
  color: rgb(10, 41, 7);
}

#home-header-text span {
  font-size: 1.8em;
  font-weight: 300;
  color: rgb(54, 18, 8);
}

#home-header-text span:nth-child(3) {
  font-size: 1.2em;
  color: black;
  text-align: center;
}

#home-header-btn {
  display: flex;
  gap: 50px;
  justify-content: center;
}

#home-header-btn a {
  padding: 10px 20px;
  border: thin solid var(--button-green);
  border-radius: 10px;
  font-size: 1.2em;
  text-decoration: none;
}

#home-header-btn a:first-child {
  background-color: var(--button-green);
  color: aliceblue;
  opacity: 0.75;
}

#home-header-btn a:last-child {
  background-color: aliceblue;
  color: black;
}

@media (max-width:800px) {
  #home-header {
    height: auto;
    padding-bottom: 20px;
  }

  #logo-hdr {
    width: 350px;
  }

  #home-header-text span {
    text-align: center;
    margin: 0 10px;
  }
}

@media (max-width:550px) {
  #home-header-text h1 {
    font-size: 3em;
    text-align: center;
  }

  #home-header-text span {
    font-size: 1.5em;
  }
}

@media (max-width:450px) {
  #home-header-btn {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
}

/* WELCOME*/
#welcome-cont {
  display: flex;

  width: 100vw;
  height: 550px;
  overflow: hidden;
  position: relative;
}

#welcome-cont::after {
  position: absolute;
  content: "";
  inset: 0;

  background-image: url("/assets/weed-30a7cdcc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}

.welcome-semicont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 2;

  width: 50%;
}

#welcome-basket {
  border-radius: 25px;
  margin-top: 2em;
}

.welcome-semicont span {
  font-size: 1.5em;
  font-weight: 300;
  font-style: italic;
  color: rgb(10, 41, 7);
}

.welcome-semicont a {
  padding: 5px 15px;
  border: thin solid var(--button-green);
  background-color: var(--button-green);
  color: aliceblue;
  border-radius: 10px;
  font-size: 1.2em;
  text-decoration: none;
  opacity: 0.75;
}

#welcome-text {
  width: 75%;
  text-align: left;
  opacity: 0.75;
}

.h1-cont-heading {
  font-weight: 400;
  color: rgb(10, 41, 7);
}

.h2-cont-heading {
  font-weight: 400;
  margin: 0;
  color: rgb(10, 41, 7);
}

@media (min-width:1760px) {
  #welcome-text p {
    font-size: 1.2em;
  }
}

@media (max-width:1140px) {
  #welcome-text p {
    font-size: 0.9em;
  }

  #welcome-basket {
    width: 400px;
  }
}

@media (max-width:1000px) {
  #welcome-text p {
    font-size: 0.8em;
  }
}

@media (max-width:800px) {
  #welcome-cont {
    flex-direction: column-reverse;
    align-items: center;
    height: auto;
    padding-bottom: 20px;
  }

  .welcome-semicont {
    width: 100%;
  }

  #welcome-text p {
    font-size: 1em;
  }
}

@media (max-width:500px) {
  #welcome-basket {
    width: 300px;
  }

  .welcome-semicont span {
    font-size: 1.2em;
  }

  #welcome-text h1 {
    text-align: center;
  }
}

/* PRODUCT TEASER */

#product-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100vw;
  height: auto;
  padding-bottom: 20px;
  overflow: hidden;
}

#product-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.75;
}

#product-teaser span {
  font-style: italic;
  font-weight: 300;
  font-size: 1.1em;
  text-align: center;
}

#home-product-card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}

.home-card {
  width: 340px;
  height: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 16px 0 rgba(0,0,0,0.25);
  background-color: rgba(0,0,0,0.05);
  transition: background-color 0.2s ease;
}

.home-shop-link {
  text-decoration: none;
  color: black;
}

.home-card:hover {
  background-color: rgba(0,0,0,0.1);
}

.home-card-picture {
  width: 340px;
  height: 70%;
  border-radius: 15px 15px 0 0;
  margin-top: -5px;
}

.home-card-text {
  display: flex;
  flex-direction: column;
  margin: 10px 20px;
  width: 300px;
  gap: 10px;
  opacity: 0.8;
  height: fit-content;
}

.home-card-span {
  text-align: left !important;
}

#home-product-link {
  margin-top: 20px;
  padding: 10px 25px;
  color: aliceblue;
  background-color: var(--button-green);
  border-radius: 10px;
  font-size: 1.2em;
  text-decoration: none;
  opacity: 0.75;
}

@media (max-width:500px) {
  #product-text h1 {
    text-align: center;
    margin: 0 10px;
  }

  #product-text span {
    margin: 0 10px;
  }

  .home-card {
    width: 300px;
  }

  .home-card-picture {
    width: 300px;
  }
}

/* TUTORIAL */
#tutorial-cont {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100vw;
  height: 400px;
  overflow: hidden;
  position: relative;
}

#tutorial-cont::after {
  position: absolute;
  content: "";
  inset: 0;
  margin-top: -200px;

  background-image: url("/assets/big-whearornam-c31f9c92.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}

#tutorial-text-cont {
  opacity: 0.75;
  z-index: 2;
}

.svg-tut {
  width: 32px;
  height: 32px;
}

.tut-text {
  display: flex;
  align-items: center;
  gap: 0.75em;
  font-size: 1.2em;
  margin: 10px 0;
  margin-left: 100px;
}

@media (max-width:500px) {
  #tutorial-text-cont h1 {
    text-align: center;
  }

  .tut-text {
    margin-left: 0;
    justify-content: center;
  }
}

/* About */
#home-about-cont {
  display: flex;
  justify-content: space-evenly;

  width: 100vw;
  height: 550px;
  overflow: hidden;
}

/* background image url pic from them?
  like around the text
*/

#home-about-text h1,
#home-about-text p {
  opacity: 0.75;
}

@media (min-width:1760px) {
  #home-about-text p {
    font-size: 1.2em;
  }
}