/* #region section-header */
.landing-page {
  max-width: 100vw;
  height: 100vh;
  background-image: url("../img/hero-img.webp");
  background-size: cover; /* makes image cover entire area */
  background-position: center; /* centers the image */
  background-repeat: no-repeat; /* prevents tiling */

  margin-bottom: 6.2rem;
}

.section-header {
  display: flex;
  height: 7.9rem;
  align-items: center;
  justify-content: space-between;

  margin: 0 auto;
  padding: 0 3.2rem;
  position: relative;
}

.logo-box {
  display: flex;
  align-items: center;
}

.header-logo {
  width: 3.9rem;
  height: 3.9rem;

  margin-right: 1.5rem;
}

.header-company-name {
  letter-spacing: 1%;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;

  gap: 2.4rem;
}

.nav-link:link,
.nav-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid transparent;
}

.nav-link:hover,
.nav-link:active {
  color: #f68b00;
  border-bottom: 1px solid #f68b00;
}

.nav-link-reset {
  color: #fff;
  border-bottom: 1px solid transparent;
}

.nav-link.nav-cta:link,
.nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #e67e22;
  border: none;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta:active {
  background-color: #cf711f;
}

.btn-mobile-nav {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  /* pointer-events: none; */
}

.icon-mobile-nav {
  background-color: #fdf2e9;
  font-size: 3.2rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.sticky .header-company-name {
  color: black;
}

.sticky .nav-link:link,
.sticky .nav-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  color: black;
  border-bottom: 1px solid transparent;
}

.sticky .nav-link:hover,
.sticky .nav-link:active {
  color: #f68b00;
  border-bottom: 1px solid #f68b00;
}

.sticky .nav-link.nav-cta:link,
.sticky .nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #e67e22;
  border: none;
}

.sticky .nav-link.nav-cta:hover,
.sticky .nav-link.nav-cta:active {
  background-color: #cf711f;
}

/* #endregion section-header */

/* #region section-hero */
.section-hero {
  display: flex;
  height: 75vh;
  align-items: center;
  margin: auto 0;
}

.hero-text-box {
  padding: 0 5.7rem;
}

/* #endregion section-hero */

/* #region section-purpose */
#section-purpose {
  scroll-margin-top: 2rem;
}

.section-purpose {
  margin-bottom: 6.2rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  scroll-margin-top: "79px";
}

.purpose {
  align-items: center;
}
.purpose .subtitle {
  margin: 0;
}

.purpose-text-box {
  position: relative;
}

.purpose-floating {
  position: absolute;
  margin-right: -9%;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

.purpose-floating p {
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  font-weight: none;
  line-height: 125%;
  letter-spacing: 12%;

  margin-bottom: 3.8rem;
}

.purpose-copy {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
}

.purpose-img-box {
  position: relative;
}

.purpose-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  width: 25%;
  z-index: 2;
}
.purpose-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  width: 25%;
  z-index: 3;
}
.purpose-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  width: 25%;
  z-index: 4;
}

.purpose-floating p:nth-child(5) {
  margin: 0 !important;
}

.plant-img {
  display: block;
  width: 100%;
}
/* #endregion section-purpose */

/* #region section-focus */
#section-focus {
  scroll-margin-top: 7rem;
}

.section-focus {
  background-color: #fef7f0;

  margin-bottom: 6.2rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.focus {
  column-gap: 6rem;
  align-items: center;
}

.focus-image-box {
  align-self: center;
}

.focus-img {
  width: 100%;
}

.focus-text-box p:last-child {
  margin: 0;
}
/* #endregion section-focus */

/* #region section-origin */
#section-origin {
  scroll-margin-top: 2rem;
}

.section-origin {
  margin-bottom: 6.2rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.origin {
  column-gap: 4.8rem;
}

.origin-text-box {
  grid-column: span 4;
  align-self: center;
}

.origin-text-box p:nth-child(4) {
  margin: 0 !important;
}

.origin-img-box {
  grid-column: span 4;
  align-self: center;
}

.beach-img {
  display: block;
  width: 100%;
}

/* #endregion section-origin */

/* #region section-cta */
.section-cta {
  max-width: 130rem;
  margin: 4.8rem auto;
  padding: 4.8rem 3.2rem;
  background-color: #eee;
  border-radius: 11px;
  background-color: #fef7f0;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.1);

  scroll-margin-top: 8rem;
}

.no-break {
  visibility: hidden;
  display: none;
}

.section-cta .cta-text {
  margin-bottom: 2.4rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.4rem;
  row-gap: 0;
}

.form-col {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.form-col.col-3 {
  gap: 0;
  display: flex;
  flex-direction: column;
}

.form-detail label {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-detail input,
textarea {
  height: 3.6rem;
  font-size: 1.8rem;
  width: 100%;
  border-radius: 9px;
}

.form-detail input {
  padding: 1.2rem;
  border: none;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.form-detail select {
  height: 3.6rem;
  font-size: 1.8rem;
  width: 100%;
  border-radius: 9px;
  border: none;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  padding-left: 1.2rem;
}

select {
  color: #bbb;
  font-style: italic;
}

select:valid {
  color: #000;
  font-style: normal;
}

.form-detail input::placeholder {
  color: #bbb;
  font-style: italic;
}

.form-detail textarea {
  height: 7.2rem;
  padding: 0.5rem 1.2rem;
  border: none;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.form-detail textarea::placeholder {
  color: #bbb;
  font-style: italic;
}

.cta-btn {
  width: 100%;
  height: 3.6rem;
  justify-self: flex-end;
  font-size: 1.8rem;
  margin-top: auto;
  border-radius: 9px;
  border: none;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  color: #fff;
  background-color: #000;
}

/* #endregion section-cta */

/* #region section-footer */
hr {
  /* border: none; */
  width: 100%;
  height: 2px;
  color: #eee;
  margin-bottom: 3.2rem;
}

.section-footer {
  max-width: 130rem;
  margin: 0 auto;

  /* margin-bottom: 6.2rem; */
  padding-top: 12.2rem;
  padding-bottom: 6.2rem;
}

.footer-logo-box {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  width: 10rem;
  height: 10rem;
}

.company-name {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: black;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

li a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

li a:hover {
  color: #f68b00;
}

.contact-list li:not(:last-child) {
  margin-bottom: 1.4rem;
}

.column-label {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 600;

  margin-bottom: 3rem;
}

.journey-text {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.copyright {
  grid-column: span 2;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 180%;
  margin: auto 0;
}

.contact-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto 0;
  height: 100%;
}

.contact-icon {
  display: inline-block;
  width: 8rem;
  height: 8rem;
}

.contact-icon:hover {
  border: 2px solid #f68b00;
  border-radius: 55px;
}

/* #endregion section-footer */
