* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
}

h1 {
  font-size: clamp(24px, 5vw, 40px);
}

p {
  font-size: 1rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #000;
}

/* This is the key property for the scroll offset */
/* It targets any element with an ID, such as the h2 tags */
[id] {
  scroll-margin-top: 84px; /* A value slightly more than the header's height */
}

.mobile-hidden {
  display: none;
}

@media (min-width: 768px) {
  .mobile-hidden {
    display: block;
  }
}

.desktop-hidden {
  display: block;
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none;
  }
}

/* Buttons */
.btn {
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 15px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}

.btn:hover {
  transform: scale(1.1);
}

.btn-primary {
  color: #fff;
  background-color: #2f872d;
}

.btn-primary:hover {
  background-color: #1f581d;
}

.btn-secondary {
  color: #fff;
  background-color: #2b3d28;
}

.btn-secondary:hover {
  background-color: #2f872d;
}

.btn-tertiary {
  color: #2f872d;
  background-color: #fff;
  border: 1px solid #2f872d;
}

.btn-tertiary:hover {
  color: #fff;
  background-color: #2f872d;
}

.btn--small {
  font-size: 0.65rem;
  font-weight: 400;
  padding: 8px 10px;
}

.btn:has(.icon) {
  padding-right: 15px;
}

.btn .icon {
  width: 24px;
  height: 24px;
  margin-left: 5px;
}

header {
  position: sticky;
  top: 0;
  background-color: rgba(21, 28, 21, 1);
  /* border-bottom: 1px solid #32482f; */
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 100%;
  padding: 15px 0;
}

.nav ul {
  list-style: none;
  font-size: 0.85rem;
  display: flex;
  color: #fff;
}

.nav > li {
  width: 100%;
}

@media (min-width: 768px) {
  .nav li {
    width: unset;
  }
}

.nav li a {
  width: fit-content;
}

.main-links {
  border-radius: 50px;
}

@media (min-width: 768px) {
  .main-links {
    /* background-color: #1e281e; */
    background-color: #273227;
  }
}

.main-links > li {
  padding: 16px 0;
}

.main-links > li > a {
  border-radius: 50px;
  padding: 30px 0;
  transition: all 500ms ease-in-out;
  color: #fff;
}

.main-links > li > a:hover {
  background-color: #3d5e3d;
  cursor: pointer;
}

@media (min-width: 768px) {
  .main-links > li > a {
    padding: 1rem 1.5rem;
  }
}

.logo {
  width: 200px;
}

