:root{
    --font-white: #FFFFFF;    
    --backgraound-color: #000000;
}

*{
    font-family: 'Montserrat', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--backgraound-color);  
    color: var(--font-white);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
  }
   
  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
   
  body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    width: 4px;
    background-color: darkgrey;
    outline: 1px solid slategrey;
  }

.data-container{
    height: calc(100vh);
    background-image: url(src/bgpattern.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 60px;
    box-sizing: border-box;
    position: relative;
}

.on-constuction{
    padding-top: 1px;
    height: calc(100vh);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    text-align: center;
}

.data-page{
    z-index: 9;
}

/* Header */

#header{
    position: fixed;
    backdrop-filter: blur(10px);
    top: 0;
    height: 60px;
    width: 100vw;
    z-index: 2;
    display: flex;
    align-items: center;
}

.logo{
    display: flex;
    align-items: center;
    width: 50vw;
    height: 60px;
    justify-content: space-between;
}

.logo .logo-text{
    font-size: 1rem;
    margin-left: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.logo-png img{
    height: 35px;
    margin-left: 15px;
}

/* Menu */
.menu{
    display: flex;
    width: 50vh;
    height: 60px;
    align-items: center;
    justify-content: end;
}

.nav-mobile{
    display: flex;
    box-sizing: border-box;
}

.nav-mobile i{
    font-size: 32px;
    margin-right: 15px;
    cursor: pointer;
}

.mobile-menu{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.mobile-menu-btns{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 60px);
    margin-top: -30px;
}

.mobile-down-btns{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(50vh - 60px);
    margin-top: -30px;
    width: 100%;
}

.mobile-down-btns .nav-button:not(:last-child){
    border-bottom: 1px solid;
}

.mobile-down-btns .nav-button{
    width: 60%;
    text-align: center;
    font-size: 1.3rem;
    padding-top: 25px;
    padding-bottom: 25px;
    cursor: auto;
}

.mobile-menu-close{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.mobile-menu-close i{
    font-size: 28px;
    margin-right: 15px;
    cursor: pointer;
}

.mobile-menu-btns .nav-button{
    width: 60%;
    text-align: center;
    font-size: 1.5rem;
    padding-top: 25px;
    padding-bottom: 25px;
}

.mobile-menu-btns .nav-button:not(:last-child){
    border-bottom: 1px solid;
}
.nav-desktop{
    display: none;
}

.nav-button{
    cursor: pointer;
    margin-left: 40px;
    margin-right: 40px;
}

a{
    color: var(--font-white);
    text-decoration: none;
}

a:hover{
    color: #cecece;
}

.nav-button:hover{
    color: #cecece;
}
/* SPECIALS ALL PAGES */

.page{
    position: absolute;
    left: 30px;
    bottom: 100px;
    user-select: none;
    font-size: 60px;
    font-weight: 800;
    border-bottom: 7px solid #ffff;
}


.my-scroll{
    position: absolute;
    display: flex;
    align-items: flex-end;
    height: 100vh;
    font-size: 14px;
    bottom: 100px;
    right: 20px;
    user-select: none;
    z-index: 1;
    width: 25px; 
}

.scroll{
    writing-mode: vertical-rl; 
    text-transform: uppercase;
    user-select: none; 
}

.scroll-button:hover{
    cursor: pointer;
    color: #cecece;
}

/* DATA PAGE */
.data-page{
    height: 100%;
}


/* PAGE 01 */
.data-page .profile-pic{
    width: 65%;
}

.c01{
    text-align: center;
    display: flex;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 65vh;
    user-select: none;
}

.text-over{
    font-weight: 800;
    text-transform: uppercase;
}

.text-over .first{
    font-size: 38px;
}

.text-over .second{
    font-size: 20px;
    letter-spacing: 14px;
    padding-left: 15px;
}

.text-over .third{
    font-weight: 300;
}

/* C02 */

.c02{
    width: 80%;
    margin: auto;
    padding-top: 15px;
    text-align: center;
}

.c02 .title{
    text-align: center;
    font-size: 18px;
    font-weight: 800;
}

.c02 img{
    display: none;
}

.my-p{
    text-align: justify;
    font-size: 16px;
}

.hide{
    display: none;
}

.skills-btn{
    width: 80%;
    height: 50px;
    background-color: transparent;
    color: var(--font-white);
    border: 1px solid var(--font-white);
    cursor: pointer;
}

.myskills{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.circle-close{
    border: 1px solid #FFFFFF;
    padding: 15px;
    border-radius: 100%;
    cursor: pointer;
}

/* C04 */
.c04{
    width: 100vw;
    box-sizing: border-box;
}

.c04 .data-page{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -150px;
}

.contact-desktop{
    display: none;
}

.form-contact{
    display: flex;
    flex-direction: column;
    width: 100vw;
    align-items: center;
    justify-content: center;
}

.c04 input{
    background-color: #cccdcc;
    border: none;
    border-radius: 20px;
    padding: 10px;
    outline:none;
    width: 80%;
    margin-top: 10px;
}

.c04 textarea{
    background-color: #cccdcc;
    border: none;
    border-radius: 20px;
    padding: 10px;
    outline:none;
    resize: none;
    height: 75px;
    width: 80%;
    margin-top: 10px;
}

.c04 input::placeholder{
    color: #000000;
}
.c04 textarea::placeholder{
    color: #000000;
}

.send{
    width: 80%;
    height: 50px;
    background-color: transparent;
    color: var(--font-white);
    border: 1px solid var(--font-white);
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
}

.contact-icons-mobile{
    color:var(--font-white);
    display: flex;
    justify-content: space-around;
    font-size: 24px;
    width: 75%;
    margin-top: 20px;
}

.contact-icon{
    padding: 10px;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    border: 1px solid var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-contact{
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.option-contact .icon{
    font-size: 32px;
    margin-right: 25px;
    margin-bottom: 15px;
    color: #4f4f4e;
    margin-top: 15px;
}

.option-contact .text{
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
}

.title-contact{
    font-weight: 800;
    font-size: 28px;
    padding-bottom: 25px;
    text-align: center;
}

.option-contact:not(last-child):hover{
    background-color: rgba(255, 255, 255, .1);
    border-radius: 5px;
    cursor: pointer;
}

.contact{
    margin-top: 80px;
}


/* MEDIAS */
@media (min-width:500px) {
    .logo{
        width:150px;
    }

    .menu{
        display: flex;
        width: calc(100vw - 150px);
        height: 60px;
        align-items: center;
        justify-content: end;
    }

    .c01{
        height: 80vh;
    }
}
@media (min-width: 700px) {
    .page{
        font-size: 100px;
        bottom: 35px;
        left: 35px;
    }

    .c01{
        flex-direction: row-reverse;
    }

    .text-over{
        margin-left: -18vw;
        z-index: 1;
    }

    .text-over .first{
        font-size: 3rem;
    }
    
    .text-over .second{
        font-size: 1.9rem;
        letter-spacing: 14px;
        padding-left: 15px;
    }
    
    .text-over .third{
        font-weight: 300;
        font-size: 1.3rem;
    }

    .profile-pic{
        width: 400px !important;
    }

    .c04 textarea{
        height: 150px;
    }
  
}

@media (min-width: 800px) {

    .nav-mobile{
        display: none;
    }

    .nav-desktop{
        display: flex;
    }

    .page{
        font-size: 124px;
        bottom: 60px;
        left: 60px;
    }

    .my-scroll{
        bottom: 60px;
        right: 60px;
        font-size: 20px;
    }

    .c02{
        margin-top: -130px;
        display: flex;
        align-items: center;
    }

    .data-text:nth-child(3){
        display: none;
    }

    .c02 img{
        width: 40vw;
        height: 35vw;
    }

    

    .my-p{
        font-size: 24px;
    }

    .c02 .title{
        font-size: 40px;
    }
}

@media (min-width:1000px) {
    .text-over{
        margin-left: -20vh;
    }

    .text-over .first{
        font-size: 6rem;
    }
    
    .text-over .second{
        font-size: 4.8rem;
        letter-spacing: 14px;
        padding-left: 15px;
    }
    
    .text-over .third{
        font-weight: 300;
        font-size: 2.5rem;
    }

    .profile-pic{
        width: 32% !important;
    }

    .c02{
        margin-top: -50px;
    }

    .skills-btn{
        display: none;
    }

    .hide{
        display: block;
    }

    .c02 .title{
        font-size: 1.6rem;
    }

    .c02 .my-p{
        font-size: 1rem;
    }

    .c02 img{
        display: block;
    }

    .c04 .contact-icons-mobile{
        display: none;
    }

    .c04 .contact-desktop{
        display: block;
    }

    .c04 .data-page{
        flex-direction: row;
    }

    .data-page .form-contact{
        width: 70vh!important;
    }

    .c04 .data-page{
        margin-top: -50px;
    }
}

@media (min-width:1100px) {

    .c02 {
        margin-top: -100px !important;
    }
    .c02 .title{
        font-size: 36px;
    }

    .hide{
        display: block;
    }

    .c02 .my-p{
        font-size: 21px;
    }
}

@media (min-width:1500px) {
    .c02 .title{
        font-size: 40px;
    }

    .c02 .my-p{
        font-size: 20px;
    }
}