
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');


.noto-serif-font {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}




/* shared style */
.width{
    max-width: 1440px;
    margin: 0 auto;
}
.display-flex{
    display: flex;
}
.text-font-color{
    color: rgba(0, 0, 0, 0.5);
}

/* header style */
.navbar{
    justify-content: space-between;
}
.nav-item{
    list-style: none;
    margin-right: 40px;

}
.nav-item2{
    list-style: none;
}
.nav-link{
    text-decoration: none;
    font-weight: 500;

}
/* banner style */
.banner{
    margin-top: 150px;
}
.banner-description{
    font-size: 1.5rem;
}

/* plants section style */
.plants-section{
    margin-top: 100px;
    
}
.our-plants-topic{
    text-align: center;
    margin-bottom: 50px;
}
.our-plants-pic{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.card{
    width: 270px;
    margin-bottom: 30px;
    margin-left: 20px;
    
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
}
.card img{
    width: 100%;
    
}
.btn-primary{
    width: 100%;
    background-color: #E95A08;
    color: white;
    padding: 10px;
}

/* flowler lover section */
.flower-lover{
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}
.flower-lover-logo img, .flower-lover-details{
    /* width: 100px; */
    height: auto;
}
.flower-lover-details{
    margin-left: 50px;
    text-align: start;
    font-size: 1.5rem;
    ;
}
.flower-container{
    display: flex;
    
    align-items: center;
    
}
.inter-font li{
    color: rgba(0, 0, 0, 0.5);
}
#badge{
    width: 200px;
    margin-bottom: -100px;
    margin-right: -100px;
    margin-left: 430px;
   
}
.flower-lover-logo{
    display: flex;
    flex-direction: column-reverse;
}

/* colorful bunch */
.join-bunch{
    margin-top: 100px;
    display: grid;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/news-letter-bg.png');
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    height: 400px;
    color: white;
}
.join-bunch-form{
    display: flex;
    
}
#mail{
    width: 400%;
    height: 50px;
    border-radius: 5px;
    /* padding-left: 50px; */
    padding: 0px 0px    0px 0px;
    border: none;
    font-size: 1.2rem;
}
/* footer */
.footer{
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}
.footer li{
    list-style: none;
    margin-bottom: 30px; ;
    }
    .footer a{
    text-decoration: none;
    color: gray;
    font-size: 1.5rem;
    }
    .footer p{
    color: gray;
    font-size: 1.5rem;
    }



/* responsive media query */
@media screen  and (max-width: 500px){
    .link{
        display: none;
    }
    .navbar{
        justify-content: space-around;
        width: 100%;
    }
    .nav-links, .banner {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 10px auto;
    }
     .banner-logo img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    
  }
  /* plant section */

 .our-plants-pic{
    
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    margin: 0 auto;
 }
   .banner-item{
    width: 100%;
   }
  .card{
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  /* flower lover */
.flower-lover{
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  #badge{
    display: none;
  }
  .flower-lover-details{
    text-align: center;
    margin-left: 0px;
    margin-top: 20px;
  }
  
  #logo{
    width: 330px;
    height: auto;
    margin: 0 auto;
  }
  footer{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

 
}

