@import "./_Font.css";
@import "./_utlils.css";
@import "./mobile.css";

*{
    margin: 0px;
    padding: 0pc;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: inherit;
}
html{
    overflow-x: hidden;
}
.hero-section{
    width: 100vw;
    height: 80vh;
    background: linear-gradient(
            45deg,
            rgba(0,0,0, 0.60),
            rgba(0, 0, 0, 0.60)
    ),
    url("../assets/images/hero-section.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1rem 2rem 10rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-position: center;
}
#header{
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
}
.header__login-button{
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.80rem;
    background-color: #f3f3f3;
    padding: 0.5rem ;
    border-radius: 0.5rem;
    transition: all .5s ease-in-out;
}
.header__login-button:hover{
    background-color: #f8f8f8;
    transition: all 0.5s ease-in-out;
    border: black solid 0.50px;
}
.header__login-button image{
    width: 1rem;
    height: 1rem;

}
#cart{
    position: relative;
}
#cart img{
    width: 2rem;
    height: 2rem;
}
#cart_badge{
    background-color: #000;
    width: 1rem;
    height: 1rem;
    font-size: 0.8rem;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    position: absolute;
    right: -1rem;
    top: -0.5rem;
}
#logout-button{
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.80rem;
    background-color: #ff6e6e;
    padding: 0.5rem ;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
#logout-button:hover{
    background-color: #fa1b1b;
    color: #ffffff;
}
#logout-button img{
    width: 0.80rem;
    height: 0.80rem;
}
.hero-section-content{
    color: white;
}
.see-products-arrow{
    width: 3rem;
    height: 3rem;
    animation: sliding 1s ease-in-out infinite alternate;
    

}
@keyframes sliding{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-10px);
    }
}
/*my-try-for-bilding-site:*/
.shop-items-width-and-height{
    width: 20rem;
    height: 20rem;
    padding: 0rem;
    border-radius: 2rem;
}
.shop-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.shop{
    text-align: center;
    border-radius: 2rem;
    border: rgba(0,0,0, 0.85) solid 0.50px;
    margin: 3rem;
    height: 30rem;
}