@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');
@font-face {
    font-family: "American";
    src: url(/assets/AmericanCaptain.otf) format('opentype');
}

:root {
    /* --light: #fcfcfc;
    --bg-color: #d3d3d3;
    --sec-color: #c1c2c2;
    --thd-color: #000;
    --fth-color: #09090970;
    --text-color: #090909; */
    
    --text-color: #e2e2e2;
    --text-low: #e2e2e2c2;
    --light: #ffffff;
    --fth-color: #c1c2c2;
    --thd-color: #000;
    --sec-color: #09090970;
    --bg-color: #090909;
    
    --bigger: 12rem;
    --Heading: 5rem;
    --Subheading: 4rem;
    --Desc: 1.2rem;
    --Title: 2.5rem;
    --SubTitle: 1.35rem;
}

* {
    transition: .3s ease-in-out;
    user-select: none;
    font-weight: 400;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
    scroll-behavior: smooth;
}

html,
body {
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "poppins" , sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-items: center; */
    background: var(--text-color);
    color: var(--bg-color);
    text-align: center;
}

a {
    text-decoration: none;
    color: var(--bg-color);
}

#ctn{
    width: 94%;
    height: fit-content;
    margin-top: 15vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 200px;
}
.filtersCtn{
    display: flex;
    flex-direction: column;
    text-align: left;
    width: fit-content;
    padding: 20px;
    margin-right: 20px;
    overflow: scroll;
}
.filtersCtn h1{
    font-family: "american", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}
.filterswr{
    display: flex;
    flex-direction: column;
}
.filtersCtn span{
    font-family: "poppins", sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    margin-left: 50px;
    cursor: pointer;
    text-transform: uppercase;
}
.filtersCtn span:hover{
    font-weight: 500;
}

.productsCtn{
    background: var(--light);
    width: 80%;
    height: fit-content;
    margin-top: 80px;
    border-radius: 35px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    padding: 20px;
    /* padding-right: 30px; */
}
.productsCtn div{
    /* aspect-ratio: 1/1; */
    height: auto;
    width: 99%;
    background: var(--light);
    border-radius: 15px;
}
.product{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sec-color);
    flex-direction: column;
}
.product.hidden{
    display: none;
}
.product.vis{
    display: flex;
}
.product img{
    aspect-ratio: 1/1;
    height: auto;
    width: 50%;
    border-radius: 15px;
    margin: 20px;
}
.add{
    position: relative;
    /* justify-self: flex-end; */
    margin-bottom: 10px;
    background: var(--text-color);
    border: 1px solid var(--bg-color);
    padding: 8px;
    padding-inline: 15px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'poppins', sans-serif;
}

footer{
    background: var(--bg-color);
    width: 94%;
    align-self: center;
    height: fit-content;
    margin-bottom: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: center;
}
#footerTop{
    display: flex;
    flex-direction: row;
    width: 96%;
    align-items: top;
    height: fit-content;
    margin-top: 20px;
    /* padding-bottom: 100px; */
}

#footerLogo{
    background: url(/assets/LOGOBlack.svg);
    width: 30%;
    height: 100px;
    align-self: flex-start;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    filter: invert();
    /* margin-top: 20px; */
    /* background: #000; */
}
#sitemap{
    color: var(--text-color);
    background: transparent;
    font-family: "american", sans-serif;
    font-size: var(--Desc);
    margin-left: 150px;
    padding-left: 50px;
    padding-bottom: 100px;
    border-left: 2px solid var(--text-color);
    height: max-content;
    display: flex;
    flex-direction: column;
    /* background: #000; */
}
#sitemap h1,
#Fproducts h1,
#Fcontact h1{
    margin: 0 !important;
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 1.7rem;
    letter-spacing: 2px;
}
#sitemap span,
#Fproducts span,
#Fcontact span{
    font-family: "poppins", sans-serif;
    font-size: 1rem;
    margin-top: 5px;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    /* background: #ffffff; */
}
#Fproducts,
#Fcontact{
    color: var(--text-color);
    background: transparent;
    font-family: "american", sans-serif;
    font-size: var(--Desc);
    margin-left: 150px;
    padding-left: 50px;
    /* border-left: 2px solid var(--text-color); */
    height: 90%;
    display: flex;
    flex-direction: column;
}
#Fcontact span{
    text-transform: none;
}