/* Hide the checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger icon style */
.menu-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.75rem;
  cursor: pointer;
  display: none; /* hidden on desktop */
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .menu-icon {
    display: block; /* show hamburger on mobile */
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav > li:not(:first-child) {
    overflow: hidden;
    max-height: 0; /* start hidden */
    opacity: 0; /* invisible */
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  /* When menu is toggled on */
  #menu-toggle:checked ~ .nav > li {
    max-height: 200px; /* big enough to fit your content */
    opacity: 1;
  }

  /* Stack main links vertically */
  .main-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding: 0;
    border-radius: 0;
  }

  .main-links > li {
    padding: 10px;
    border-radius: 8px;
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Sections */
section {
  position: relative;
  z-index: 100;
}

.section-green {
  background-color: #2d412b;
}

.section-dark-green {
  background-color: #1e2c1c;
}

.section-green-gradient {
  position: relative;
  background-image: linear-gradient(
    0deg,
    rgba(54, 78, 51, 1) 0%,
    rgba(21, 28, 21, 1) 50%,
    rgba(54, 78, 51, 1) 100%
  );
  background-size: 100% 600%;
}

.section-white {
  background-color: #fff;
}

.section-light-green-gradient {
  background: #d1e0d3;
  background: linear-gradient(
    0deg,
    rgba(209, 224, 211, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.section-light-green-gradient--reverse {
  background: #d1e0d3;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(209, 224, 211, 1) 100%
  );
}

.section-tan-gradient {
  background: #cac6c0;
  background: linear-gradient(
    0deg,
    rgba(202, 198, 192, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.section-light-brown {
  background: #f7f4f0;
}

.section-a {
  position: fixed;
  width: 100%;
  z-index: 10;
  height: 85vh;
}

@media (min-width: 768px) {
  .section-a {
    height: 81vh;
  }
}

.section-b {
  position: relative;
  margin-top: 85vh;
  padding-bottom: 55px;
}

@media (min-width: 768px) {
  .section-b {
    margin-top: 81vh;
    padding-bottom: 0;
  }
}

/* Landing, above the fold */
.landing-video {
  position: absolute;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .landing-video {
    height: 81vh;
  }
}

.landing {
  position: relative;
  background-color: rgb(21, 28, 21, 0.75);
  display: flex;
  align-items: flex-start;
  min-height: 85vh;
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .landing {
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }
}

.landing-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  color: #fff;
}

@media (min-width: 768px) {
  .landing-container {
    align-items: flex-start;
  }
}

.landing__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  max-width: 80%;
}

.landing__title {
  font-family: "EB Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}

@media (min-width: 768px) {
  .landing__subtitle {
    max-width: 60%;
  }
}

.landing__title-span {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  color: #fff;
}

.landing__note {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  max-width: 75%;
}

.landing__cta {
  margin-top: 2rem;
}

/* Bio section */
.bio-headnote {
  position: absolute;
  top: 25px;
  left: 0;
  height: 75px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  background-color: #e2eae3;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  width: 100%;
  padding: 0 30px;
}

@media (min-width: 768px) {
  .bio-headnote {
    top: 50px;
    height: 50px;
    padding: 8px 0;
  }
}

.bio-headnote p {
  font-size: 0.75rem;
}

.bio-headnote a {
  min-width: 75px;
}

/* Quote */
.bio-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50vh;
  padding-top: 8rem;
}

@media (min-width: 768px) {
  .bio-quote {
    padding-top: 0;
  }
}

.bio-quote .quote {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #7c7c7c;
}

.bio-quote .name {
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.bio-quote .bold {
  font-weight: 700;
  color: #2d2d2d;
}

.bio-quote .icon {
  position: absolute;
  top: -55px;
  left: -10px;
  width: 100px;
}

@media (min-width: 768px) {
  .bio-quote .quote {
    font-size: 1.8rem;
    max-width: 80%;
  }

  .bio-quote .name {
    font-size: 1.5rem;
  }

  .bio-quote .icon {
    position: absolute;
    top: -55px;
    left: -75px;
    width: 100px;
  }
}

/* Bio and About content */
.bio-title {
  font-family: "EB Garamond", serif;
  font-size: 2.85rem;
  padding-top: 2rem;
}

.bio-main,
.about-main {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.bio-images {
  position: relative;
  width: 100%;
}

.bio__photo,
.about__photo {
  width: 100%;
}

.bio__photo {
  border-radius: 25px;
}

.bio__signature {
  position: absolute;
  bottom: 95px;
  right: 20px;
  width: 120px;
}

@media (min-width: 768px) {
  .bio__signature {
    bottom: 135px;
    right: 30px;
    width: 180px;
  }
}

.bio__content,
.about__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about__content {
    margin-top: 0;
  }
}

.bio__content {
  margin-top: 2rem;
}

.bio-main .curiosity,
.about-main .local {
  font-size: 1.5rem;
}

.bio-main .calling,
.about-main .global {
  font-family: "EB Garamond", serif;
  font-size: 2.25rem;
  font-weight: bold;
}

.bio-main .para,
.about-main .para {
  margin-top: 1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .bio-main,
  .about-main {
    flex-direction: row;
  }

  .bio-images,
  .about__photo {
    width: 50%;
  }

  .bio__content,
  .about__content {
    width: 50%;
  }

  .bio__content {
    margin: 0;
    padding-left: 50px;
  }
}

/* Info bytes */
.info-bytes {
  width: 100%;
  padding: 55px 0;
}

.info-bytes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 0.5rem;
  background-color: #364e33;
  border-radius: 10px;
  padding: 25px 15px;
}

.info-bytes li {
  display: flex;
  align-items: center;
}

.info-bytes img {
  width: 24px;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .info-bytes ul {
    flex-direction: row;
    gap: 2rem;
    padding: 15px;
  }
}

/* Infographic */
.infographic-section {
  position: relative;
  height: 1000px;
  z-index: 200;
}

.infographic {
  padding: 30px 0;
}

.infographic .subtitle {
  font-weight: 400;
  font-size: 1.5rem;
}

.infographic .title {
  font-family: "EB Garamond", serif;
  font-size: 2.25rem;
}

.infographic .content {
  line-height: 1.5;
  margin: 35px 0;
}

.infographic .table-title {
  font-weight: normal;
  margin-top: 55px;
}

.infographic .table-title .accent {
  font-family: "EB Garamond", serif;
  font-size: 1.25rem;
}

.infographic .table {
  position: relative;
  background: #e7e1d9;
  background: linear-gradient(
    0deg,
    rgba(231, 225, 217, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: 15px;
  padding: 35px;
  margin-top: 130px;
  z-index: 200;
}

.infographic .table .row {
  display: grid;
  grid-template-columns: 1fr;
}

.infographic .table dt {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
}

.infographic .table dt img {
  width: 48px;
  margin-right: 10px;
}

.infographic .table dd {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1rem;
}

.infographic .table hr {
  border: 0.5px solid #cac6c0;
  margin: 30px 0;
}

@media (min-width: 768px) {
  .infographic-section {
    height: 700px;
  }

  .infographic .table-title .accent {
    font-size: 1.55rem;
  }

  .infographic .table .row {
    grid-template-columns: 2fr 5fr;
  }

  .infographic .table dd {
    font-weight: 1rem;
    margin: 0;
  }
}

/* Foot content */
.foot-content {
  padding-top: 630px;
}

.foot-content .title {
  font-weight: 400;
}

.foot-content .subtitle {
  font-family: "EB Garamond", serif;
  font-size: 2.25rem;
}

.foot-content .para {
  margin-top: 1rem;
  line-height: 1.5;
}

.foot-content .icons-with-text {
  grid-template-columns: repeat(2, 1fr);
}

.bio-foot-content {
  padding-top: 55px;
}

.bio-foot-content .icons-with-text {
  grid-template-columns: 1fr;
}

.icons-with-text {
  display: grid;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-top: 100px; /* Compensate with pan up animation*/
}

.icons-with-text div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.icons-with-text img {
  width: 48px;
}

.icons-with-text p {
  font-weight: 600;
  margin-top: 10px;
}

.foot-content .icons-with-text {
  margin-top: 150px; /* Compensate with pan up animation*/
}

@media (min-width: 768px) {
  .foot-content {
    padding-top: 250px;
  }

  .foot-content .icons-with-text {
    grid-template-columns: repeat(4, 1fr);
  }

  .bio-foot-content .icons-with-text {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Categories */
.categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 55px 0;
}

.categories .content {
  width: 100%;
}

.categories .title {
  font-weight: 400;
}

.categories .subtitle {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.categories .para {
  line-height: 1.5;
  margin-top: 2rem;
}

.categories .btn {
  width: 165px;
  margin-top: 2rem;
}

.categories .cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .categories .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.categories .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000;
  background-color: #fff;
  border-radius: 10px;
  padding-left: 30px;
  padding-top: 30px;
  transition: all 500ms ease-in-out;
  overflow: hidden;
}

.categories .card:hover {
  transform: scale(1.1);
}

.categories .card .text {
  padding-right: 30px;
}

.categories .card h3 {
  font-size: 1rem;
}

.categories .card p {
  font-size: 0.85rem;
  margin-top: 10px;
}

.categories .card img {
  width: 100%;
}

@media (min-width: 768px) {
  .categories {
    flex-direction: row;
  }

  .categories .content {
    width: 40%;
    padding-right: 30px;
  }

  .categories .cards-container {
    width: 60%;
    margin-top: 0;
  }
}

.footnote {
  font-weight: bold;
  font-style: italic;
  color: #fff;
  text-align: center;
  padding: 25px;
}

.footnote p {
  font-size: 0.85rem;
}

.footnote .para {
  font-family: "EB Garamond", serif;
  font-size: 1rem;
}

/* Consultation */
.consultation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 110px 0 55px;
}

.consultation .text {
  max-width: 100%;
}

@media (min-width: 768px) {
  .consultation {
    flex-direction: row;
    align-items: center;
  }

  .consultation .text {
    max-width: 60%;
  }
}

.consultation .text h2 {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
}

.consultation .text p {
  margin-top: 2rem;
  line-height: 1.5;
}

.consultation a {
  width: fit-content;
}

.consultation-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 55px;
}

@media (min-width: 768px) {
  .consultation-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.consultation-cards .card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  font-size: 1rem;
  color: #000;
  background-color: #e2eae3;
  border-radius: 10px;
  padding-left: 30px;
  padding-top: 30px;
  min-height: 400px;
  transition: all 500ms ease-in-out;
}

.consultation-cards .card:hover {
  transform: scale(1.1);
}

.consultation-cards .card .text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 30px;
}

.consultation-cards .card .text .content {
  line-height: 1.5;
}

.consultation-cards .card .text .content.para1 {
  max-width: 75%;
}

.consultation-cards .card .text .content.para2 {
  max-width: 50%;
}

.consultation-cards .card img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 200px;
}

/* Products */
.products {
  padding: 110px 0;
}

.products .title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.products .subtitle {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
}

.products .icons-and-para {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}

.products .icons-and-para div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.products .icons-and-para img {
  width: 56px;
}

@media (min-width: 768px) {
  .products .icons-and-para {
    flex-direction: row;
  }
}

.products .products-title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .products .products-title {
    flex-direction: row;
  }
}

.products-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .products-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid #e2eae3;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .product-card {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.product-card .product-image {
  width: 100%;
}

.product-card .category {
  color: #8d8d8d;
}

.product-card .name {
  font-size: 1.25rem;
}

.product-card .description {
  font-weight: 400;
  font-size: 1rem;
}

.product-card .ratings-image {
  width: 50%;
}

.product-card .price-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.product-card .price {
  display: flex;
  align-items: start;
  font-weight: 600;
  font-size: 1.25rem;
}

.product-card .product-link img {
  width: 32px;
  filter: invert(100%);
}

.product-card .currency {
  font-size: 1rem;
  margin-right: 0.25rem;
}

/* Instagram */
.instagram {
  padding: 110px 0;
}

.instagram .title {
  font-size: 2rem;
  font-weight: 400;
}

.instagram .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.instagram .content .para {
  width: 100%;
}

.instagram .content .buttons {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .instagram .content {
    flex-direction: row;
  }

  .instagram .content .para {
    width: 60%;
  }
}

/* Footer */
.footer {
  position: relative;
  color: #fff;
  background-color: #364e33;
  padding: 110px 0;
  z-index: 200;
}

.footer .head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer .head .logos img {
  max-width: 250px;
  margin-right: 2rem;
  margin-top: 1rem;
}

.footer-cta {
  display: flex;
}

.footer .title-house {
  font-family: "EB Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer .head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0rem;
    text-align: left;
  }

  .footer-cta {
    display: block;
  }

  .footer .title-house {
    text-align: left;
    margin-bottom: 0;
  }
}

.footer-nav {
  margin-top: 2rem;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .footer-nav {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }

  .footer-nav ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-nav ul li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav ul li a {
  font-weight: 400;
  color: #fff;
}

.footer-nav ul li a img {
  width: 16px;
  margin-right: 0.5rem;
}

.footer-nav ul li .link-title {
  color: #93b38f;
}

.footer-nav .title-name {
  font-family: "EB Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-nav .title-address {
  font-size: 1rem;
}

/* Instagram widget */

.eapps-instagram-feed {
  margin-top: 3rem;
}

.es-load-more-button {
  display: none !important;
}

a[href*="elfsight.com/instagram-feed-instashow"] {
  display: none !important;
}
