@import url("https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap");
body,
html {
  font-size: 16px;
  font-family: "Livvic", sans-serif;
}

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

a {
  color: inherit;
}

.main-button {
  padding: 1rem 2rem;
  background-color: #2f581b;
  color: #fff;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.3rem;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s ease-in-out;
}

.main-button:hover {
  background-color: forestgreen;
}

.container {
  max-width: 2300px;
  margin: 0 auto;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #5ca36d;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}

.hero {
  color: white;
}
.hero .hero-content {
  padding: 5rem 1rem;
  position: relative;
  background-color: rgba(0, 0, 0, 0.527);
  min-height: 70vh;
  gap: 1rem;
  text-align: center;
  font-size: larger;
  display: grid;
  justify-content: start;
}
.hero .hero-content .container {
  display: grid;
  flex-direction: column;
  place-content: center;
  height: 100%;
  place-items: start;
  gap: 1rem;
  place-self: center;
}
.hero .hero-content .container h2 {
  font-weight: lighter;
  max-width: 900px;
  text-shadow: 1px 1px 3px black;
}
.hero .hero-content .container h1 {
  max-width: 900px;
  text-shadow: 1px 1px 3px black;
}
.hero .hero-content .main-button {
  margin-top: 2rem;
  margin: 2rem auto 0;
}
.hero .hero-content::after {
  content: "";
  top: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("/public/garden.webp");
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.offers {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 2rem 1rem;
}
.offers h3 {
  font-size: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  font-weight: 400;
  background-color: rgb(0, 122, 0);
  color: white;
  padding: 1rem 4rem;
  position: absolute;
  border-radius: 0.3rem;
  top: -38px;
}
.offers .offer-cards {
  color: white;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1300px;
  padding: 3rem 1rem;
  text-align: center;
  gap: 2rem;
  width: 100%;
  background-color: rgb(0, 122, 0);
  border-radius: 0.3rem;
}
.offers .offer-cards .card h4 {
  font-size: 2rem;
  font-weight: 400;
}
.offers .offer-cards .card p {
  max-width: 180px;
  margin: 0 auto;
}

.about-section {
  max-width: 1300px;
  display: flex;
  place-content: center;
  place-items: start;
  margin: 5rem auto;
  gap: 1rem;
}
.about-section .about-content {
  display: grid;
  place-content: start;
  gap: 1rem;
  padding: 1rem;
}
.about-section .about-content h3 {
  font-size: 1rem;
  color: rgb(80, 80, 80);
}
.about-section .about-content h4 {
  font-size: 2rem;
}
.about-section .about-images {
  grid-template-columns: 1fr 1fr;
  display: grid;
  place-content: center;
  align-items: stretch;
  gap: 1rem;
  position: relative;
}
.about-section .about-images :nth-child(1) {
  grid-column: span 2;
  height: 10rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .about-images :nth-child(2) {
  max-width: 20rem;
}
.about-section .about-images :nth-child(3) {
  max-width: 20rem;
  position: relative;
}

.services {
  background-color: #e6d1b2;
  padding: 5rem 0;
}
.services .container {
  max-width: 1300px;
  margin: 50px auto;
}
.services .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services .card {
  width: 500px;
  margin: 20px;
  padding: 1.3rem 1rem;
  background-color: rgb(0, 122, 0);
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.services h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.services .card p {
  font-size: 16px;
}
.services .card:hover {
  transform: translateY(-10px);
}

.review {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 1rem;
}
.review h2 {
  font-size: 2rem;
  font-weight: 400;
}
.review .container {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.review .review-card {
  max-width: 500px;
  background-color: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.207);
}
.review .review-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.review .review-card p {
  font-size: 16px;
  margin-bottom: 10px;
}
.review .review-card p:last-child {
  margin-bottom: 0;
}
.review .review-card p.rating {
  font-weight: bold;
}

footer {
  padding: 1rem;
  background-color: black;
  color: white;
  text-align: center;
}

.contact {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  color: #fff;
  grid-template-columns: 1fr 600px;
  margin-bottom: 5rem;
  padding: 1rem;
}
.contact .contact-cards {
  border-radius: 5rem 0 0 1rem;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #2f581b;
  gap: 1rem;
}
.contact .contact-cards #map {
  height: 100%;
}
.contact .contact-cards h2 {
  grid-column: span 2;
  text-align: center;
  font-size: 2rem;
}
.contact .contact-cards .card {
  overflow: hidden;
  border-radius: 0.3rem;
  display: grid;
  place-content: center;
  place-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(0, 128, 0, 0.366);
}
.contact .contact-cards .card #map {
  height: 100%;
}
.contact .contact-cards .card img {
  height: 50px;
}
.contact .landscaping {
  min-height: 40rem;
  background-image: url("/public/landscaping.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 1rem 5rem 0;
}

.pre-header {
  font-size: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  background-color: #2f581b;
  color: #e6d1b2;
  padding: 0.5rem 1rem;
}
.pre-header .header-phone {
  display: flex;
  gap: 1rem;
  justify-content: end;
}

header {
  background-color: #e6d1b2;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 800;
}
.logo-container .logo {
  flex: 1;
  z-index: 700;
  font-weight: bold;
}
.logo-container .hamburger-btn {
  z-index: 800;
  width: 40px;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 50px;
}

.hamburger-btn .hamburger-icon-bottom {
  width: 85%;
  height: 3px;
  background-color: rgb(26, 25, 23);
  border-radius: 3rem;
}

.hamburger-btn .hamburger-icon-medium {
  background-color: rgb(26, 25, 23);
  width: 90%;
  height: 3px;
  border-radius: 3rem;
}

.hamburger-btn .hamburger-icon-top {
  background-color: rgb(26, 25, 23);
  width: 100%;
  height: 3px;
  border-radius: 3rem;
}

.navbar {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li a {
  margin-left: 1rem;
  color: inherit;
  text-decoration: none;
}

.offers .offer-cards {
  place-content: center;
  min-height: 200px;
  grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 18px;
  }
  .hero {
    color: white;
  }
  .hero .hero-content {
    text-align: left;
  }
  .hero .hero-content .main-button {
    margin: 2rem 0 0 0;
  }
  .hero .hero-content h1 {
    font-size: 400%;
  }
  .hero .hero-content::after {
    content: "";
    top: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url("/public/garden.webp");
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .offers .offer-cards {
    place-content: center;
    min-height: 200px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .offers .offer-cards {
    grid-template-columns: 1fr;
  }
  .menu {
    display: none;
  }
  .logo-container .hamburger-btn {
    display: grid;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: transparent;
    border-radius: 0.1rem;
    height: 50px;
  }
  .logo-container .hamburger-btn:hover {
    background-color: rgba(0, 128, 0, 0.179);
  }
  .menu.open {
    display: grid;
    place-content: center;
    justify-content: stretch;
    gap: 2rem;
    flex-direction: column;
    background-color: #2f581b;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    animation: slideMenu 0.5s ease-in-out; /* Animation for sliding menu */
    box-sizing: border-box;
    padding: 1rem;
  }
  .menu.open li {
    display: flex;
    justify-content: center;
    margin: 0;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.2941176471);
    color: white;
  }
  .menu.open li a {
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    display: block;
  }
  .about-section {
    overflow: hidden;
    flex-wrap: wrap;
  }
  @keyframes slideMenu {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  @keyframes slideMenuReverse {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-100%);
    }
  }
  .contact {
    grid-template-columns: 1fr;
    margin-bottom: 5rem;
    padding: 1rem;
  }
  .contact .contact-cards {
    border-radius: 1rem;
    padding: 3rem 1rem;
    grid-template-columns: auto;
    gap: 1rem;
  }
  .contact .contact-cards h2 {
    text-align: center;
    font-size: 2rem;
  }
  .contact .contact-cards .card {
    grid-column: span 2;
  }
  .contact .contact-cards #map {
    min-height: 200px;
  }
  .contact .landscaping {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */