/* Default Background - rgb(11, 18, 21)*/
/* Dark Default Background - rgb(7, 11, 13) */

/* Fonts --------------- */
@font-face { font-family: NexaHev; src: url("fonts/Nexa-Heavy.ttf"); }
@font-face { font-family: NexaLig; src: url("fonts/Nexa-ExtraLight.ttf"); }

html{
    background-color: rgb(11, 18, 21);
    overflow-x: hidden;
    overflow-y: auto;
}

/* Home Page Nav ----------------------- */
#home-nav{
    display: flex;
    background-color: transparent; /* FOR DEBUG - SET Default Background WHEN NOT DEBUG */
    width: 100%;
    height: 10%;
    position: fixed;
   overflow: hidden;
   top: 0%;
   left: 0%;
   border-radius: 5px;
  
   z-index: 1;
}

#nav-title{
    display: flex;
    color: white;
    font-size: 30px;
    width: 100px;
    height: 30px;
    font-family: NexaHev;
    position: fixed;
    left: 4%;
    top: 0%;
    padding-right: 2px;
    gap: 2px;
    z-index: 2;
        
}


#nav-git{
    display: flex;
    color: white;
    font-family: NexaHev;
    background-color: transparent; /* FOR DEBUG - SET Default Background WHEN NOT DEBUG */
    border: transparent;
    font-size: 30px;
    position: fixed;
    top: 2.5%;
    right: 4%;
    height: 45px;
    transition-duration: .4s;
    

}
#nav-git:hover{

   
}

/* Home Page Section One --------------------------- */

/* Default Background - rgb(11, 18, 21)*/

#section-1{
    width: 100%;
    height: 100%;
    overflow-x: hidden;     
    background: linear-gradient(to left, rgb(139, 97, 12), rgb(11, 18, 21) 90% ); /* FOR DEBUG - SET Default Background WHEN NOT DEBUG */
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 0;
   

    
}


#section-1-title{
    color: white;
    font-family: NexaLig;
    font-size: 50px;
    position: absolute;
    left: 35%;
    top: 45%;
    text-align: left;
    width: 700px;
    transform: translate(-50%, -50%);
    animation: section-1-title-entrance 2s ease-in-out;
     z-index: 0;
}

@keyframes section-1-title-entrance {

    0%{
        opacity: 0%;
        left: 30%;

    }

    100%{
        opacity: 100%;
        left: 35%;
        
    }
    
}



#section-1-button{
    color: white;
    font-family: NexaHev;
    font-size: 40px;
    position: absolute;
    left: 18%;
    top: 70%;
    
    transform: translate(-50%, -50%);
    transition-duration: .4s;
    border-radius: 5px;
    background: transparent; /* FOR DEBUG - SET Default Background WHEN NOT DEBUG */
    border: transparent;
     z-index: 0;
     animation: section-1-button-entrance 3s ease-in-out;
}

#section-1-button:hover{
    color: rgb(255, 190, 69);
    left: 19%;
       
}


@keyframes section-1-button-entrance{
    0%{
        opacity: 0%;
        left: 10%;
        

    }
    100%{
        opacity: 100%;
        left: 18%;

        
    }
}






/* Lesson Choice ------------------------------------------ */

#lesson-section{
    width: 99%;

}

#lessons-bck{
    width: 300px;
    height: 700px;
    position: absolute;
    left: 50%;
    top: 90%;
    transform: translate(-50%, -50%);
    background-color: (11, 18, 21);
    
}

#lessons-title{
    font-family: NexaLig;
    color: white;
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
}



#lessons-inventor{
    font-family: NexaLig;
    color: white;
    font-size: 30px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);

   
    background-color: rgb(11, 18, 21);
    border: transparent; 
    transition-duration: .4s;   
}

#lessons-inventor:hover{
    color: rgb(219, 155, 43);
}

#lessons-fusion{
    font-family: NexaLig;
    color: white;
    font-size: 30px;
    position: absolute;
    
    
    background-color: rgb(11, 18, 21);
    border: transparent;
    transition-duration: .4s;
}

#lessons-fusion:hover{
    color: rgb(219, 155, 43);
}

#lessons-solidworks{
    font-family: NexaLig;
    color: white;
    font-size: 30px;
    position: absolute;
   
    background-color: rgb(11, 18, 21);
    border: transparent;
    transition-duration: .4s;
}

#lessons-solidworks:hover{
    color: rgb(219, 155, 43);
}

#lessons-bambu{
    font-family: NexaLig;
    color: white;
    font-size: 30px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
     left: 50%;
    transform: translate(-50%, -50%);
   
    background-color: rgb(11, 18, 21);
    border: transparent;
    transition-duration: .4s;
}

#lessons-bambu:hover{
    color: rgb(219, 155, 43);

}

#lessons-creality{
    font-family: NexaLig;
    color: white;
    font-size: 30px;
    position: absolute;

    background-color: rgb(11, 18, 21);
    border: transparent;
    transition-duration: .4s;
}

#lessons-creality:hover{
    color: rgb(219, 155, 43);

}