@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary-color: #7bc96f;
  --secondary-color: #ffb88c;
  --text-main: #2e2e2e;
  --details: #4a7c59;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Arial", sans-serif;
  background: #f5fff6;
  color: #1b5e20;
  line-height: 1.6;
}

header {
  width: 100%;
  background-color: var(--primary-color);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
}

#nav-logo {
  padding: 15px;
}

#mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

#mobile-menu {
  max-height: 0;
  overflow: hidden;
  background-color: var(--primary-color);
  position: absolute;
  top: 70px;
  right: 20px;
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: max-height 0.4s ease-in-out;
  z-index: 1000;
}

#mobile-menu.active {
  max-height: 300px;
}

#mobile-menu ul {
  padding: 10px 0;
}

#mobile-menu ul li {
  padding: 10px 20px;
  text-align: left;
}

#mobile-menu ul li a {
  color: white;
  display: block;
}

#mobile-menu ul li a:hover {
  color: var(--details);
}


.navbar {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.navbar-list {
  display: flex;
  gap: 40px;
  & a {
    color: #fff;
    transition: color .3s ease;
  }
  & a:hover{
    color: var(--details);
  }
}

.container {
  max-width: 1100px;
  min-height: calc(100vh - 96px);
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

section {
  padding: 60px 20px;
  text-align: center;
}

h1 {
  font-size: 3rem;
  color: var(--primary-color);
  line-height: 1.1;
}

h1,
h2 {
  margin-bottom: 20px;
}

p {
  max-width: 600px;
  margin: 0px auto 40px;
  color: #333;
}

.content {
  width: 50%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
span{
  color: var(--details);
}
.folder {
  max-width: 400px;
  z-index: 2;
  & img {
    width: 100%;
  }
}
.btn-folder {
  position: absolute;
  align-self: center;
}
.btn,
.btn-folder {
  width: 150px;
  padding: 10px 10px;
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  bottom: 0;
}
.btn,
.btn-folder:hover {
  background: var(--details);
}

.benefits{
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  background: #e8f5e9;
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
}

.recipe-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  width: 250px;
}

.container-testimonial{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.testimonial {
  width: 250px;
  min-width: 200px;
  background: #e0f2f1;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.bio {
  background-color: #e8f5e9;
  padding: 60px 20px;
}

.bio-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.bio-img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bio-text {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.bio-text h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.bio-text p {
  color: #2e2e2e;
  line-height: 1.6;
}


.footer {
  background: #1b5e20;
  color: #fff;
  padding: 40px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-social{
  flex: 1;
}

.footer-social h3{
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.footer-links{
  display: flex;
}

.footer-social a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #81c784;
}


.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  & p {
    color: #fff;
  }
}
@media (max-width: 900px) {
  h1{
    font-size: 2.5rem;
    
  }
  .content{
    width: 100%;
  }
}


@media (max-width: 768px) {
  .navbar-list {
    display: none;
  }

  #mobile-btn {
    display: block;
  }

  .navbar {
    position: relative;
  }
}

@media (max-width: 600px) {
  h1{
    font-size: 2rem;
  }
}

