/* FONT LOADER */
@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-VariableFont_wght.ttf);
}

@font-face {
    font-family: Merriweather;
    src: url(../fonts/Merriweather-Bold.ttf);
}

@font-face {
    font-family: Heebo;
    src: url(../fonts/Heebo-VariableFont_wght.ttf);
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Regular.ttf);
}

* { 
    font-family: Yu Gothic;
    font-size: 62.5%;
    color: white;
    --dark-mode-bg: rgb(56, 56, 56);
    --dark-mode-txt: white;
    --dark-mode-hov: rgba(128, 128, 128, 0.548);
    --light-mode-bg: white;
    --light-mode-txt: black;
    --light-mode-hov: rgba(128, 128, 128, 0.548);
}

/* Hides the scrollbar ;) */
::-webkit-scrollbar {
    display: none;
}

body {
    background-color: var(--dark-mode-bg);
}

/* CURSOR SETTINGS */
a, 
button {
    cursor: pointer;
}

p, 
h1, 
h2, 
h3, 
h4, 
li {
    cursor: default;
}

/* FADE IN ANIMATION WHEN PAGE LOADED PROPERTY */
.fade-in {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(.18,.91,.22,.92);
}

/* NAME & JOB TITLE SECTION*/
.name-title {
    background-color: var(--dark-mode-bg);
    position: sticky;
    top: 0px;
    padding: 35px 0 70px 5%;
    z-index: 1;
}

.name-title h1 {
    font-family: Merriweather, serif;
    font-size: 10rem; /* 100px; */
    text-decoration: underline rgb(204, 86, 174);
    text-decoration-thickness: 1.1rem;
    Margin: 0;
}

.name-title h3 {
    font-family: Raleway, sans-serif;
    font-size: 5rem; /* 50px; */
    font-weight: lighter;
    Margin: 0;
}

/* MAIN SECTION */
.section-main .info {
    width: 50%;
    margin: 10% 10% 0 5%;
    z-index: 0;
}

.section-main .info p {
    font-size: 1.9rem;
}

/* NAVIGATION SECTION */
.nav .current-page {
    font-family: Heebo, sans-serif;
    font-size: 5.5rem; 
    text-decoration: none;
    line-height: 1.25;
    letter-spacing: 0.2rem;
    padding: 0.5rem; 
    padding-left: 8rem;
    margin: 0.5rem 0;
    font-weight: lighter;
    background-image: linear-gradient(to right, transparent, rgb(163, 76, 141));
    color:white;
}

.section-main .nav {
    position: fixed;
    bottom: 10%;
    right: 20px;
    padding: 0 5%;
}

.section-main .nav ul  {
    text-align: right;
    list-style-position: inside;
    padding-right: 7px;
    border-right: 2px solid rgb(163, 76, 141);
}

.section-main .nav ul li {
    float: top;
}

.section-main .nav a {
    font-family: Heebo, sans-serif;
    font-size: 4rem; 
    text-decoration: none;
    line-height: 8rem;
    letter-spacing: 0.5rem;
    padding: 1rem; 
    font-weight: lighter;
}

.nav a:hover {
    font-size: 4.5rem;
    background-color: rgb(163, 76, 141) /*var(--dark-mode-hov)*/;
    transition: all ease-in-out 200ms;
}

/* --------------------------------------------
MOBILE PHONE SHIT 
<600px */
@media only screen and (max-width: 600px) {

    .name-title h1 {
        font-size: 3.5rem; 
        text-decoration-thickness: 0.3rem;
    }
    
    .name-title h3 {
        font-size: 2rem; 
        Margin: 0;
    }

    .nav .current-page {
        font-size: 2.5rem; 
        line-height: 1.25;
        letter-spacing: 0.2rem;
        padding: 0.5rem; 
        padding-left: 5rem;
        margin: 0.5rem 0;
    }

    .section-main .nav a {
        font-size: 1.5rem; 
        line-height: 4rem;
        letter-spacing: 0.2rem;
        padding: 0.5rem; 
    }

    .section-main .nav a:hover {
        font-size: 2rem;
    }

    .section-main .info p {
        font-size: 1.5rem;
    }
}

/* MOBILE PHONE SHIT 
<601px, 768px  */
@media only screen and (min-width: 601px) and (max-width: 768px) {

    .name-title h1 {
        font-size: 4.5rem; 
        text-decoration-thickness: 0.5rem;
        Margin: 0;
    }
    
    .name-title h3 {
        font-size: 2.5rem; 
    }

    .nav .current-page {
        font-size: 3.5rem;
        line-height: 1.25;
        letter-spacing: 0.5rem;
        padding: 0.5rem; 
        padding-left: 4rem;
        margin: 0.5rem 0;
    }

    .section-main .nav a {
        font-size: 2.5rem; 
        line-height: 5rem;
        letter-spacing: 0.2rem;
        padding: 0.5rem;
    }

    .section-main .nav a:hover {
        font-size: 3rem;
    }

    .section-main .info p {
        font-size: 1.9rem;
    }
}

/* MOBILE PHONE SHIT 
<769px, 992px  */
@media only screen and (min-width: 769px) and (max-width: 992px) {

    .name-title h1 {
        font-size: 6rem; 
        text-decoration-thickness: 0.7rem;
    }
    
    .name-title h3 {
        font-size: 2.5rem; 
    }

    .nav .current-page {
        font-size: 3.5rem;
        line-height: 1.25;
        letter-spacing: 0.5rem;
        padding: 0.5rem; 
        padding-left: 5rem;
        margin: 0.5rem 0;
    }

    .section-main .nav a {
        font-size: 2.5rem; 
        line-height: 5rem;
        letter-spacing: 0.2rem;
        padding: 0.5rem;
    }

    .section-main .nav a:hover {
        font-size: 3rem;
    }

    .section-main .info p {
        font-size: 1.9rem;
    }
}

/* MOBILE PHONE SHIT 
<993px, 1200px  */
@media only screen and (min-width: 993px) and (max-width: 1400px) {

    .name-title h1 {
        font-size: 7rem; 
        text-decoration-thickness: 0.9rem;
    }
    
    .name-title h3 {
        font-size: 4rem; 
    }

    .nav .current-page {
        font-size: 4rem;
        line-height: 1.25;
        letter-spacing: 0.7rem;
        padding: 0.5rem; 
        padding-left: 7rem;
        margin: 0.5rem 0;
    }

    .section-main .nav a {
        font-size: 3rem; 
        line-height: 6rem;
        letter-spacing: 0.5rem;
        padding: 0.5rem;
    }

    .section-main .nav a:hover {
        font-size: 3.5rem;
    }

    .section-main .info p {
        font-size: 1.9rem;
    }
}