@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('assets/fonts/AktivGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('assets/fonts/AktivGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
}

@font-face {
  font-family: 'Gelato Luxe';
  src: url('assets/fonts/GelatoLuxe.woff2') format('woff2');
  font-weight: 400;
}

:root {
  --green: #016938;
  --dark-green: #00703c;
  --light-green: #59b43f;
  --text: #333;
  --container: 1600px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Aktiv Grotesk', Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: relative;
  z-index: 10;
}

.header-top {
  min-height: 160px;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}

.header-top::before {
  content: '';
  position: absolute;
  left: -70px;
  top: -235px;

  width: 564px;
  height: 564px;

  border-radius: 50%;
  background: #fff;
  filter: blur(43.5px);

  z-index: 1;
  pointer-events: none;
}

.logo-link {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 20;
}

.site-logo {
  width: 617px;
  height: 286px;
  aspect-ratio: 192/89;
}

.header-info {
  width: 100%;
  padding-left: 650px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tagline {
  margin: 0;
  color: #016938;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 300;
}

.phone {
  color: #016938;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav {
  position: relative;
  height: 62px;
  z-index: 5;
  background: transparent;
  margin-bottom: -62px;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 760px;
  padding-top: 62px;
  overflow: visible;
}

.main-nav::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;

  width: min(1611px, calc(100% - 520px));
  height: 62px;

  background: linear-gradient(
    90deg,
    rgba(159, 194, 71, 0.5) 0%,
    rgba(31, 134, 62, 0.5) 100%
  );

  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.logo-link {
  position: absolute;
  left: 0;
  top: -7px;
  z-index: 20;
}

.site-logo {
  position: relative;
  z-index: 25;
}

.nav-link {
  height: 100%;
  min-width: 310px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  text-decoration: none;
}

.nav-link img {
  width: 70px;
  height: 60px;
  object-fit: contain;
}

.nav-separator {
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}

.nav-note {
  min-width: 350px;
  margin: 0;
  padding-left: 45px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

/* Hero */

.hero {
  position: relative;
  min-height: 525px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(17, 122, 62, 0.18) 38%,
      rgba(0, 104, 55, 0.28) 100%
    ),
    url('assets/img/hero-bamboo.jpg') center / cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 170px;

  background: linear-gradient(
    0deg,
    rgba(0, 119, 61, 0.75),
    rgba(0, 119, 61, 0)
  );

  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding-top: 130px;
}

.hero-card {
  width: 600px;
  min-height: 295px;
  padding: 32px 36px 28px 70px;
  margin-left: 60px;
  position: relative;
  border-radius: 19px 19px 19px 19px;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(2px);
}

.hero-card-icon {
  position: absolute;
  left: -28px;
  top: 0;
  width: 74px;
}

.hero-card p {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.55;
}

.hero-card strong {
  color: #016938;
}

.frog-img {
  position: absolute;
  left: 130px;
  bottom: -70px;

  width: 310px;

  z-index: 6;
}

.slider-dots {
  display: none;
  /* position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff; */
}

/* .dot {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.dot.active {
  background: #fff;
}

.arrow {
  font-size: 20px;
  line-height: 1;
} */

/* Plants */

.plants-section {
  padding: 80px 0 72px;
  background: #fff;
}

.plants-grid {
  display: grid;
  grid-template-columns: 289px minmax(260px, 1fr) 289px minmax(260px, 1fr);
  align-items: center;
  column-gap: 54px;
  row-gap: 34px;
}

.plant-image {
  width: 289px;
  height: 425px;
}

.plant-content {
  max-width: 410px;
}

.script-title {
  margin: 0 0 10px;
  color: #016938;
  font-family: 'gelato-luxe', sans-serif;

  font-weight: 400;
  font-size: 100px;
  line-height: 0.9;
  font-weight: 400;
  -webkit-text-stroke-width: 9.91px;
  -webkit-text-stroke-color: #fff;
  paint-order: stroke fill;
}

.plant-content p,
.other-content p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.55;
}

/* Other Plants */
.other-section {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  background: url('assets/img/bamboo-fence-bg.jpg') center / cover no-repeat;
}

.other-bg {
  display: none;
}

.flowers-img {
  right: -70px;
  bottom: 0;
  top: auto;
  width: 310px;
}

.other-inner {
  position: relative;
  min-height: 545px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.other-card {
  position: relative;
  width: 1120px;
  min-height: 335px;
  margin-left: 80px;
  padding: 22px 44px 78px 22px;

  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 42px;
  align-items: center;

  border-radius: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.86) 0%,
    rgba(255, 255, 255, 0.78) 62%,
    rgba(255, 255, 255, 0.28) 100%
  );
}

