@import url("/css/fonts.css");
@import url("/css/icons.css");
@import url("/css/utils.css");

#hero {
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 800px;
  padding-top: 75px;
}

#hero h1 {
  max-width: 800px;
}

#hero h2 {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 300;
  padding: 5px;
}

#hero .showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: var(--section-margin);
  max-width: var(--section-max-width);
}

#hero .hero-img-container img {
  width: 100%;
  height: 100%;
  max-width: 500px;
  object-fit: cover;
}

#hero .hero-container {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
}

#hero .features-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#hero .features-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

#hero .features-item span {
  color: var(--secondary-color);
}

#hero .features-item img {
  max-width: 12px;
}

#hero .check-icon,
#hero .shield-check-icon {
  background-color: var(--secondary-color);
}

#hero .feature-price-container {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

#hero .feature-price {
  display: flex;
  align-items: center;
}

#hero .feature-price span {
  font-size: 18px;
  font-weight: 500;
  padding-top: 12px;
}

#hero .feature-price h3 {
  font-size: 42px;
  font-weight: 500;
}

#hero .guarantee {
  display: flex;
  align-items: center;
  margin-top: 8px;
  gap: 5px;
}

#hero .guarantee span {
  font-size: 14px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline;
  }

  .menu-toggle.show,
  .menu-toggle-close.show {
    display: inline;
  }

  .menu-toggle.hide,
  .menu-toggle-close.hide {
    display: none;
  }

  .nav-menu.show {
    transform: translateX(0);
    overflow-y: auto;
  }

  .nav-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    background-color: var(--dark-purple);
    min-height: 100%;
    gap: 0;
    top: 0;
    right: 0;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 75px;
    height: 100%;
  }

  .nav-menu a {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 400;
    border-bottom: solid 1px var(--primary-color);
    padding: 15px 25px;
  }

  #hero .showcase {
    margin-top: 75px;
  }

  #hero h1 {
    font-size: 26px;
  }

  #hero h2 {
    font-size: 18px;
  }
}
