/* Google Fonts */
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700);
  :root{
    --main-color:#008148;
    --second-color:#1e3932;
  }

  body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
  }

  li {
    list-style: none;
  }

  a{
    text-decoration: none;
  }

  section{
    padding: 50px 10%;
  }
  *::selection{
    color: #fff;
    background: var(--main-color);
  }
  .logo {
    width: 30px;
    border-radius: 90px;
    background-color: white;
    padding: 10px;
  }

  .logo img{
    width: 100%;
  }
  .navbar{
    position: fixed;
    width: 100%;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: space-between;
    /* box-shadow: 0 4px 41px rgb(14 55 54 / 14%); */
    padding: 15px 10%;
    transition: 0.2s
  }
  .navbar a{
    font-size: 1rem;
    padding: 11px 20px;

    color:var(--second-color);
    font-weight: 600;
    text-transform: uppercase;
  }
  .navbar a:hover {
    color: var(--main-color);
  }
  #menu-icon{
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    display: none;
  }
  .home{
    min-height: 100vh;
    display: flex;
    width: 100%;
    align-items: center;
    background: linear-gradient(180deg,#ffb9b9,#ffff);
    gap: 1rem;
    justify-content: space-between;
  }

  .home-text{
    width: 100%;
  }

  .home-img{
    width: 100%;
    display: flex;
    justify-content: center;
    animation: animate 3s ease-in;
  }
    /* CSS animasi bounce */
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      30% {
        transform: translateY(-20px);
      }
      50% {
        transform: translateY(0);
      }
      70% {
        transform: translateY(-10px);
      }
      90% {
        transform: translateY(0);
      }
    }
    .bounce {
      animation: bounce 0.6s ease;
    }

  .home-text h1{
    font-size: 3.2rem;
    color: var(--main-color);
    font-weight: bolder;
  }
  .home-text h2{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--second-color);
    text-transform: capitalize;
    margin: 0.5rem 0 1.4rem;
  }
  .btn{
    padding: 7px 16px;
    border: 2px solid var(--second-color);
    border-radius: 40px;
    color: var(--second-color);
    font-weight: 500;
  }
  .btn:hover{
    color: #fff;
    background: var(--second-color);
  }
  .heading{
    text-align: center;
    text-transform: uppercase;
  }
  .heading span{
    font-size: 1rem;
    font-weight: 600;
    color: var(--second-color);
  }
  .headimg h1{
    font-size: 2rem;
    color: var(--main-color);
  }
  .shop-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 20px;
  }
  .shop-countainer .box{
    flex: 1 1 10rem;
    background-color:#087e49;
    padding: 20px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
    margin-bottom: 10px;
    border-radius: 0.5rem;
    justify-content: space-between;
    width: 100%;
  }
  .shop-container .box .box-img img{
    margin-top: -100px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 230px;
    transition: transform 0.3s ease;
    text-align: center;
    padding: 20px;
  }
  .card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
  }
  .stars {
    color: #f4b400;
    font-size: 1.2em;
  }
  .shop-container .box .stars .box h2 {
    margin: 0;
    font-size: 1.2em;
    color: #444;
  }
  .shop-container .box .stars .box span {
    color: #ebdbc7;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0.2rem 0 0.5rem;
    text-align: center;
  }
  .box .btn{
    border: 2px solid #edf0ed;
    color: #ebdbc8;
  }

  .btn {
    justify-content: center;
    justify-self: center;
    align-items: center;
    align-self: center;
  }

  .box .btn:hover{
    background: #ebdbc8;
    color: var(--second-color);
  }
  .container{
    display: flex;
    flex-wrap: wrap;
    gap: 1,5rem;
    margin-top: 2rem;
    background: linear-gradient(180deg,#ffb9b9, #ffff);
  }
  .delivery-img,.app img{
    margin-top: 20px;
    width: 3500px;
    height: auto;
    width: 230px;
    margin-right: 20px;
  }
  .delivery-text,.app-text{
    margin-top: 20px;
    text-align: center;
    flex: 1 1 21rem;
    overflow: hidden;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    
  }
  .delivery-text h2,.app-text h2{
    font-size: 1.2rem;
    color: var(--second-color);
    font-family: 'Lato', sans-serif;
  }
  .delivery-text p,.app-text p {
    font-display: flex;
    margin: 0.5rem 0 1rem;
    justify-content: center;
    font-family: 'Lato', sans-serif;
  }

  .app-text{
    margin: 20px;
    text-align: right;
    margin-left: 10px;
    flex: auto;
    overflow: hidden;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
  }

  .app {
  padding: 30px;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.img-app {
  width: 300px;
  height: auto;
  border-radius: 10px;
}

.delivery-text h2 {
  font-size: 26px;
  color: #424040;
  margin-bottom: 12px;
}

.delivery-text h3 {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}

.delivery-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.delivery-text a,
.delivery-text button {
  display: inline-block;
  display: fle;
  margin-top: 2rem;
  padding: 10px 22px;
  background-color: #00704a;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.delivery-text a:hover,
.delivery-text button:hover {
  background-color: #005837;
}
   
  .about{
    display: flex;
    flex-wrap: wrap;
    background-color: #fdecf7;
    gap: 1.5rem;
    font-family: 'Lato', sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    letter-spacing: 1px;
  }
  .about-img{
    width: 240px;
    height: auto;

  }
  .about-text {
    flex: 1 1 17rem;
    font-family: 'Lato', sans-serif;
  }
  .about-text h2{
    font-size: 1.2rem;
    color: var(--second-color);
  }
  .about-text p {
    margin: 0.5rem 0 1rem;
    text-align: justify;
  }
  .contact{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .social a{
    font-size: 27px;
    margin: 0.5rem;
  }
  .social a .bx{
    padding: 5px;
    color: #fff;
    background: #000000;
    border-radius: 50%;
  }
  .social a .bx:hover{
    background:  var(--main color);
  }
  .links {
    margin: 1rem 0 1rem;
  }
  .links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--main -color);
    padding: 1rem;
  }
  .links a:hover {
    color: var(--main-color);
  }
  .contact p {
    text-align: center;
  }