/* HERO SECTION */

#hero{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    
}

.hero_texts{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.hero_texts h1{
    font-size: 4rem;
    text-transform: capitalize;
}

.hero_texts h2{
    font-size: 2rem;
    font-weight: lighter;
}

.hero_texts .see_product_button {
    text-transform: uppercase;
    background-color: #fca311;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bolder;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06 );
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;

}

.hero_texts .see_product_button:hover{
    scale: 1.01;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1 );
}

.hero_texts .see_product_button p{
    font-size: 1.3rem;
    color: #ffff;
    font-weight: 600;
}



.hero_texts .see_product_button  i{
    font-size: 2rem;
    font-weight: bolder;
    align-items: center;
    justify-content: center;
    color: #ffff;
    font-weight: 600;
}

.featured_product_image{
    width: 500px;
    height: 500px;
    border-radius: 20px;
    align-self: center;

}




@media (max-width:1150px) {

    #hero{
        height: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .hero_texts{
        
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .featured_product_image{
        width: 300px;
        height: 300px;
    
    }

   
    
}


@media (max-width:300px) {
    #hero{
        height: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .hero_texts{
        
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .featured_product_image{
        width: 250px;
        height: 250px;
    
    }

    .hero_texts h1{
        font-size: 3rem;
        text-transform: capitalize;
    }
    
    .hero_texts h2{
        font-size: 1.5rem;
        font-weight: lighter;
    }
    
    .hero_texts .see_product_button{
        font-size: 1rem;
        padding: 10px 15px;
    
    }
}