:root {
    --primary: rgb(159, 87, 0);
    --bg: rgb(0, 0, 0);
    --gren: rgb(0, 115, 0);
}
@font-face {
    font-family: rascon;
    src: url(fonts/Rascon.woff);
}
@font-face {
    font-family: breakwater;
    src: url(fonts/Breakwater.woff);
}
@font-face {
    font-family: aileronsb;
    src: url(fonts/Aileron-SemiBold.woff);
}
@font-face {
    font-family: aileronbold ;
    src: url(fonts/Aileron-Regular.woff);
}
@font-face {
    font-family: aileron;
    src: url(fonts/Aileron-Regular.woff);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}
html{
    transition: 1s linear;
    scroll-behavior: smooth;
}
body{
    transition: 1s linear;

    height: 3000px;
    font-family: aileron;
    color: white;
    background-color: var(--bg);
}

/* Navbar */
.navbar{
    opacity: .95;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.549);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 7%;
    border-radius: 0 0 10px 20px;
    box-shadow: 0 0 10px  var(--primary);
    background-image: url(assets/board.jpg);
    background-position: center;
    background-size: cover;
    background-position-y: 44%;
    background-blend-mode: darken;
    transition: 500ms linear;
}
.navbar-logo{
    mix-blend-mode: screen;
    padding: .4rem .9rem;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.445);
    text-shadow: -4px 5px 7px var(--primary);
    color: white;
    font-size: 2.3rem;
    font-family: rascon;
    font-style: italic;
    box-shadow: 0 0 10px  black;
    transition: 300ms linear;

}
.x{
    font-size: 1.5rem;
}
.navbar .navbar-logo span{
    /* color: rgb(0, 37, 0); */
    color: rgb(81, 199, 81);
}
.navbar-logo:hover{
    filter: brightness(.9);
    /* text-shadow: none; */
    text-shadow: 4px -5px 7px rgb(0, 115, 0);
    transition: 300ms linear;
}
.navbar .navbar-nav a{
    box-shadow: 0 0 20px 2px black;
    padding: 1px calc(.4vw);
    border-radius: 5px;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.313);
    display: inline-block;
    font-size: 1.5rem;
    margin: 1.1rem;
    font-family: breakwater;
    font-weight: 900;
    color: white;
    
}
.navbar .navbar-nav a::after{
    content: '';
    display: block;
    padding-bottom:0.2rem ;
    border-bottom: 0.1rem solid var(--primary);
    transform: scale(0);
    transition: 500ms linear;

}
.navbar .navbar-nav a:hover::after{
    transform: scale(.8);
    transition: 500ms linear;
}
.navbar .navbar-nav a:hover{
    transition: 300ms ;
    transition-delay: 100ms;
    text-shadow: 0px 0px 2px rgb(0, 0, 0);
    color: var(--primary);
    transition: 500ms linear;

}
.navbar .navbar-extra a{
    box-shadow: 0 0 20px 2px black;
    padding: 1.3rem .1rem;
    border-radius: 50%;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.504);
    color: white;
    margin: 0.7rem;

}
.navbar .navbar-extra a:hover{
    transition: 400ms ease-in-out;
    text-shadow: 0px 0px 2px rgb(0, 0, 0);
    color: var(--primary);
}
#menu-humberger{
    display: none;
}

/* Navbar Search form */
.navbar .search-form{
    transform: scalex(.1);
    opacity: 0;
    position: absolute;
    /* top: -99px; */
    top: 130%;
    right: 3%;
    background-color: rgba(254, 254, 254, 0.535);
    width: 40rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    border-radius: 30px;
    box-shadow: -1px -1px 10px  3px rgba(0, 0, 0, 0.598);
    /* box-shadow: 0 0px 10px black inset; */
    transform-origin: right;
    transition: transform 400ms 200ms linear, opacity 500ms linear;

}
.navbar .active{
    /* z-index: -999; */

    /* top: 130%; */

    opacity: 1;
    transform: scaley(1);
    transition: transform 400ms 200ms linear, opacity 4s 200ms linear, 1s ease-in;
}
.navbar .search-form input{
    box-shadow: 0 4px 10px black;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    color: var(--primary);
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.709);
}
.navbar .search-form label{
    cursor: pointer;
    font-size: 2rem;
    margin: 1.7rem 1rem 1rem .8rem;
    color: var(--bg);
}
.navbar .search-form label:hover{
    color: var(--primary);
}

/* Shooping cart start*/

.shopping-cart{
    border-radius: 20px 0 0 20px;
    position: absolute;
    top: 100%;
    right: -100%;
    height: 100vh;
    width: 35rem;
    padding: 0 1.5rem ;
    color: var(--bg);
    background-color: rgb(186, 186, 186);
    transition: 1s;
    backdrop-filter: blur(10px);
}
.shopping-cart.active{
    transition: 1s;
    right: 0;
}
.shopping-cart .cart-item{
    background-color: rgba(167, 94, 4, 0.578);
    border-radius: 20px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 2px dashed rgba(51, 51, 51, 0.393);
    position: relative;
}
.shopping-cart img{
    border-radius: 50%;
    height: 6rem;
}
.shopping-cart h3{
    font-size: 1.6rem;
    padding-bottom: .5rem;
}
.shopping-cart .item-price{
    font-size: 1.2rem;
}
.shopping-cart .remove-item{
    position: absolute;
    right: 1rem;
    cursor: pointer;
    justify-items: center;
}
.shopping-cart .remove-item:hover{
    color: rgba(171, 0, 0, 0.86);
}



