@import url('https://api.fontshare.com/v2/css?f[]=bespoke-serif@400&f[]=tanker@400&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@1&display=swap');



/* Scroll bar */
body::-webkit-scrollbar{
    width: 0.4rem;
}

body::-webkit-scrollbar-track{
    background:rgb(31, 30, 30) ;
}

body::-webkit-scrollbar-thumb{
    background:rgb(250, 187, 250);
    
}




/* NAV */
/* Transition */

a, .btn {
    transition: all 300ms ease;
}

/* Desktop Nav */
#desktop-nav{
    position: sticky;
    top: 0;
    z-index: 100;
}

.navBar-container{
    background: hsla(0, 0%, 0%, 0.726);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(100px) ;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
    
}

nav, 
.nav-links{
    display: flex;
    flex-direction: row;
    
}


.navBar-container hr {
    
    border: 1px solid rgba(182, 95, 182, 0.493); /* match your border thickness/color */
    
    

}



nav {
    justify-content: space-around;
    align-items: center;
    height: 10vh;
    padding-top: 1rem;
}

.nav-links{
    gap: 2rem;
    list-style: none;
    font-size: 1rem;
    padding-left: 1rem;
    font-weight: 400;
    
}

a{
    color: white;
    text-decoration: none;
    text-decoration-color:white;
}

a:hover{
    color: rgb(255, 253, 253);
    text-decoration: underline;
    text-underline-offset: 0.5rem ;
    text-decoration-color: rgb(250, 187, 250);
    font-weight: bold;
    font-size: 1.5rem;
    
}

.logoName{
    font-size: 1rem;
    color: white;
    cursor: default;
    font-weight: bold;
    opacity: 1;
    /* transition: all 0.5s ease-in-out; */
    padding-right: 1rem;
    
   
    
}

/* .logoName:hover{
    opacity: 0;
    transition: all 0.5s ease-in-out;
} */

/*hamburger menu*/
#hamburger-nav{
    display: none;
    
}

.hamburger-menu{
    position: relative;
    display: inline-block;
}

.hamburger-icon{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 36px;
    width: 45px;
    cursor: pointer;
}

.hamburger-icon span{
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3 ease-in-out;
}

.hamburger-nav-icon img{
    height:2rem;
    
}

.hamburger-nav-icon {
    display: flex;
    gap: 1rem; 
    align-items: center;
}


.menu-links{
    /* position: absolute;
    top: 100%;
    right: 0%;
    width: fit-content;
    max-height: 0 ;
    overflow: hidden ;
    transition: all 0.4s ease-in-out;
    background: hsla(0, 0%, 0%, 0.562);
    backdrop-filter: blur(5000px);
    -webkit-backdrop-filter: blur(20px) ;
    border-radius: 0.5rem; */

    position: absolute;
    top: 100%;
    right: 0%;
    z-index: 9999; /* make sure it's above everything */
    background: rgba(0,0,0,0.9);
    border-radius: 1rem;
    padding: 1rem;
    display: none;
    
    
}





.menu-links a{
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
    
}

.menu-links li{
    list-style: none;
    

}

.menu-links.open{
    display: block;
    min-height: fit-content;
    max-height: 50vh;
    
    

}

.hamburger-icon.open span:first-child{
    transform: rotate(45deg) translate(10px,15px);
}

.hamburger-icon.open span:nth-child(2){
    opacity: 0;
}

.hamburger-icon.open span:last-child{
    
    transform: rotate(-45deg) translate(10px,-15px);
}

.hamburger-icon span:first-child{
    transform: none;
}

.hamburger-icon span:first-child{
    opacity: 1;
}

.hamburger-icon span:first-child{
    transform: none;
}




/* BASE HTML */

html, body {
    min-width: 175px;
}

html{
    scroll-behavior: smooth;
}

body{
   
    /* font-family: 'Bespoke Serif', serif;  */
    /* font-family: 'Tanker', sans-serif;  */
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    
    overflow-x: hidden;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#canvas{
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    pointer-events: none;
    overflow: hidden; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    
}

.all{
    background: hsla(0, 0%, 41%, 0.25);
    backdrop-filter: blur(90px);
    -webkit-backdrop-filter: blur(60px) ;
}



