/* index-style.css */
:root {
 --bg-color: rgb(250, 252, 248);
 --secondary-bg: rgb(209 209 205);
 --button-bg: rgb(209 209 205);
 --input-field: white;
 --input-border: rgb(209 209 205);
 --placeholder-text: rgb(189, 189, 185);
 --light-mode-bg-color: rgb(250, 252, 248);
 --text-color: rgb(44, 44, 42);
 --text-color-plans: rgb(44, 44, 42);
 --light-mode-text-color: rgb(44, 44, 42);
 --navbar-bg: rgba(250, 252, 248, 0.8);
 --loader: rgba(44, 44, 42, 0.2);
 --accent-meta: rgb(110 123 139);
 --accent-highlight: rgb(249 197 106);
 --accent-hl-alt: rgb(179 146 116);
 --title-font: "Cormorant", serif;
 --body-font: "Poppins", sans-serif;
}

body.dark-mode {
 --bg-color: rgb(18 18 18);
 --text-color: rgb(250, 252, 248);
 --text-color-plans: rgb(44, 44, 42);
 --input-field: rgb(33 33 33);
 --input-border: rgb(108, 108, 107);
 --placeholder-text: rgb(177, 177, 175);
 --light-mode-bg-color: rgb(250, 252, 248);
 --light-mode-text-color: rgb(44, 44, 42);
 --navbar-bg: rgba(18, 18, 18, 0.8);
  --loader: rgba(250, 252, 248, 0.2);
 --accent-meta: rgb(185, 205, 230);
 --secondary-bg: rgb(33 33 33);
 --button-bg: rgb(48 48 48);
}

/*
#loading-screen {
 position: fixed;
 top: 0;
 left: 0;
 width: 100vw;
 height: 100vh;
 background: var(--bg-color);
 z-index: 9999;
 display: flex;
 justify-content: center;
 align-items: center;
 transform: translateY(0);
 transition: transform 1s ease-in-out;
}

#loading-logo img {
 width: 100%;
 opacity: 0;
 transform: scale(0.8);
 animation: logoFadeIn 1s forwards ease-in-out 0.5s;
}

@keyframes logoFadeIn {
 to {
  opacity: 1;
  transform: scale(1);
 }
}

#loading-screen.scroll-up {
 transform: translateY(-100%);
} */

/* Screen-reader only helper */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 1px, 1px) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: 0;
  top: -40px;
  background: var(--text-color, #222);
  color: var(--bg-color, #fff);
  padding: .5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}


html {
 scroll-behavior: smooth;
}

.page-wrapper {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.animate-on-scroll {
 opacity: 0;
 transform: translateY(50px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
 opacity: 1;
 transform: translateY(0);
}

body.loaded #loader {
 opacity: 0;
 pointer-events: none;
 visibility: hidden;
}

h1 {
 font-family: var(--title-font);
 font-weight: 300;
 line-height: 110%;
 letter-spacing: -2%;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

body {
 font-family: var(--body-font);
 color: var(--text-color);
 background-color: var(--bg-color);
 font-weight: 200;
 font-size: 1rem;
 line-height: 150%;
 letter-spacing: +0.5px;
 -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

strong,
b {
  font-weight: 400;
}

h2 {
 font-size: 2rem;
 line-height: 110%;
 letter-spacing: -2%;
}

h3 {
 font-size: 2rem;
 line-height: 110%;
 letter-spacing: -2%;
}

.meta-text p,
.plant-name p {
 font-size: 0.688rem;
 font-weight: 200;
 line-height: 160%;
 letter-spacing: +1%;
}

.body-text {
 max-width: 80ch;
}

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

.desktop-carousel {
 display: block;
}

.mobile-carousel {
 display: none;
}

.main-page {
 padding: 4rem;
}

.breadcrumb-box {
 height: 1rem;
}

.breadcrumb {
 cursor: pointer;
 font-size: 0.875rem;
 font-weight: 200;
 color: var(--text-color);
 text-decoration: none;
}

.breadcrumb:hover {
 text-decoration: underline;
}

.title {
 padding-top: 7rem;
 margin-bottom: 0.5rem;
}

.title h1 {
 font-size: 4rem;
 line-height: 110%;
 letter-spacing: -2%;
}

a {
 color: var(--text-color);
}

.subtitle {
 display: flex;
 justify-content: flex-end;
 border-bottom: 0.1px solid var(--text-color);
 padding-bottom: 1rem;
 margin-bottom: 4rem;
}

body.page-id-33 .subtitle,
body.page-id-61 .subtitle,
body.page-id-59 .subtitle {
 margin-bottom: 0;
 border-bottom: none;
}

body.page-id-33 .title,
body.page-id-61 .title,
body.page-id-59 .title {
 margin-bottom: 0;
}


.subtitle p {
 margin-top: 8rem;
 max-width: 500px;
 line-height: 1.6;
 font-size: 1rem;
 font-weight: 300;
}

.grid.is-hidden {
 opacity: 0;
 visibility: hidden;
}

.bottom-call-to-action {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 2rem;
 margin-top: 4rem;
 padding: 0 4rem;
}

.call-to-action-button {
 background-color: var(--text-color);
 color: var(--bg-color);
 padding-top: 0.3rem;
 padding-bottom: 0.3rem;
 padding-left: 0.75rem;
 padding-right: 0.75rem;
 border-radius: 50px;
 text-transform: uppercase;
 border: none;
 font-size: 0.75rem;
 text-decoration: none;
}

.call-to-action-button:hover {
 background-color: var(--button-bg);
 color: var(--text-color);
 transition: transform 0.3s ease
}

.meta-tag a {
 pointer-events: none;
 color: inherit;
 text-decoration: none;
 cursor: default;
 text-transform: uppercase;
}

.basic-content h2, 
.basic-content h3 {
 padding-top: 1.5rem;
 font-weight: 200;
}

.basic-content h3 {
 font-size: 1.5rem;
}

.basic-content p {
 padding-top: 1rem;
 padding-bottom: 1rem;
 font-weight: 100;
}

.basic-content ul {
 padding-top: 1rem;
 padding-bottom: 1rem;
 margin-left: 2rem;
}

.basic-content li {
 font-weight: 100;
}

.hl-app {
  font-family: var(--body-font);
}

#_builder-form textarea {
  border: 1px solid var(--text-color);
}

@media screen and (max-width: 1024px) {
 .desktop-carousel {
  display: none;
 }

 .mobile-carousel {
  display: block;
 }

 .main-page {
  padding: 2rem;
 }

 h3 {
  font-size: 1.5rem;
 }

 body.page-id-33 .subtitle p,
 body.page-id-61 .subtitle p,
 body.page-id-59 .subtitle p {
  max-width: 700px;
 }

}

@media screen and (max-width: 820px) {

 body.page-id-33 .subtitle p,
 body.page-id-61 .subtitle p,
 body.page-id-59 .subtitle p {
  max-width: none;
 }
}

@media screen and (max-width: 768px) {

 .title h1 {
  font-size: 3.5rem;
  line-height: 110%;
  letter-spacing: -2%;
 }

 .subtitle p {
  margin-top: 5rem;
 }

 .plant-name p {
  font-size: 0.5rem;
 }

 .bottom-call-to-action {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  gap: 1rem;
 }

  .body-no-scroll {
   overflow: hidden;
  }
}


