html {
    background-color: #282828;
}
body {
    width: 100%;
    margin-left: 0px;
    margin-top: 0px;
    position: relative;
    background: #282828;
}
header {
    width: 100%;
    height: 120px;
    top: 0px;
    background: #282828;
    box-shadow: 0px 10px 10px 10px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-between;
    position: sticky;
    z-index: 100;

}
.HeadBox {
    height: 100%;
}
#nav {
    flex-grow: 4;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: end;
    font-style: italic;
}
#Title {
    display: flex;
    flex-grow: 5;
    justify-content: center;
    align-items: center;
}
#logoImg {
    width: 100px;
    height: 100px;
    margin: 10px;
}
#titleImg {
    width: 200px;
    height: 500px;
    margin: 10px;
}
@media screen and (max-width: 1000px) {
    header {
        height: 150px;
        flex-direction: column;
    }   
    #Title {
        height: 50%;
    }
    #nav {
        align-items:center;
        height: 50%;
        margin-top: -80px;
    }
    .navOption {
        height: 20%;
    }
    .navOption h2 {
        margin-top: 30px;
    }
    #logoImg {
        width: 85px;
        height: 85px;
        margin-top: 50px;
        margin-left: 10px;
    }
    #titleImg {
        width: 150px;
        height: 150px;
        margin-top: -60px;
        margin-left: -10px;
    }
}
    

@media screen and (min-width: 1000px) {
    #Title {
        flex-grow: 2;
        
    }
    #nav {
        flex-grow: 10;
    }
    .HeadBox img {
        height: 70px;
        margin: 10px;
    }
    #logoImg {
        width: 125px;
        height: 125px;
        margin-top: 50px;
        margin-left: 50px;
    }
    #titleImg {
        width: 200px;
        height: 200px;
        margin-top: -100px;
        margin-left: -30px;
    }
}

.navOption {
    width: 33.3%;
    height: 37%;
}
.navOption a {
    text-decoration: none;
    color: white;
}
.navOption h2 {
    color: white;
    font-size: 3vw;
    text-align: center;
    margin: auto;
    font-family: Poppins;
    font-weight: 200;
}
@media screen and (min-width: 1000px) {
     #nav {
        justify-content: start;}

    .navOption {
        width: 200px;
        height: 70%;
    }
    .navOption h2 {
        font-size: 22pt;
        margin-top: 10px;
    }
}


@media screen and (max-width: 600px) {
    .navOption h2{
        font-size: 15pt;
    }
        }















/* Main Banner */
#MainBanner {
    width: 100%;
    height: 500px;
}
#MainBanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#BannerBox {
    max-width: 80vw;
    min-height: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    position: relative;
    margin-top: -300px;
    border-radius: 40px;
}
#BannerBox h2 {
    font-size: 4vw;
    font-family: Poppins;
    font-weight: 700;
    text-align: center;
    color: white;
}
@media screen and (max-width: 1000px) {
    #MainBanner {
        height: 300px;
    }
    #BannerBox {
        margin-top: -200px;
        width: 60%;

    }
    #BannerBox h2 {
        font-size: 20pt;
    }

    
}
@media screen and (max-width: 600px) {
    #BannerBox {
        margin-top: -250px;
    }

    
}







/* Show n Del content */

#ShowDelContainer {
    background-color: #282828;
    width: 100%;
    height: 300px;
    display: flex;
    color: white;
    margin-top: 50px;
}
#ShowBox , #DelBox{
    width: 50%;
    height: 100%;
    text-align: center;
    font-size: 2vw;
}
@media screen and (min-width:1000px){
    #ShowBox, #DelBox {
        font-size: 16pt;
    }
}
@media screen and (max-width:800px) {
    #ShowBox, #DelBox {
        font-size: 13pt;
    }
}
#ShowDelHeader {
    font-family: Poppins;
    font-weight: 400;
    margin: 0 auto;
}
#ShowBox p , #DelBox p{
    max-width: 90%;
    margin: 0 auto;
    font-family: Istok Web;
}
#DoublePics {
    display: flex;
    width: 100%;
    height: 300px;
    background-color: aqua;
    margin-top: -50px;
}
#ShowPic, #DelPic {
    width: 50%;
}

@media screen and (max-width:600px){
    #ShowDelContainer {
        flex-direction: column;
        gap: 50px;
    }
    #ShowBox {
        width: 100%;
    }
    #DelBox {
        width: 100%;
    }
    #DoublePics {
        margin-top: 180px;
    }
    #ShowPic {
        width: 100%;
        
    }
    #DelPic {
        display: none;
    }
}




#OurProd {
text-align: center;
color: white;
font-family: Poppins;
font-size: 7vw;
margin-top: 80px;}

/* Product Categories */
#ProductCatContainer {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
    margin-top: -50px;
    
}

.ProductCat {
    flex-basis: calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    height: 0;
    padding-top: calc(33.33% - 20px);
    background-color: rgb(246, 244, 236);
    position: relative;
    border-radius: 20px;
    margin-top: 40px;
}
.ProductCat h2 {
    color: white;
    text-align: center;
    font-family: Poppins;
}
.ProductCat img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 20px;
}
#Gender {
    width: 80%;
    height: 70%;
    margin: 0 auto;
    position: absolute;
    top: 35px;
    left: 20px;
}
/* Media query for smaller screens */
@media screen and (max-width: 600px) {
    .ProductCat {
        flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
        padding-top: calc(50% - 20px);
    }
}






/* Footer */
footer {
    width: 100%;
    margin-top: 100px;
    background-color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    font-family: Poppins;
    font-size: 20pt;
}
#FootLeft {
    width: 50%;
    height: 100%;
}
#FootLeft ul , #FootLeft a, #Footleft:visited{
    list-style-type: none;
    padding: 0;
    margin-left: 10px;
    line-height: 40px;
    margin-top: 50px;
    color: white;
}
#FootLeft h2 {
    font-family: Poppins;
    margin: 10px;
}
@media screen and (max-width:660px){
    #FootLeft h2 {
        font-size: 20pt;
    }
    #FootLeft ul {
        font-size: 15pt;
        margin-top: 0px;
    }
    #FootRight h2 {
        font-size: 20pt;
    }
}
#FootRight {
    width: 50%;
    height: 100%;
}
#FootRight h2 {
    font-family: Poppins;
    margin: 10px;
    text-align: right;
}
#Facebook {
    margin: 0 auto;
    width: 100px;
    border-radius: 20px;
    margin-right: 70px;
    float: right;
    margin-bottom: 10px;
}
@media screen and (max-width:600px){ 
    #Facebook {
        margin-right: 40px;
    }
}
