@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary-color: #91e73c;
  --primary-color-dark: #7ac232;
  --text-dark: #000000;
  --text-light: #9ca3af;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --background-light: #e1e8e1;
  --max-width: 1200px;
  --header-font: "DM Sans", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
button,
input {
  font: inherit;
}
button {
  border: 0;
}
ul {
  list-style: none;
}
img {
  display: block;
  width: 100%;
} /* Shared Layout */
.section-container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: 5rem 0;
}
.section-subtitle {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}
.section-title {
  max-width: 750px;
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--header-font);
  line-height: 1.15;
  color: var(--text-dark);
}
.button {
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1;
  color: var(--text-dark);
  white-space: nowrap;
  background-color: var(--primary-color);
  border-radius: 2rem;
  cursor: pointer;
  transition: 0.3s;
}
.button span {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
}
.button:hover {
  background-color: var(--primary-color-dark);
}
.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}
.logo span {
  font-size: 1.2rem;
} /* Header */
.site-header {
  position: relative;
  display: grid;
  overflow: hidden;
}
.navigation {
  position: fixed;
  isolation: isolate;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.navigation-header {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}
.navigation-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}
.navigation-links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.navigation-links.open {
  transform: translateY(100%);
}
.navigation-links a {
  color: var(--text-dark);
}
.navigation-links a:hover {
  color: var(--white);
} /* Hero */
.hero-content {
  position: relative;
  padding: 7rem 1rem 3rem;
}
.hero-content::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: var(--extra-light);
  z-index: -1;
}
.hero-content h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--header-font);
  line-height: 1.05;
  color: var(--text-dark);
  text-align: center;
}
.hero-content p {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  text-align: center;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-buttons .button:nth-child(2) {
  padding: 0.25rem 0.5rem 0.25rem 1.5rem;
  border: 1px solid var(--text-dark);
  background-color: transparent;
}
.hero-buttons .button:nth-child(2):hover {
  color: var(--white);
  background-color: var(--text-dark);
}
.hero-buttons .button:nth-child(2) span {
  font-size: 2rem;
}
.hero-image {
  background-color: #dedee2;
}
.hero-image img {
  height: 100%;
  object-fit: cover;
} /* Features */
.features-section {
  display: grid;
  gap: 2rem;
}
.features-content p {
  max-width: 600px;
  padding-block: 2rem 3rem;
  color: var(--text-light);
}
.features-button {
  display: flex;
}
.features-grid {
  display: grid;
  gap: 1rem;
}
.feature-card {
  padding: 1.25rem;
  border: 2px solid var(--extra-light);
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgb(0 0 0 / 5%);
  transition: 0.3s;
}
.feature-card:hover {
  box-shadow: 5px 5px 20px rgb(0 0 0 / 10%);
}
.feature-icon {
  display: inline-flex;
  font-size: 2rem;
  color: var(--text-dark);
  transition: 0.3s;
}
.feature-card:hover .feature-icon {
  color: var(--primary-color-dark);
}
.feature-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.feature-card p {
  color: var(--text-light);
} /* Banners */
.banners-section {
  display: grid;
  gap: 2rem;
}
.banner-card {
  position: relative;
  isolation: isolate;
}
.banner-card img {
  max-width: 600px;
  margin-inline: auto;
  border-radius: 1rem;
}
.banner-card h4 {
  position: absolute;
  top: 2rem;
  left: 2rem;
  max-width: 220px;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgb(0 0 0 / 10%);
  z-index: 1;
}
.banner-card .button {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  background-color: var(--white);
  box-shadow: 5px 5px 20px rgb(0 0 0 / 10%);
  z-index: 1;
}
.banner-card .button:hover {
  color: var(--text-dark);
  background-color: var(--primary-color);
} /* Specifications */
.specifications-section {
  background-color: var(--background-light);
  background-image: url("../images/specs.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
.specifications-container {
  display: grid;
  gap: 2rem;
}
.specification-row {
  display: flex;
}
.specification-card {
  width: min(100%, 320px);
  padding: 1rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgb(0 0 0 / 10%);
}
.specification-row:first-child {
  justify-content: flex-end;
}
.specification-header {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.specification-icon {
  display: inline-flex;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: 0.3s;
}
.specification-card:hover .specification-icon {
  color: var(--primary-color-dark);
}
.specification-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.specification-card p {
  color: var(--text-light);
} /* Products */
.products-section .section-title {
  max-width: 750px;
}
.products-grid {
  margin-top: 4rem;
  display: grid;
  gap: 4rem;
}
.products-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.products-list li {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 120px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  background-color: var(--extra-light);
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgb(0 0 0 / 5%);
  transition: 0.3s;
}
.products-list li:hover {
  color: var(--white);
  background-color: var(--primary-color);
}
.products-content img {
  margin-bottom: 2rem;
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgb(0 0 0 / 5%);
}
.products-content p {
  margin-bottom: 2rem;
  color: var(--text-light);
}
.products-button {
  display: flex;
} /* Footer */
.site-footer {
  background-color: var(--text-dark);
}
.footer-container {
  display: grid;
  gap: 4rem 2rem;
}
.footer-logo {
  margin-bottom: 2rem;
}
.footer-logo .logo {
  color: var(--white);
}
.footer-column h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.footer-links {
  display: grid;
  gap: 1rem;
}
.footer-links li,
.footer-links a {
  color: var(--text-light);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-links a span {
  margin-right: 0.625rem;
  font-size: 1.2rem;
}
.newsletter-column h2 {
  margin-bottom: 0.75rem;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--white);
}
.newsletter-column p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
.newsletter-column form {
  width: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
  border: 1px solid var(--text-light);
  border-radius: 5px;
}
.newsletter-column input {
  width: 100%;
  padding-inline: 1rem;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--white);
  background-color: transparent;
}
.newsletter-column input::placeholder {
  color: var(--text-light);
}
.newsletter-column form .button {
  background-color: var(--extra-light);
  border-radius: 2px;
}
.footer-bottom {
  padding: 1rem;
  border-top: 1px solid var(--text-light);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-light);
} /* Tablet */
@media (width > 540px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banners-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
} /* Desktop */
@media (width > 768px) {
  .site-header {
    min-height: 720px;
    position: relative;
    isolation: isolate;
    grid-template-columns:
      minmax(0, 1fr) minmax(0, calc(var(--max-width) / 2))
      minmax(0, calc(var(--max-width) / 2)) minmax(0, 1fr);
    align-items: center;
  }
  .navigation {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: var(--max-width);
    padding: 2rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transform: translateX(-50%);
  }
  .navigation-header {
    width: auto;
    padding: 0;
    background-color: transparent;
  }
  .logo {
    font-size: 2rem;
  }
  .logo span {
    font-size: 1.5rem;
  }
  .navigation-menu-button {
    display: none;
  }
  .navigation-links {
    position: static;
    width: auto;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2rem;
    background-color: transparent;
    transform: none;
  }
  .navigation-links.open {
    transform: none;
  }
  .navigation-links .button {
    color: var(--text-dark);
  }
  .navigation-links .button:hover {
    color: var(--text-dark);
  }
  .hero-content {
    grid-area: 1 / 2 / 2 / 3;
    padding-block: 8rem 5rem;
    padding-inline: 1rem;
  }
  .hero-content::before {
    grid-area: 1 / 1 / 2 / 3;
  }
  .hero-content h1 {
    font-size: 5rem;
    text-align: left;
  }
  .hero-content p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .hero-image {
    grid-area: 1 / 3 / 2 / 5;
    height: 100%;
  }
  .hero-image img {
    height: 100%;
    object-fit: cover;
  }
  .features-section {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-list {
    flex-direction: row;
  }
  .products-list li {
    min-height: 300px;
  }
  .products-list li p {
    transform: rotate(-90deg);
    white-space: nowrap;
  }
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
} /* Large Desktop */
@media (width > 1024px) {
  .section-container {
    padding: 6rem 0;
  }
  .feature-card {
    padding: 1.5rem;
  }
  .products-list {
    gap: 2rem;
  }
  .products-list li {
    min-height: 340px;
  }
} /* Small Screens */
@media (width < 400px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .banner-card h4 {
    top: 1rem;
    left: 1rem;
    font-size: 1.1rem;
  }
  .banner-card .button {
    right: 1rem;
    bottom: 1rem;
  }
  .newsletter-column h2 {
    font-size: 2rem;
  }
  .newsletter-column form {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
  }
  .newsletter-column input {
    min-height: 45px;
  }
  .newsletter-column form .button {
    width: 100%;
  }
}