.hero{
    /* font-family: 'Tanker', sans-serif; */
    height: 90vh;
    min-height: 30em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before{
    content: "";
    /* background: hsla(0, 0%, 41%, 0.25);
    backdrop-filter: blur(90px);
    -webkit-backdrop-filter: blur(60px) ; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero div{
    text-align: center;
    z-index: 1;
}

.hero h1{
    font-size: 3rem;
    display: flex;
    /* font-size: clamp(3em,8vw,9em); */
    /* text-transform: uppercase; */
    font-weight: bold;
    padding: 0rem;
    margin: 0rem;
    color: rgb(250, 187, 250);
    
    
    
}

.hero h2{
    font-size: 2rem;
    
    
}




.btn-resume{
    border: 1px rgb(250, 187, 250) solid;
    height: 2rem;
    width: 8rem;
    border-radius: 0.3rem;
    background-color: hsla(0, 0%, 0%, 0.219);
    color: white;
    cursor: pointer;
}

.btn-resume:hover{
    border: 1px white solid;
    height: 2rem;
    width: 8rem;
    border-radius: 0.3rem;
    background-color: rgb(250, 187, 250);
    color: black;
}







.name{
    display:flex;
}

.hero p{
    font-size: 1rem;
    max-width: 600px;
    margin: 0rem;
    padding: 0rem;
}

.introDiv{
    margin: 0rem;

}


.intro1 {
    margin: 0rem; 
    padding: 0rem;
    text-align: start;
    font-weight: 600;
    
    
}

.intro2 {
    margin: 0rem; 
    padding: 0rem;
    text-align: end;
    font-weight: 600;
}







/* .ProfileLinks{
    margin: 3rem;

} */




.Logo{
    width: 1.5rem;
    height: 1.5rem;
    /* margin: 0.5rem; */
    cursor: pointer;
    transition: all 0.2s ease-in-out;

}

.Logo:hover{
    width: 2.5rem;
    height: 2.5rem;
    margin: 0rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    

}

/* .resume{
    
    height: 2.8rem;
}

.ProfileLinks{
    margin: 3rem;

} */




.TopLeft{
    position: absolute;
    width: 2rem;
    height: 2rem;
    bottom: 90%;
    right: 90%;
}

.TopRight{
    position: absolute;
    width: 2rem;
    height: 2rem;
    bottom: 90%;
    left: 90%;
}

.BottomLeft{
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 90%;
    right: 90%;
}

.BottomRight{
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 90%;
    left: 90%;
}


/* NAV */




/* ABOUT */

.about{
    /* height: 100vh; 
    min-height: 30em;*/
    min-height: 100vh;
    max-height:fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    
}

.about::before{
    content: "";
    /* background: hsla(0, 0%, 41%, 0.25);
    backdrop-filter: blur(90px);
    -webkit-backdrop-filter: blur(60px) ; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}






.about div{
    
    z-index: 1;
    
}


.about-container{
    display: flex;
    flex-direction: column;
    border:  #00eeff00 solid 1px;
    min-height: 20rem;
    max-height: fit-content;
    max-width: 80%;
    border-radius: 1rem;
    background: hsla(0, 0%, 0%, 0.486);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(0px);
    
    
}



.about-container hr {
    width: 100%;
    margin: 0;
    border: none;
    border-top: 1px solid rgba(182, 95, 182, 0.493); /* match your border thickness/color */
    align-self: stretch; /* ensures it fills the flex container */
    

}

.container-title{
    padding: 0.3rem;
    padding-left: 1rem;
    color: rgb(250, 187, 250);
}

.about-text{
    padding: 1rem;
}


.about-containers-info{
    display: flex;
    gap:2rem;
    align-content: center;
    justify-content: space-evenly;
    flex-wrap: wrap;

}

.details-container-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 20rem;        
    height: 12rem;       
    padding: 1rem;
    border-radius: 1rem;
    background: hsla(0, 0%, 31%, 0); 
    box-sizing: border-box;
    

}

.details-container-info .icon {
    width: 4rem;         
    height: fit-content;
    object-fit: contain;
    margin-bottom: 1rem;
}
/* Tech */

.space{
    height: 10vh;
    
}

.technologies{
    min-height: 100vh;
    max-height:fit-content;
    width: 100%;
    
}

.technologies-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* space between containers */
    align-items: stretch; /* all children same height */
    color:white;
    padding: 2rem;
    
}

 