#footerBottom{
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    margin-top: 20px;
    padding: 20px;
    width: 94%;
    border-top: 2px solid var(--text-color);
}

.hover:hover{
    box-shadow: 0 0 8px 0 var(--bg-color);
}


/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||| RESPOSIVE STYLES |||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */

@media (max-width: 400px) {
    :root{
        --bigger: 5rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    #ctn{
        flex-direction: column;
    }
    .filtersCtn h1{
        font-size: var(--Title);
    }
    .filtersCtn{
        margin-left: -10px;
    }
    .filterswr{
        flex-direction: row;
        overflow-x: auto;
        margin-left: -15px;
        margin-right: 15px;
        /* gap: 15px; */
        width: 100vw;
        -webkit-overflow-scrolling: touch;
    }
    .filtersCtn span{
        flex: 0 0 auto;
        font-size: var(--Desc);
        margin: 0;
        border: 2px solid var(--bg-color);
        padding-inline: 10px;
        border-radius: 46px;
        margin-right: 10px;
    }
    .productsCtn{
        grid-template-columns: repeat(2, 1fr);
        width: 89%;
        margin-top: 0;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
    
}

@media (min-width: 401px) and (max-width: 450px) {
    :root{
        --bigger: 5rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    #ctn{
        flex-direction: column;
    }
    .filtersCtn h1{
        font-size: var(--Title);
    }
    .filtersCtn{
        margin-left: -10px;
    }
    .filterswr{
        flex-direction: row;
        overflow-x: auto;
        margin-left: -15px;
        margin-right: 15px;
        /* gap: 15px; */
        width: 100vw;
        -webkit-overflow-scrolling: touch;
    }
    .filtersCtn span{
        flex: 0 0 auto;
        font-size: var(--Desc);
        margin: 0;
        border: 2px solid var(--bg-color);
        padding-inline: 10px;
        border-radius: 46px;
        margin-right: 10px;
    }
    .productsCtn{
        grid-template-columns: repeat(2, 1fr);
        width: 89%;
        margin-top: 0;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 451px) and (max-width: 649px) {
    :root{
        --bigger: 7rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    #ctn{
        flex-direction: column;
    }
    .filtersCtn h1{
        font-size: var(--Title);
    }
    .filtersCtn{
        margin-left: -10px;
    }
    .filterswr{
        flex-direction: row;
        overflow-x: auto;
        margin-left: -15px;
        margin-right: 15px;
        /* gap: 15px; */
        width: 100vw;
        -webkit-overflow-scrolling: touch;
    }
    .filtersCtn span{
        flex: 0 0 auto;
        font-size: var(--Desc);
        margin: 0;
        border: 2px solid var(--bg-color);
        padding-inline: 10px;
        border-radius: 46px;
        margin-right: 10px;
    }
    .productsCtn{
        grid-template-columns: repeat(2, 1fr);
        width: 89%;
        margin-top: 0;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 650px) and (max-width: 949px) {
    :root{
        --bigger: 10rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    #ctn{
        flex-direction: column;
    }
    .filtersCtn h1{
        font-size: var(--Title);
    }
    .filtersCtn{
        margin-left: -25px;
    }
    .filterswr{
        flex-direction: row;
        overflow-x: auto;
        margin-left: -15px;
        margin-right: 15px;
        /* gap: 15px; */
        width: 100vw;
        -webkit-overflow-scrolling: touch;
    }
    .filtersCtn span{
        flex: 0 0 auto;
        font-size: var(--Desc);
        margin: 0;
        border: 2px solid var(--bg-color);
        padding-inline: 10px;
        border-radius: 46px;
        margin-right: 10px;
    }
    .productsCtn{
        grid-template-columns: repeat(4, 1fr);
        width: 95%;
        margin-top: 0;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 950px) and (max-width: 1025px) {
    :root{
        --bigger: 10rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    .productsCtn{
        grid-template-columns: repeat(4, 1fr);
        width: 89%;
        margin-top: 50px;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 1026px) and (max-width: 1366px) {
    :root {
        --bigger: 20rem;
        --Heading: 4rem;
        --Subheading: 3rem;
        --Desc: 1rem;
        --Title: 2rem;
        --SubTitle: 1.35rem;
    }
    #footerTop span{
        font-size: 0.8rem;
    }
    #footerLogo{
        width: 600px;
        margin: 0;
    }
    #Fproducts{
        /* background: #000; */
        width: 40%;
    }
}