/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eef1ef;

  height: 8rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 2.2rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .main-nav-link:hover {
    color: #ff6f61;
  }
}

.main-nav-link:active {
  color: #ff6f61;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #000;
}

@media (hover: hover) and (pointer: fine) {
  .main-nav-link.nav-cta:hover {
    color: #000;
    background-color: #fff;
  }
}

.main-nav-link.nav-cta:active {
  color: #000;
  background-color: #fff;
}

.logged-out-item,
.logged-in-item {
  display: none;
}

.logged-out .logged-out-item {
  display: inline-block;
}

.logged-in .logged-in-item {
  display: inline-block;
}

.logged-user:link,
.logged-user:visited {
  display: inline-block;
  font-size: 1.6rem;
  color: #000;
  text-decoration: underline;
  text-decoration-color: #ff6f61;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: #eef1ef;
  padding: 6.4rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9.6rem;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.6rem !important;
}

.hero-cta {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  color: #fff;
  background-color: #ff6f61;
  text-align: center;
  /* margin-right: 1.6rem !important; */
}

.hero-cta:link,
.hero-cta:visited {
  display: inline-block;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .hero-cta:hover {
    color: #000;
    background-color: #fff;
    transition: all 0.3s;
  }
}

.hero-cta:active {
  color: #000;
  background-color: #fff;
  transition: all 0.3s;
}

.hero-more {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  color: #000;
  background-color: #fff;
  text-align: center;
}

.hero-more:link,
.hero-more:visited {
  display: inline-block;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .hero-more:hover {
    background-color: #eef1ef;

    box-shadow: inset 0 0 0 3px #ff6f61;
    transition: all 0.3s;
  }
}

.hero-more:active {
  background-color: #eef1ef;

  box-shadow: inset 0 0 0 3px #ff6f61;
  transition: all 0.3s;
}

.hero-img {
  width: 80%;
  display: block;
  margin: auto;
}

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  padding: 9.6rem 0;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #eef1ef;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.grid-steps {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 9.6rem;
}

/**************************/
/* EXPLORE SECTION */
/**************************/

.section-explore {
  padding: 9.6rem 0;
  background-color: #eef1ef;
}

.grid-explore {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem;
}

.psychedelic-type {
  position: relative;
  overflow: hidden;
}

.psychedelic-type-img {
  display: block;
  width: 100%;
  border-radius: 9px;
  opacity: 0.7;
}

@media (hover: hover) and (pointer: fine) {
  .psychedelic-type-img:hover {
    transform: scale(1.1);
    transition: all 0.3s;
  }
}

.psychedelic-type-img:active {
  transform: scale(1.1);
  transition: all 0.3s;
}

.psychedelic-type-text {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 9px;
  padding: 0.4rem;

  pointer-events: none;
}

.not-listed {
  /* display: flex; */
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  overflow: hidden;
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  box-shadow: inset 0 0 0 3px #fff;
  background-color: #eef1ef;
}

.not-listed-text {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: 0.75px;
}

.not-listed-cta {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
  transition: all 0.3s;
  line-height: 1.2;
}

.not-listed-cta:link,
.not-listed-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #000;
}

@media (hover: hover) and (pointer: fine) {
  .not-listed-cta:hover {
    color: #000;
    background-color: #fff;
  }
}

.not-listed-cta:active {
  color: #000;
  background-color: #fff;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 9.6rem 0;
  border-top: 1px solid #fff;
  background-color: #eef1ef;
}

.grid-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 9.6rem;
}

.logo-col {
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4.2rem;
}

.footer-contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #767676;
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .footer-link:hover {
    color: #555;
  }
}

.footer-link:active {
  color: #555;
}
