*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .40s ease;
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
    color: unset;
}
:root{
    --bg-colorz: #080E17;
    --bg-color: #1f242d;
    --text-color: #fff;
    --main-color: hsl(222, 100%, 61%);
}
.F-center{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
body{
    background-color: var(--bg-color);
    color: var(--text-color);
}
nav{
    color: var(--text-color);
}
nav ul{
    margin-top: 5px;
    display: flex;
    flex-direction: row;
}
nav ul li{

    font-size: large;
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 5px;
    height: 30px;
    width: 70px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .40s ease;
}
nav ul li:hover{
    background-color: var(--main-color);
    border-radius: 5%;
}




#hero{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: rows;
    width: 98%;
    height: 60vh;
}
#part-1{
    width: 60%;
    height: 100%;
}
#part-2{
    width: 40%;
    height: 100%;
}

#part-2 img{
    width: 250px;
    height: 250px;
    transition: all .5s ease;
}

#part-2 img:hover{
    transform: scale(1.3)translateX(-100px);
}
.detail h4{
    margin: 5px;
    
}
.detail h2{
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    overflow: hidden;
    border-right: 3px solid var(--main-color);
    white-space: nowrap;
    animation: typing 3s steps(50 , end) infinite;
}

@keyframes typing {
            from{
                width: 0;
            }
            to {
                width: 100%;
            }
        }

.detail input{
    width: 100%;
    padding: 5px;
    
}
.btn{
    background-color: var(--main-color);
    color: white;
    width: 70px;
    height: 25px;
    margin-top: 5px;
    border: none;
    border-radius: 5%;
    transition: all .40s ease;
}
.btn:hover{
    background-color: var(--text-color);
    color: var(--main-color);
    
}

/* //////////////////////section////////////////////// */

.shop{

    background-color: var(--bg-color);
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    grid-gap: 1rem;
}
.box{
    height: 250px;
    color: var(--text-color);
    border: 2px solid rgb(255, 255, 255);
    background-color: transparent;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    transition: all .20s ease-in-out;
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range: entry 0%;
    color: white;
}
.box:hover{
    transform: scale(1.02);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 2px black;
}
.box img{
    background-size: cover/contain;
    height: 40%;
    width: 100%;
}
.box p{
    height: 35px;
    overflow: hidden;
    font-size: smaller;
    margin: 2px;
}
.box h5{
    /* font-weight: lighter; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: var(--main-color);
}

@keyframes appear {
            from{
                opacity: 0;
                scale: 0.7;
            }
            to {
                opacity: 1;
                scale: 1;
            }
        }

.arang{
    align-self: flex-end;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;

}
.dropdown{

    position: absolute;
    top: 3rem;
    right: 4rem;
    width: 300px;
    background-color:  #192641a9;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    border: 2px solid white;
    border-radius: 10px;
    display: none;


}
.dropdown li{
    list-style: none;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav i{
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
    display: none;
}

  .icon{
        display: none;

    }


    


/* +++++++++++++++++++++++++ contact section ++++++++++++++++++++++++++++ */

.contact{
    padding: 60px 13%;
    display: flex;
    flex-direction: column;
    background-color: var(--second-bg-color);
}

.main-contact{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,auto));
    gap: 2rem;
}
.contact-content img{
    height: auto;
    width: 100px;
    margin-bottom: 30px;
    position: relative;
    right: 18px;
    bottom: 15px;
    transition: all .40s ease-in-out;
}

.contact-content li{
    list-style: none;
    margin-bottom: 20px;
}
.contact-content li a{
    text-decoration: none;
    display: block;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all .40s ease-in-out;
}
.contact-content li a:hover{
    color: var(--main-color);
    transform: translateX(10px);
    font-style: italic;

}
.social{
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.social a i{
    font-size: 25px;
    padding: 0;
    margin: 0;
}
.social a {
    /* box-sizing: border-box; */
    margin: .5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    color: var(--text-color);
    /* background-color: var(--text-color); */
    transition: all .30s ease-in-out;
    /* border: 2px solid var(--text-color); */
    

}
.social a:hover{
    color: var(--text-color);
    box-shadow: 0 0 5px rgba(0, 235, 235, 0.76);
    background-color: var(--main-color);
    
}



/* ////////////////////////////////////////////////////////////////////// */



@media (max-width:600px) {

    .dropdown{
        display: block;
    }
    .icon{
        font-size: 25px;
        display: block;
        padding: 5px;
        margin: 10px;
    }
    #close{
        display: none;
    }
    #hero{
        margin-top: 20px;
        flex-direction: column;
        padding: 10px;
    }
    #part-1{
        width: 99%;
    }
    #part-2{
        width: 99%;
    }
    nav ul{
        display: none;
    }
    
}
@media (max-width : 400px) {
    .dropdown{
        display: block;
        width: 100%;
        position: absolute;
        left: 0rem;
        right: 0rem;
    }
    
}










