@import url('https://fonts.google.com/css2?family=spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* Universal */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
h1{
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2{
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4{
    font-size: 20px;
    color: #222;
}

h6{
    font-weight: 700;
    font-size: 12px;
}

p{
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1{
    padding: 40px 80px;
}

.section-m1{
    margin: 40px 0;
}

.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
.white{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid white;
    outline: none;
    transition: 0.2s;
} 


body {
    width: 100%;
    background-color: #fff;
}

/* Navigation Bar */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 80px;
    background-color: #151916;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: 0.3s ease;
}
#navbar li a:hover,#navbar li a.active{
    color: grey;
}

#navbar li a.active::after,#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: grey;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

.logo{
    height: 70px;
}
#mobile{
    display: none;
    align-items: center;
}
#close{
    display: none;
}

/* Hero */
#hero{
    background: url(img/mt\ background.png);
    height: 80vh;
    width: 100%;
    background-size: cover;
    background-position: top 10% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
#hero h4{
    padding: bottom 15px; 
}
#hero h1{
    color: black;
}
#hero button{
    padding: 15px;
    border-radius: 25px;
    border-color:#fff ;
    font-weight: 600;
    cursor: pointer;
}
#hero p{
    color: #000;
}

/* feature box */

#feature{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .feature-box{
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.3);
    border: 1px solid #cce7de;
    border-radius: 4px;
    margin: 15px 0;
}
#feature .feature-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
#feature .feature-box img {
    width: 100%;
    margin-bottom: 10px;
}
#feature .feature-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fdddfd;
}
#feature .feature-box:nth-child(2) h6{
    background-color: #cdebbc;
}
#feature .feature-box:nth-child(3) h6{
    background-color: #d1e8f2;
}
#feature .feature-box:nth-child(4) h6{
    background-color: #cdd4f8;
}
#feature .feature-box:nth-child(5) h6{
    background-color: #f6dbf6;
}
#feature .feature-box:nth-child(6) h6{
    background-color: #fff2e5;
}

/* product arrow */
.forward-button{
    padding: 10px;
    background-color: transparent;
    /* align-self: flex-end; */
    border: none;
    cursor: pointer;
    color: blue;
    align-items: last baseline;
}
.forward-button:hover{
    border: 1px solid black;
    border-radius: 8px;
    background-color: #a89e9e;
}

/* Category & Product Section */

.heaing2 {
    font-size: 3rem;
    margin: 22px 0px;
    font-family: fangsong;
}
#cati-container {
    color: black;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5px;
}

.category, 
.product-side-category {
    color: black;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.3);
    background-color: #edecec;
    margin: 2rem;
    padding: 1rem;
    max-width: 300px;
    height: 27rem;
}
.category, 
.product-side-category:hover{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

.category h3, 
.product-side-category h3 {
    font-size: 1.2rem;
}

.product-heading {
    font-size: 15px;
    margin: 5px 0;
    overflow: hidden;
    height: 86px;
}

.product-price {
    font-size: 1rem;
    margin-top: 1rem;
}

.product-img {
    height: 16rem;
    width: 14rem;
    background-size: cover;
    background-image: url(img/tshirt.webp);
}
.container-link{
    text-decoration: none;
}

/* About Section */
.about {
    text-align: center;
}

.about-box {
    color: black;
    height: 38rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contain-about {
    height: 27rem;
    width: 80%;
}

.contain-about h3 {
    font-size: 3.5rem;
    margin-bottom: 111px;
    margin-right: 21rem;
    font-family: fangsong;
}

.contain-about p {
    width: 75%;
    font-size: 1.5rem;
    font-family: fangsong;
}

.img-contain {
    height: 16rem;
    width: 16rem;
    background-image: url(img/fevicon.png);
    background-size: cover;
}

/* Product Page */
#product-page {
    margin: 7rem 0;
}


/* General Elements */


.title-heading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product {
    height: 27rem;
}

.picture {
    height: 70%;
    width: 100%;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    overflow: hidden;
    transition: ease;
}
.picture:hover {
    height: 70%;
    width: 100%;
    border-top-right-radius: 21px;
    border-top-left-radius: 21px;
}

.picture img {
    height: 100%;
    width: 100%;
}
.pic {
    height: 70%;
    width: 100%;
    background-size: cover;
    border: 1px solid;
}

footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background-color: #edecec; */
    background-color: #656161;
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
footer .logo{
    margin-bottom: 13px;
    background-color: #656161;
}
footer h4{
    font-size: 25px;
    padding-bottom: 20px;
    color: whitesmoke;
}
footer p{
    font-size: 14px;
    padding-bottom: 0 0 8px 0;
    color: whitesmoke;
}
footer a{
    font-size: 13px;
    text-decoration: none;
    /* color: #222; */
    color: whitesmoke;
    padding-bottom: 0 0 8px 0;
    margin-bottom: 10px;
}

footer .follow{
    margin-top: 20px;
}

footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer .install .row img{
    border: 1px solid #088178;
    border-radius: 6px;
}
footer .install img{
    margin: 10px 0 15px 0;
}
footer .follow i:hover,footer a:hover{
    color: #088178;

}

footer .copywrite{
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 799px) {
    .section-p1{
        padding: 40px 40px;
    }
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #333;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }
    #navbar.active{
        right: 0px;
    }
    #navbar li{
        margin-bottom: 25px;
    }
    #mobile{
        display: flex;
        align-items: center;
    }
    #mobile i{
        color: #fff;
        font-size: 24px;
        padding-left: 20px;
    }
    #close{
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }
    #lg-bag{
        display: none;
    }
    
    #hero{
        height: 70vh;
        padding: 0 80px;
        background-position: top 20% right 30%;
    }
    #feature{
        justify-content: center;
    }
    #feature .feature-box {
        margin: 15px 15px;
    }
    .contain-about h3 {
        font-size: 2rem;
        margin: 3rem 0;
    }

    .contain-about p {
        font-size: 0.9rem;
    }
    

    .img-contain {
        height: 8rem;
        width: 8rem;
    }
    .category, .product-side-category {
        height: 14rem;
        max-width: 177px;
        margin: 4px;
        padding: 0.5rem;
    }
    #cati-container {
        justify-content: flex-start;
        margin: 10px;
    }

    .category h3, 
    .product-side-category h3 {
        font-size: 15px;
    }

    .category p {
        font-size: 0.7rem;
    }

    .view-products {
        font-size: 0.7rem;
        padding: 0.3rem;
    }

    .product-heading {
        font-size: 10px;
        margin: 1px;
        height: 50px;
        overflow: scroll;
    }

    .product-price {
        font-size: 12px;
        margin-top: 0.2rem;
    }
}

@media (max-width: 477px) {
    .section-p1{
        padding: 20px;
    }
    #header{
        padding: 10px 30px;
    }
    h1{
        font-size: 38px;
    }
    h2{
        font-size: 32px;
    }
    
    #hero {
        JUSTIFY-CONTENT: flex-start;
        padding: 36px 147px 0px 16px;
        background-position: 55%;
        align-items :flex-start;
    }
    #hero h1 {
        font-size: 28px;
    }
    #feature{
        justify-content: space-between;
    }
    #feature .feature-box {
        width: 130px;
        margin: 0 0 15px 0;
    }
    footer .copyright{
        text-align: start;
    }
    #cati-container {
    color: black;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5px;
}
}

@media (min-width: 320px) and (max-width: 476px) {
    .category,
    .product-side-category {
        max-width: 160px;
    }
}