/* Shooping cart end*/

/* Hero section */
.hero{
    mask-image: linear-gradient(rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url(assets/amd\ tower.jpg);
    background-size: cover;
    background-position: center;
    background-position-y: 50px;
}

.hero .content{
    top: 150px;
    position: fixed;
    padding: 1.4rem 7%;
    /* max-width: 50rem; */
    width: 100%;
    text-align: center;
}
.hero .content h1{
    font-weight: 900;
    font-family: breakwater;
    font-size: 5em;
    color: #fff;
    text-shadow: 2px 2px 5px black;
    line-height: 1.2;
}
.hero .content h1 span{
    color: var(--gren);
}
.hero .content p{
    font-size: 1.6rem;
    margin-top: 1rem;
    line-height: 1.4;
    text-shadow: 2px 2px 5px black;
    font-family: rascon;
}
.hero .content a{
    background-image: linear-gradient(to top, rgb(159, 87, 0),rgb(160, 102, 32));
    margin-top: 2rem;
    /* background-color: var(--primary); */
    padding: 1rem 2rem;
    border-radius: 7px; 
    font-size: 2.1rem;
    font-family: aileronbold;
    color: #fff;
    display: inline-block;
    box-shadow: 0 0 5px black;
    font-weight: 900;
    text-shadow: -2px 2px 2px black;
    transition: .4s linear;
}
.hero .content a:hover{
    transform: translateY(-4px);
    transition: .2s linear;
    color: var(--primary);
    background-image: linear-gradient( rgb(39, 26, 0), rgb(69, 47, 2));
    /* background-color: rgb(39, 26, 0); */
}

/* About me */
.about{
    transition: 1s linear;

    padding: 10rem 7% 1.4rem;
}
.about h2{
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
}
.about h2 span{
    color: var(--primary);
}

.about .row {
    display: flex;
    
}
.about .row .about-img{
    flex: 1 1 45rem;
}
.about .row .about-img img{
    width: 100%;
    border-radius: 20px;
    
}
/* .about .row .about-img img::after{
    content: '';
    display: block;
    position: absolute;
    width: co;
    height: ;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.961) 1%, rgba(0, 0, 0, 0) 50%);
} */
.about .row .content {
    margin-left: 2rem;
    flex: 1 1 35rem;
    padding: 0 1rem;
}
.about .row .content h3{
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
.about .row .content p{
    transition: 1s linear;

    color: rgba(235, 231, 231, 0.819);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 100;
    line-height: 1.6;
}

/* Menu */
.menu{
    padding: 10rem 7% 1.4rem;
}
.menu h2, .contact h2{
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}
.menu h2 span, .contact h2 span{
    color: var(--primary);
}
.menu p, .contact p{
    color: rgba(235, 231, 231, 0.819);
    text-align: center;
    max-width: 30rem;
    margin: auto;
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.6;
}
.menu .row{
    display: flex;
    flex-wrap: wrap;
    margin-top: .5rem;
    justify-content: center;
    gap: 7rem;
    row-gap: 5rem;
}
.menu .row .menu-card{
    text-align: center;
    padding-bottom: 1rem;
}
.menu .row .menu-card img {
    cursor: pointer;
    width: 20rem;
    /* border-radius: 50%; */
    transition: 500ms linear ;

}
.menu .row .menu-card h3{
    transition: 500ms linear 500ms;

}
.menu .row .menu-card img:hover {
    transform: translateY(-15px) scale(1.1) ;
    /* transform: rotatey( 90deg ); */
    transition: .5s ease-in-out;
}
.menu .row .menu-card img:hover ~ h3  {
    color: var(--primary);
    transform: translateY(-5px);
    transition: 500ms ease-in-out .4s;
    text-shadow: 0 0 10px black;
    z-index: 99;
}
.menu .row .menu-card .menu-card-title{
    margin: 1rem auto 1rem;
}
.menu .row .menu-card .menu-card-title{
    font-family: rascon;
    font-weight: 100;
    font-size: 1.4rem;
    color: rgb(213, 213, 213);
}

/* .menu .row .menu-card .mobo {
    width: 15rem;
}
.menu .row .menu-card .cpu {
    width: 17rem;
}
.menu .row .menu-card .psu {
    width: 15rem;
} */
.menu .row .menu-card .mobo:hover, .cpu:hover {
    filter: drop-shadow( 0 50px 90px rgba(255, 0, 0, 0.441) );
}
.menu .row .menu-card .gpu:hover {
    filter: drop-shadow( 0 50px 90px rgba(17, 255, 0, 0.578) );
}
.menu .row .menu-card .ssd:hover, .ram:hover {
    filter: drop-shadow( 0 50px 90px rgba(8, 0, 255, 0.557) );
}
.menu .row .menu-card .psu:hover {
    filter: drop-shadow( 0 50px 90px rgba(255, 255, 0, 0.57) );
}




/* Contact start*/
.contact .row{
    border-radius: 20px;
    display: flex;
    margin-top: 2rem;
    /* flex-wrap: wrap; */
    background-color: rgb(44, 44, 44);
    margin: .5rem 2rem;
}
.contact .row .map{
    transition: 1s ease-out;
    filter: brightness(.7);
    border-radius: 20px;
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 3px 20px 2px black;
}
.contact .row .map:hover{
    filter: brightness(1);
    transition: 200ms ease-out;
}
.contact .row form {
    flex: 1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;

}
.contact .row form .input-group{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    background-color: var(--bg);
    border: 1px solid #eee;
    padding-left: 2rem;
    border-radius: 10px;

}
.contact .row form .input-group input{
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    background: none;
    color: #fff;
}
.contact .row form .btn{
    font-family: rascon;
    border-radius: 50px;
    border: 2px solid white;
    margin-top: 3rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.797);
    text-shadow: 2px 2px 5px black;
    background-color: var(--primary);
    cursor: pointer;
    box-shadow: 0 3px 5px rgb(0, 0, 0);
    transition: .2s linear;
}
.contact .row form .btn:hover{
    transition: .2s linear;
    color: var(--primary);
    background-color: rgb(39, 26, 0);
    border: 2px solid rgba(142, 142, 142, 0.724);
    box-shadow: 0 3px 5px rgb(167, 167, 167);


}

/* Footer Start */
footer{
    margin-top: 3rem;
    background-color: var(--primary);
    padding: 1rem 3rem;
    text-align: center;
    border-radius: 10px 10px 0 0;
}
footer .social a{
    color: #fff;
    margin: 1rem;
    filter: drop-shadow( 0 5px 5px black );
    transition: 300ms ease-in-out;
}
footer .social a:hover{
    color: var(--bg);
    transition: 300ms ease-in-out;
    filter: drop-shadow( 0 5px 5px white );
    
}
footer .links{
    margin: 1rem;
}
footer .links a{
    font-family: rascon;
    color: #fff;
    padding: 0.7rem 1rem;
    text-shadow: 0 0 5px black;
    transition: 300ms ease-in-out;
}
footer .links a:hover{
    color: rgb(0, 0, 0);
    transition: 300ms ease-in-out;

}

footer .credit{
    font-size: 1rem;
}
footer .credit a{
    color: var(--bg);
    font-weight: 100;
}
/* Footer End*/


/* Media Queries */

/* Laptop */
@media (max-width: 1366px) {
    html{
        font-size: 75%;
    }
}



/* Tablet */
@media (max-width: 768px) {
    html{
        font-size: 65%;
    }
    #menu-humberger{
        display: inline;
    }
    .navbar-nav{
        border-radius: 20px 0 0 20px;
        right: -999px;
        /* transform: scaleX(0); */
        /* transform-origin: right; */
        top: 150%;
        position: absolute;
        background-color: #0000009c;
        width: 15rem;
        height: 70vh;
        display: block;
        backdrop-filter: blur(10px);
        transition: 2s ease-in-out;
        box-shadow: 0 0 20px rgb(0, 0, 0);
        border-right: rgba(0, 0, 0, 0);
        /* background-size: cover; */
        /* background-position: center; */
        /* background-blend-mode: overlay; */
    }
    .navbar .navbar-nav a{
        display: block;
        font-weight: 900;
        font-size: 2.3rem;
        text-align: center;
        margin-top: 3rem;
        backdrop-filter: blur(10px);
        border-radius: 50px;
        background-color: rgba(0, 0, 0, 0);
        /* color: var(--bg); */
        box-shadow: 0 0 20px 2px #0000007f;
    }
    .active{
        /* transform: scaleX(1); */

        right: 0;
        transition: 20s ease-in-out;
    }
    .hero{
        background-image: url('assets/tower\ orange.jpg');
        background-position-y: -3rem;
        background-repeat: no-repeat;
    }
    /* .about .row .about-img img{
        content: url(assets/custom\ green.jpg); */
    .about .row {
        flex-wrap: wrap;
    }
    .about .row .about-img img{
        object-fit: cover;
        height: 90%;
    }
    .about .row .content{
        padding: 0;
    }
    .about .row .content h3{
        margin-top: 1rem;
        font-size: 2rem;
    }

    .contact .row{
        flex-wrap: wrap;
    }
    .contact .row .map{
        height:30rem;
    }   
    .contact .row form{
        padding-top: 0;
    }
}



/* Mobile */
@media (max-width: 450px) {
    html{
        font-size: 55%;
    }
    .navbar .search-form{   
        /* left: 9%; */
        right: 4.5rem;
        width: 80%;
        
    }
}