/* 
    Content of CSS:
    01GEN GENERAL - General CSS Setup
    02NAV NAV - Nav / Header of Web
    03MAI MAIN - Main Content of Website
    04FOO FOOTER - Footer of Website
    05RFD ROW FLEX DIV - Row Flex Column system
    06SCR SCROLLBAR - Scrollbar used in website
    07MED MEDIA QUERY - Media Query incl GEN NAV MAIN FOOTER
*/


/* 01GEN GENERAL */
*{
    box-sizing: border-box;
    font-family: 'roboto'; 
    font-weight: 200;
}

body {
    display: grid;
    margin: 0px;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    background-color: white;
}
/* END GENERAL */


/* 02NAV NAV */
header{
    margin: 0px;
    background-color: #333;
}
header > nav{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
header > nav > a{
    height: 100px;
    padding: 20px 0px 20px 20px;
}
header > nav > a > svg{
    height: 100%;
}
header > nav > a > svg .vynn{
    transition: 0.3s;
    fill: #333333;
    stroke: white;
    stroke-width: 4;
}
header > nav > a:hover > svg .vynn{
    fill: #FF6160;
    stroke: #333333;
    stroke-width: 1;
}
header > nav > a > svg .code{
    transition: 0.3s;
    fill: white;
}
header > nav > a:hover > svg .code{
    fill: #7FFFD4;
}
header > nav > ul{
    display: flex;
    width: fit-content;
    margin: 0px;
    padding: 0px;
    
    justify-content: end;
    list-style-type: none;
}
header > nav > ul > li{
    display: block;
    padding: 40px 20px;
}
header > nav > ul > li > a{
    padding: 0px 10px 10px;
    font-size: 1.2em;
    font-weight: 300;
    text-decoration: none;
    color: white;
    border-bottom: 2px dashed transparent;
    transition: 0.3s;
}
header > nav > ul > li.active > a{
    border-bottom: 2px solid white;
}
header > nav > ul > li > a:hover{
    color: #7FFFD4;
    border-bottom: 2px solid #7FFFD4;
}
/* END NAV */


/* 03MAI MAIN */
.container{ /* TODO width for each screen size */
    margin: 0px auto;
    width: 100%;
    padding-top: 1px;
    margin-top: -1px;
    
    position: relative;
}
.full-container{
    width: 100%;
    padding-top: 1px;
    margin-top: -1px;

    position: relative;
}
/* END MAIN */


/* 04FOO FOOTER */
footer{
    padding: 40px 0px 40px;
    background-color: #333;
    color: white;
}
footer ul.list-social-media{
    display: flex;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    gap: 30px;
    justify-content: center;
}
footer ul.list-social-media > li{
    display: block;
    padding: 0px;
    margin: 0px 0px 10px;
    list-style-type: none;
}
footer .copyright{
    text-align: center;
    font-size: 1.2em;
    color: #aaa;
}
/* END FOOTER */


/* 05RFL ROW FLEX DIV  */
.row{
    display: flex;
}
.align-items-center{
    align-items: center;
}
.item{
    flex: 1;
}
/* END ROW FLEX DIV  */


/* 06SCR SCROLLBAR  */
body{ overflow: overlay; }
/* width */
::-webkit-scrollbar {
    width: 16px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #141414; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #7FFFD4; 
    border-radius: 9999px;
    border: 4px solid transparent;
    background-clip: padding-box;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #999; 
    border-radius: 9999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}
/* END SCROLLBAR  */


/* 07MED MEDIA QUERY */
/* BS4 Screen Size for now... */
/* XS Extra small devices (portrait phones, less than 576px) DEFAULT */

/* SM Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    .container{
        width: 560px;
    }
}

/* MD Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .container{
        width: 720px;
    }
}

/* LG Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    .container{
        width: 960px;
    }
}

/* XL Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    .container{
        width: 1180px;
    }
}


/* XS Reverse*/
@media (max-width: 576px) { 
    header > nav{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    header > nav > a{
        padding: 0px;
        padding: 20px 0px;
    }
    header > nav > ul{
        width: 100%;
    }
    header > nav > ul > li{
        flex: 1;
        text-align: center;
        padding-top: 20px;
    }
    header > nav > ul > li > a{
        font-size: 4vw;
    }
}
/* SM Reverse*/
@media (max-width: 768px) {     
    .none-md{
        display: none;
    }
}
/* MD Reverse*/
@media (max-width: 992px) { }
/* LG Reverse*/
@media (max-width: 1200px) { }
/* XL Reverse*/

/* END MEDIA QUERY */