.Tech-content-container{
    flex: 1 1 0;           /* all containers grow equally */
    min-width: 12rem;      /* set a minimum width */
    border-radius: 1rem;
    background: hsla(0, 0%, 0%, 0.486);
    backdrop-filter: blur(1px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}


.Tech-content-container hr {
    width: 100%;
    margin: 0;
    border: none;
    border-top: 1px solid rgba(182, 95, 182, 0.493); 
    align-self: stretch;
}








.artical-container{
    padding: 1rem;
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-around;
    /* flex-direction: column; */
}

article{
    display: flex;
    max-width: 10rem;
    justify-content: space-around;
    gap: 0.5rem;
    /* border: white solid 1px; */

}

article .icon{
    cursor: default;
    height: 2.5rem;
    justify-content: center;
    
}

article .tech-name-container{
    /* border: white solid 1px; */
    width: 9rem;
    align-items: flex-start;


}







/* Conatct */


.contact{
    /* height: 100vh; 
    min-height: 30em;*/
    max-height: 100vh;
    min-height:90vh;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    flex-direction: column;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}




.contact-container{
    display: flex;
    flex-direction: column;
    
    border:  #00eeff00 solid 1px;
    min-height: 20rem;
    max-height: fit-content;
    width: 80vw;
    max-width: 95vw;
    border-radius: 1rem;
    background: hsla(0, 0%, 0%, 0.486);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(0px);
    overflow: hidden;
}


.contact-container hr {
    width: 100%;
    margin: 0;
    border: none;
    border-top: 1px solid rgba(182, 95, 182, 0.493); 
    align-self: stretch;
}



.email-form-inputs{
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    padding: 1rem;
}


.contact-inputs{
    font: 'Satoshi';
    font-size: 1rem;
    width: 15rem;
    height: 2.5rem;
    border: none;
    outline: none;
    padding: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-align:left;
    border: 0.1rem solid black;
    max-width: 100%;
    box-sizing: border-box;
    
}

textarea.contact-inputs {
    font: 'Satoshi';
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 12rem;
    padding-top: 0.5rem;
    
}

.contact-inputs:focus{
    border: 0.1rem solid black;
}

.contact-inputs::placeholder{
    color: rgb(196, 196, 196);
    font-family: "Jersey 20", sans-serif;
}


.btn-color-2{
    border: 1px rgb(250, 187, 250) solid;
    height: 2rem;
    width: 4rem;
    border-radius: 0.3rem;
    background-color: hsla(0, 0%, 0%, 0.486);
    color: white;
    cursor: pointer;
}

.btn-color-2:hover{
    border: 1px white solid;
    height: 2rem;
    width: 4rem;
    border-radius: 0.3rem;
    background-color: rgb(250, 187, 250);
    color: black;
}

/* Projects */

#projects{
    min-height: 100vh;
    max-height:fit-content;
    width: 100%;
}

.title-intro{
    display: flex;
    align-items: stretch; 
    color:rgba(182, 95, 182, 0.493);
    padding: 0.5rem;
    justify-content: center;
    
}

.projects-container{
    width: 90%;
    justify-self: center;
    display: flex;
    flex-direction: column;
    color: white;
    gap:2rem

}




.project-content-container{
    /* flex: 1 1 0;           
    min-width: 12rem; */     
    border-radius: 1rem;
    background: hsla(0, 0%, 0%, 0.486);
    backdrop-filter: blur(1px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-height:fit-content;
    
}

.project-content-container hr{
    width: 100%;
    margin: 0;
    border: none;
    border-top: 1px solid rgba(182, 95, 182, 0.493); 
    align-self: stretch;
}


.stack{
    padding-left: 1rem;
    font-weight: 600;
    color: rgb(250, 187, 250);
    
}



.project-vid-text{
    display: flex;
    flex-direction: row;
    align-items: center;             
    flex-wrap: wrap;   
   
}

.projectVid{
    display: flex;
    width: 45%;
    border-radius: 1rem;
    padding: 0.5rem;
    max-height: 35vh;
    
    

}

.projectImg {
    display: flex;
    flex-direction: row;
    
    gap: 1%; 
    align-items: center; 
    justify-content: center;
    
}

.project-text {
    flex-direction: column;
    display: flex;
    padding: 1rem;
    align-items: flex-start; 
    
    
}

.button-container-links{
    
    padding: 1rem;
    justify-content:center;
    align-self: center;
    
}

.noDemoMsg{
    margin-top: 0.5rem;
    color: rgb(134, 27, 27);
}




/* Footer */


.footer{
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.452);
    height: 5vh;
    padding-bottom: 1rem;
    padding-top: 0rem;
    background-color: rgb(0, 0, 0);
}