.other-image img {
  width: 100%;
  height: 295px;
  object-fit: cover;
  border-radius: 18px;
  border: 12px solid #fff;
}

.other-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.other-content .script-title {
  margin: -28px 0 22px;
  color: #016938;
  font-size: 92px;
  line-height: 0.9;
}

.other-content p {
  margin: 0 0 24px;
  font-size: 22px;
  line-height: 1.52;
}

.green-text {
  color: #016938;
  font-weight: 700;
}

.inventory-btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);

  min-height: 64px;
  padding: 9px 40px 9px 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border: 5px solid #fff;
  border-radius: 13px;
  background: #007a3d;
  color: #fff;

  font-size: 26px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.inventory-btn img {
  width: 42px;
  height: 42px;
}

/* Footer */

.site-footer {
  background: #00703c;
  color: #fff;
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
  font-size: 15px;
}

.powered {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.powered img {
  width: 180px;
}

/* Tablet */

@media (max-width: 1200px) {
  .site-logo {
    width: 360px;
  }

  .header-info {
    padding-left: 410px;
  }

  .tagline {
    font-size: 25px;
  }

  .phone {
    font-size: 25px;
  }

  .plants-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .plant-content {
    max-width: none;
  }

  .other-card {
    width: 760px;
    grid-template-columns: 300px 1fr;
  }

  .flowers-img {
    width: 390px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .header-top {
    min-height: auto;
    padding: 18px 0 16px;
    flex-direction: column;
    gap: 14px;
  }

  .logo-link {
    position: static;
  }

  .site-logo {
    width: 310px;
    max-width: 100%;
    margin: 0 auto;
  }

  .header-info {
    padding-left: 0;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .tagline {
    font-size: 21px;
  }

  .phone {
    font-size: 24px;
  }

  .main-nav {
    height: auto;
  }

  .nav-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    gap: 8px;
  }

  .nav-link {
    min-width: auto;
    width: 100%;
    height: auto;
    padding: 8px 15px;
    font-size: 28px;
  }

  .nav-separator {
    display: none;
  }

  .nav-note {
    min-width: auto;
    padding-left: 0;
    text-align: center;
    font-size: 16px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.75),
        rgba(0, 104, 55, 0.55)
      ),
      url('assets/img/hero-bamboo.jpg') center / cover no-repeat;
  }

  .hero-inner {
    min-height: 620px;
    padding-top: 60px;
  }

  .hero-card {
    width: 100%;
    margin-left: 0;
    padding: 28px 24px 24px 58px;
  }

  .hero-card p {
    font-size: 16px;
  }

  .frog-img {
    left: 20px;
    bottom: -18px;
    width: 190px;
  }

  .slider-dots {
    bottom: 38px;
  }

  .plants-section {
    padding: 55px 0 45px;
  }

  .plants-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .plant-image img {
    height: 280px;
  }

  .script-title {
    font-size: 64px;
  }

  .plant-content p,
  .other-content p {
    font-size: 16px;
  }

  .other-inner {
    min-height: auto;
    padding: 50px 0 150px;
  }

  .other-card {
    width: 100%;
    margin-left: 0;
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .other-image img {
    height: 240px;
  }

  .other-content .script-title {
    font-size: 58px;
  }

  .inventory-btn {
    width: 100%;
    justify-content: center;
    font-size: 17px;
    padding-right: 12px;
  }

  .flowers-img {
    right: -45px;
    width: 300px;
  }

  .footer-inner {
    padding: 20px 0;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1500px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .site-logo {
    width: 520px;
    height: auto;
  }

  .header-info {
    padding-left: 560px;
  }

  .tagline {
    font-size: 26px;
  }

  .phone {
    font-size: 26px;
  }

  .main-nav::before {
    width: min(1611px, calc(100% - 455px));
  }

  .nav-link {
    min-width: 280px;
    font-size: 30px;
    padding: 0 24px;
  }

  .nav-link img {
    width: 58px;
    height: 50px;
  }

  .nav-note {
    min-width: 310px;
    padding-left: 30px;
    font-size: 17px;
  }
}

@media (max-width: 1300px) {
  .site-logo {
    width: 430px;
    height: auto;
  }

  .header-top {
    min-height: 130px;
  }

  .header-info {
    padding-left: 460px;
    gap: 24px;
  }

  .tagline {
    font-size: 22px;
  }

  .phone {
    font-size: 22px;
  }

  .main-nav::before {
    width: min(1611px, calc(100% - 380px));
  }

  .nav-link {
    min-width: 235px;
    font-size: 26px;
    padding: 0 18px;
  }

  .nav-note {
    min-width: 260px;
    padding-left: 22px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 30px);
  }

  .site-header {
    background: #fff;
  }

  .header-top {
    min-height: auto;
    padding: 18px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .header-top::before {
    display: none;
  }

  .logo-link {
    position: static;
    display: block;
    width: 100%;
  }

  .site-logo {
    width: 300px;
    height: auto;
    margin: 0 auto;
  }

  .header-info {
    width: 100%;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .tagline {
    max-width: 320px;
    font-size: 22px;
    line-height: 1.2;
    color: #016938;
  }

  .phone {
    font-size: 22px;
  }

  .main-nav {
    height: auto;
    margin-bottom: 0;
    background: linear-gradient(
      90deg,
      rgba(159, 194, 71, 0.85) 0%,
      rgba(31, 134, 62, 0.85) 100%
    );
  }

  .main-nav::before {
    display: none;
  }

  .nav-inner {
    width: 100%;
    height: auto;
    padding: 12px 15px;
    flex-direction: column;
    gap: 6px;
  }

  .nav-link {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0;
    font-size: 28px;
    line-height: 1.1;
  }

  .nav-link img {
    width: 38px;
    height: 38px;
  }

  .nav-separator {
    display: none;
  }

  .nav-note {
    min-width: 0;
    padding-left: 0;
    font-size: 15px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
    overflow: visible;
  }

  .hero-inner {
    min-height: 560px;
    padding-top: 55px;
  }

  .hero-card {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 28px 22px 24px 58px;
  }

  .hero-card-icon {
    left: -18px;
    top: 18px;
    width: 58px;
  }

  .hero-card p {
    font-size: 16px;
  }

  .frog-img {
    left: 24px;
    bottom: -30px;
    width: 190px;
  }

  .slider-dots {
    bottom: 38px;
  }
}

.other-section {
  min-height: auto;
}

.other-inner {
  min-height: auto;
  padding: 50px 0;
}

.other-card {
  width: 100%;
  margin-left: 0;
  padding: 18px 18px 90px;
  grid-template-columns: 1fr;
  gap: 20px;

  background: rgba(255, 255, 255, 0.78);
}

.other-image img {
  height: 240px;
}

.other-content .script-title {
  margin-top: -40px;
  font-size: 100px;
}

.other-content p {
  font-size: 20px;
}

.inventory-btn {
  font-size: 27px;
  white-space: normal;
}

.other-section {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  background: url('assets/img/bamboo-fence-bg.jpg') center / cover no-repeat;
}

.other-inner {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.other-card {
  /* position: relative; */
  width: 1420px;
  min-height: 335px;
  margin-left: 80px;
  padding: 22px 44px 25px 22px;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 42px;
  align-items: center;
  background: linear-gradient(90deg, #fff 49.49%, rgba(255, 255, 255, 0) 100%);
  border-radius: 20px 0 0 20px;
}

.other-image img {
  width: 425px;
  height: 371px;
  object-fit: cover;
  border: 12px solid #fff;
  border-radius: 18px;
}

.other-content {
  max-width: 550px;
}

.flowers-img {
  position: absolute;

  right: -80px;
  top: 20px;

  width: 750px;

  z-index: 6;
  pointer-events: none;
}

.other-section {
  position: relative;
  overflow: hidden;
}

.other-inner {
  position: static;
}

.other-card {
  position: relative;
  z-index: 2;
}

/* ===============================
   RESPONSIVE STEP 1: below 1600px
================================ */
@media (max-width: 1750px) {
  .flowers-img {
    top: 100px;
    width: 550px;
    right: -70px;
  }
}

@media (max-width: 1600px) {
  .container {
    width: calc(100% - 60px);
  }

  .site-logo {
    width: 520px;
    height: auto;
  }

  .header-top {
    min-height: 145px;
  }

  .header-info {
    padding-left: 560px;
  }

  .tagline {
    font-size: 28px;
  }

  .phone {
    font-size: 28px;
  }

  .main-nav::before {
    width: calc(100% - 460px);
  }

  .nav-link {
    min-width: 270px;
    font-size: 30px;
  }

  .nav-note {
    min-width: 300px;
    font-size: 17px;
  }

  .hero-inner {
    min-height: 680px;
  }

  .hero-card {
    margin-left: 40px;
  }

  .plants-grid {
    grid-template-columns: 260px minmax(240px, 1fr) 260px minmax(240px, 1fr);
    column-gap: 50px;
  }

  .script-title {
    font-size: 86px;
  }

  .other-card {
    width: 1180px;
    margin-left: 40px;
  }
}

@media (max-width: 1500px) {
  .flowers-img {
    top: 200px;
    width: 350px;
    right: -70px;
  }
}

@media (max-width: 1300px) {
  .flowers-img {
    display: none;
  }
}

/* ===============================
   MOBILE: 768px and down
================================ */

@media (max-width: 768px) {
  .container {
    width: calc(100% - 28px);
  }

  /* HEADER */

  .site-header {
    background: #fff;
  }

  .header-top {
    min-height: auto;
    padding: 16px 0 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .header-top::before {
    display: none;
  }

  .logo-link {
    position: static;
    display: block;
    width: 100%;
  }

  .site-logo {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .header-info {
    width: 100%;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .tagline {
    max-width: 320px;
    font-size: 20px;
    line-height: 1.2;
  }

  .phone {
    font-size: 22px;
  }

  /* NAV */

  .main-nav {
    height: auto;
    margin-bottom: 0;
    background: linear-gradient(
      90deg,
      rgba(159, 194, 71, 0.9) 0%,
      rgba(31, 134, 62, 0.9) 100%
    );
  }

  .main-nav::before {
    display: none;
  }

  .nav-inner {
    height: auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .nav-link {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0;
    font-size: 27px;
    line-height: 1.1;
  }

  .nav-link img {
    width: 38px;
    height: 38px;
  }

  .nav-separator {
    display: none;
  }

  .nav-note {
    min-width: 0;
    padding-left: 0;
    font-size: 15px;
    text-align: center;
  }

  /* HERO */

  .hero {
    min-height: auto;
    padding-top: 0;
    overflow: visible;
  }

  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(255, 255, 255, 0.25) 35%,
        rgba(0, 104, 55, 0.55) 100%
      ),
      url('assets/img/hero-bamboo.jpg') center / cover no-repeat;
  }

  .hero-inner {
    min-height: 620px;
    padding-top: 45px;
    padding-bottom: 80px;
  }

  .hero-card {
    width: 100%;
    margin-left: 0;
    padding: 26px 20px 22px 54px;
    border-radius: 18px;
  }

  .hero-card-icon {
    left: -5px;
    top: 18px;
    width: 54px;
  }

  .hero-card p {
    font-size: 16px;
    line-height: 1.45;
  }

  .frog-img {
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 180px;
    z-index: 20;
  }

  .slider-dots {
    bottom: 34px;
  }

  /* PLANTS */

  .plants-section {
    padding: 70px 0 45px;
  }

  .plants-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plant-image {
    width: 100%;
    height: auto;
  }

  .plant-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transform: none;
    border-radius: 14px;
  }

  .plant-content {
    max-width: 100%;
  }

  .script-title {
    font-size: 64px;
    -webkit-text-stroke-width: 6px;
  }

  .plant-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* OTHER PLANTS */

  .other-section {
    min-height: auto;
    padding: 45px 0 60px;
  }

  .other-inner {
    position: relative;
    min-height: auto;
    display: block;
    padding: 0;
    padding-bottom: 35px;
  }

  .other-card {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    padding: 18px 18px 95px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
  }

  .other-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .other-content {
    max-width: 100%;
  }

  .other-content .script-title {
    margin: 0 0 16px;
    font-size: 58px;
  }

  .other-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .inventory-btn {
    left: 50%;
    bottom: -40px;
    width: calc(100% - 36px);
    padding: 10px 14px;
    font-size: 17px;
    white-space: normal;
    text-align: center;
  }

  .inventory-btn img {
    width: 34px;
    height: 34px;
  }

  .flowers-img {
    display: none;
  }

  /* FOOTER */

  .footer-inner {
    padding: 20px 0;
    min-height: auto;
    flex-direction: column;
    text-align: center;
  }
}

.plants-content {
  text-align: center;
}

.plants-content .container {
  width: min(1600px, calc(100% - 40px));
  margin: 100px auto;
}

.plants-content h3 {
  color: #016938;

  font-family: 'gelato-luxe', sans-serif;
  font-size: 73.547px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .plants-content h3 {
    font-size: 35.547px;
  }
}
