/* fonts */

.noto-serif-normal {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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


/* shared styles */

.bold-color{
    color: rgba(37, 36, 50, 1);
}

.nav-color{
    color: rgba(137, 135, 161, 1);
}

.heading-color{
    color: rgba(233, 90, 8, 1);
}

.p-color{
    color: rgba(0, 0, 0, 0.5);
}

button{
    background-color: rgba(233, 90, 8, 1);
    color: white;
    font-size: 16px;
    font-weight: semibold;
    width: 100%;
    border: none;
    padding: 10px 0;
    margin-top: -50px;
}


/* nav styles */

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 150px;
}
nav img{
    width: 135px;
    height: 80px;
}

.nav-links ul{
    display: flex;
    list-style: none;
    gap: 50px;
    text-decoration: none;
}

.nav-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links ul li a{
    text-decoration: none;
}

.nav-icons i{
    padding-left: 50px;
}

.nav-icons a{
    text-decoration: none;
}


/* banner styles */

.banner{
    display: flex;
    margin: 120px 150px;
}

.banner-text{
    width: 100%;
}

.banner-text h1{
    font-size: 60px;
}

.banner-text p{
    font-size: 22px;
}

.banner-img{
    width: 100%;
    margin-right: -100px;
}


/* card styles */

.card-heading h1{
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.card-heading p{
    font-size: 22px;
    text-align: center;
    padding: 0 280px;
}

.card{
    padding-left: 150px;
    display: flex;
    flex-wrap: wrap;
}

.card-items{
    align-items: center;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-right: 30px;
}

.card-items img{
    width: 270px;
    height: 320px;
}

.card-items p{
    text-align: center;
    font-size: 22px;
    font-weight: medium;
}

.card-items h5{
    text-align: center;
    font-size: 22px;
    margin-top: -15px;
}


/* plants lover styles */

.plants-lover-section{
    display: flex;
    justify-content: space-between;
    margin-top: 210px;
    margin-bottom: 130px;
    margin-left: 150px;
    margin-right: 150px;
}

.plant-lover-img{
    width: 100%;
}

.flower-store{
    position: relative;
}

.trusted-badge{
    position: absolute;
    height: 285px;
    width: 285px;
    margin-top: -120px;
    margin-left: -180px;
    filter: drop-shadow(1px 13px 2px rgba(0, 0, 0, 0.25));
}

.plants-lover-text{
    width: 100%;
}

.plants-lover-text h1{
    font-size: 50px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 50px;
}

.plants-lover-text ul{
    font-size: 22px;
}

.plants-lover-text ul li{
    padding-bottom: 20px;
    padding-right: 80px;
}


/* latest deal styles */

.deal-header h1{
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.deal-header p{
    font-size: 22px;
    text-align: center;
    padding: 0 275px;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 170px;
    margin-right: 150px;
}

.row img{
    width: 100%;
    height: 100%;
    justify-content: center;
}

.vertical-collage img {
    height: calc( (100% - 30px)/2 );
    width: 60%;
    border-radius: 14px;
}

.deal-item {
    position: relative;
    height: calc( (100% - 30px)/2 );
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.deal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-img img{
    width: 100%;
    border-radius: 22px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  background-color: rgba(0, 0, 0, 0.40);
  z-index: 1;
}

.discount-info {
  position: absolute;
  bottom: 80px;
  left: 80px;
  color: white;
  z-index: 2;
}

.discount-info p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.discount-info a {
    font-size: 16px;
    font-weight: semibold;
    color: white;
    margin-left: 50px;
}

.discount-info .single-img-p{
    font-size: 40px;
    font-weight: bold;
}

.discount-info .single-img-a{
    font-size: 28px;
    font-weight: semibold;
    margin-left: 120px;
}

.margin{
    margin-bottom: 90px;
    margin-left: 100px;
}


/* join styles */

.join-section{
    background-image: url(assets/news-letter-bg.png);
    background-size: cover;
    margin-top: 120px;
}

.join-text{
    padding: 195px 305px;
}

.join-text h1{
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.join-text > div {
    display: flex;
}

input{
    width: 100%;
    height: 50px;
    padding-left: 20px;
}

.join-text button{
    width: 50%;
    height: 55px;
    margin-top: 1px;
    background-color: rgba(233, 90, 8, 1);
}


/* footer styles */

footer{
    display: flex;
    margin: 50px 160px;
}

.footer-logo{
    width: 30%;
}

.footer-logo img{
    width: 135px;
    height: 80px;
}

.footer-logo p{
    font-size: 22px;
}

.footer-navbar{
    display: flex;
    padding-left: 100px;
}

.footer-navbar ul{
    list-style: none;
}

.footer-navbar .padding{
    padding-left: 100px;
}

.footer-navbar ul li{
    padding-bottom: 26px;
}

.footer-icon{
    padding-left: 110px;
}

.footer-icon img{
    padding-left: 25px;
}

.twitter{
    margin-bottom: 8px;
}





/* responsive media queries */

/* small devices */

@media screen and (max-width: 576px) {

    body{
        margin-left: 16px;
        margin-right: 16px;
    }

    /* navbar styles */

    nav{
        margin: 16px 20px;
        justify-content: space-between;
    }
    .nav-links ul{
        display: none;
    }

    .nav-icons{
        padding-left: 100px;
    }


    /* banner styles */

    .banner{
        flex-direction: column-reverse;
        margin: 0px;
        align-items: center;
        width: 100%;
    }

    .banner-text{
        display: inline-block;
        margin-top: 10px;
        margin-left: 16px;
        margin-right: 0px;
        width: 100%;
    }

    .banner-text h1{
        font-size: 24px;
    }

    .banner-text p{
        font-size: 14px;
    }

    .banner-img{
        width: 120%;
        margin-left: -100px;
    }


    /* plants styles */

    .card-heading{
        align-items: center;
    }

    .card-heading h1{
        font-size: 24px;
        align-items: center;
        width: 100%;
    }

    .card-heading p{
        font-size: 14px;
        margin-left: -270px;
        width: 100%;
    }

    .card{
        padding-left: 10px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
    }

    .card-items{
        width: 100%;
        align-items: center;
    }

    .card-items p{
        align-items: center;
        font-size: 16;
    }

    .card-items h5{
        text-align: center;
        font-size: 16;
    }

    .card-items button{
        font-size: 16;
        width: 90%;
    }


    /* plants lover styles */

    .plants-lover-section{
        display: inline-block;
        margin: 40px 10px;
    }

    .trusted-badge{
        display: none;
    }

    .plants-lover-text h1{
        font-size: 24px;
    }

    .plants-lover-text ul{
        font-size: 14px;
    }

    .plants-lover-text ul li{
        padding-bottom: 20px;
        padding-right: 50px;
    }


    /* latest deal styles */

    .deal-header h1{
        font-size: 24px;
    }

    .deal-header p{
        font-size: 14px;
        width: 100%;
        margin-left: -280px;
    }

    .row {
        display: inline-block;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin: 10px 10px;
    }

    .discount-info {
      bottom: 100px;
      left: 150px;
    }

    .discount-info .single-img-p{
        font-size: 20px;
    }

    .discount-info .single-img-a{
        font-size: 16px;
        font-weight: semibold;
        margin-left: 70px;
    }

    .margin{
        margin-bottom: 20px;
        margin-left: 20px;
    }


    /* join styles */

    .join-text{
        padding: 110px 80px;
    }

    .join-text h1{
        font-size: 20px;
    }

    input{
        font-size: 16px;
    }

    .join-text button{
        font-size: 16px;
    }


    /* footer styles */

    footer{
        display: inline-block;
        margin: 50px 10px;
    }

    .footer-logo{
        width: 100%;
    }

    .footer-logo img{
        width: 180px;
        height: 110px;
    }

    .footer-logo p{
        font-size: 16px;
    }

    .footer-navbar{
        display: inline-block;
        padding-left: 0px;
    }

    .footer-navbar .padding-left{
        padding-left: 0px;
    }

    .footer-navbar .padding{
        padding-left: 0px;
        margin-top: -20px;
    }

    .footer-icon{
        padding-left: 0px;
    }

    .footer-icon img{
        padding-left: 0px;
        padding-right: 25px;
    }
}