
@font-face {
    font-family: 'Deltha';
    src: url('fonts/Deltha.otf') format('opentype'),
        url('fonts/Deltha.ttf') format('truetype'),
}
@font-face {
    font-family:'Manrope';
    src: url('fonts/Manrope.ttf') format('truetype')
}
:root{
    --font: 'Manrope', sans-serif;
    --background-color: #141414;
    --writing-1: rgb(105, 0, 0);
    --writing-2: #fff;
}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: var(--font);
}
html {
    scroll-behavior: smooth;
    max-width: 100%;
}
body{
    background-color: var(--background-color);
    width: 100%;
    color: var(--writing-2);
    overflow-x: hidden;
}
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
    background-image: url(images/noise.jpg);
    background-repeat: repeat;
}
.red-shadow{
    box-shadow: 1px 1px 10px var(--writing-1);
}
ul{
    list-style: none;

}
li{
    width: fit-content;
}
a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.go-back{
    position: fixed;
    bottom: 4vw;
    right: 4vw;
    z-index: 100;
    width:70px;
    height:70px;
    border-radius: 100px;
    background: #acacac3b;
    color: white;
    transition: all 1s;
    font-size: 30px;
    border: 1px solid #ffffff75;
}
.go-back:hover{
    background: red ;
    color: #333;
    box-shadow: 1px 1px 10px #333;
    cursor: pointer;
}
.navBar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    backdrop-filter: blur(40px);
    position: fixed;
    top:0;
    width: 100%;
    padding-right: 5%;
    padding-left: 3%;
    padding-top: 0.5%;
    z-index: 9999;
    box-shadow:1px 10px 30px black;
}
.logo{
    font-size: 2vw;
    font-family: 'Deltha' , sans-serif;
    padding-bottom: 1%;
}
.logo:hover{
    color: var(--writing-1);
    cursor: pointer;
}
.navLinks {
    display: flex;
    flex-direction: row;
    font-weight: lighter;
    font-style: normal;
    padding-right: 30vw;
    padding-bottom: 1%;
    font-size: 1vw;
    gap: 6vw;
}
.navLinks li{
    padding: 2%;
    transition: all 0.2s;
}
.navLinks li:hover{
    background: var(--writing-1);
    cursor: pointer;
    border-radius:5px ;
}
.hamburger{
    display: none;
}
.navBar-hamburger{
    display: none;
}
.hero{
    width: 100vw;
    position: relative;
}
.hero-img{
    width: 99.2vw;
}
.hero-img-phone{
    display: none;
}
.hero-writing{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font);
    font-weight: bold;
}
.hero-title{
    position:absolute;
    top:13vw;
    left:6vw;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.btn-hero{
    font-size: 2vw;
    background: transparent;
    backdrop-filter: blur(40px);
    border: 1px solid #ffffff75;
    border-radius: 30px;
    padding: 5%;
    margin-top: 5vw ;
}
.btn-hero:hover{
    background: var(--writing-1);
    cursor: pointer;
}
.hero-writing h1{
    font-size: 9vw;
    font-weight: bolder;
    font-family: 'Deltha' , sans-serif ;
}
.hero-writing p{
    font-size:2.5vw;
}

.about{
    font-size: 1.3vw;
    margin-top: 15%;
    margin-left: 15%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.about-title{
    font-size: 3.3vw;
    margin-bottom: 7%;
    font-weight: bold;
}
.container-who{
    width: 45vw;
    margin-right:5%;
    
}
.container-who p:nth-child(2){
    font-size:2vw;
    margin-bottom: 4%;
}
.container-who p:nth-child(3){
    color: #ffffffcb;
}
.container-exp-5y , .container-exp-40p{
    width: 10vw;
    height: 6vw;
    margin-bottom: 10%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #acacac1e;
    text-align: center;
}
.container-exp-5y p:nth-child(1) , .container-exp-40p p:nth-child(1) {
    font-size: 3vw;
    font-weight: bold;
}
.container-exp-5y p:nth-child(2) , .container-exp-40p p:nth-child(2) {
    font-size: 0.7vw;
    font-weight: 100;
}
.skills{
    display: flex;
    flex-direction: column;
    font-size: 1.3vw;
    margin-top: 15%;
    padding-left: 15%;
}
.container-skills{
    display:grid;
    grid-template-columns: repeat(5,12vw);
    gap:3vw;
}
.skills-title{
    font-size: 3.3vw;
    margin-bottom: 7%;
    font-weight: bold;
}
.container-svg{
    position: relative;
    width: 100%;
    height: 100%;
}
.container-svg:hover{
    cursor: pointer;
}
.svg{
    width:100%;
    height: 100%;
}
.svg-circle-main{
    stroke: #ffffff75;
    stroke-width: 0.5vw;
    stroke-dasharray: 300;
    fill: none;
}
.svg-circle-fill{
    stroke: white;
    stroke-width: 0.5vw;
    stroke-dasharray: 300;
    fill: none;
}
.svg-text{
    text-anchor: middle;
    fill: var(--writing-2);
    font-size: 1.5vw;
}
.svg-img{
    width: 4vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.python{
    stroke-dashoffset: 45;
}
.django{
    stroke-dashoffset: 120;
}
.js{
    stroke-dashoffset: 30;
}
.css{
    stroke-dashoffset: 75;
}
.react{
    stroke-dashoffset: 150;
}
.threejs{
    stroke-dashoffset: 150;
}
.mongo{
    stroke-dashoffset: 150;
}
.json{
    stroke-dashoffset: 120;
}
.git{
    stroke-dashoffset: 30;
}
.github{
    stroke-dashoffset: 30;
}
.projects{
    display: flex;
    flex-direction: column;
    margin-top:15%;
    margin-left: 15%;
}
.projects-title{
    font-size: 3.3vw;
    margin-bottom: 7%;
    font-weight: bold;
}
.container-projects{
    display: grid;
    grid-template-columns: repeat(3,25vw);
    margin-right: 15% ;
}
.container-project-img{
    width: 22vw;
    height: 22vw;
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
}
.project-img{
    width:100%;
}
.container-project-img:hover{
    cursor: pointer;
    
}
.filter{
    position: absolute;
    top:0%;
    left:0%;
    inset: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(0.3) opacity(50%);
    border: 1px  black;
}
.see-more{
    position: absolute;
    z-index: 30;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    color: red;
    background:#333;
    backdrop-filter: blur(10px);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1vw;
    border-radius: 40px;
    border: 1px solid red;
}
.project-window-filter{
    position: fixed;
    top:0%;
    left:0%;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 9900;
}
.project-window{
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(50px);
    position: fixed;
    top:20%;
    left: 10%;
    z-index: 9998;
    width: 80vw;
    height: 30vw;
    border: 2px solid #ffffff75;
    border-radius: 20px;
    gap: 2%;
    overflow-x: hidden;
}
.project-window-img-container{
    width: 100%;
    height: 1vh;
    overflow-x: hidden;
    overflow-y: hidden;
}
.project-window-img{
    width: 30%;
    height: 80%;
}
.project-window-text{
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 48vw;
}
.project-window-title{
    font-size: 2.8vw;
    font-weight: bold;
}
.project-window-description{
    font-size: 1.16vw;
    margin-top:1vw;
}
.project-window-example{
    display: flex;
    flex-direction: row;
    gap:1vw;
    margin-top: 1vw;
    overflow-x: hidden;
}
.project-example{
    border: 1px solid #ffffff75;
    padding: 1%;
    border-radius: 5px;
}
.project-example:hover{
    cursor: pointer;
    color: var(--writing-1);
    border: 1px solid var(--writing-1);
}
.x{
    position: absolute;
    top:2%;
    right:1%;
    font-weight: bold;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-right: 1.3%;
    padding-left: 1.3%;
    transition: all 0.3;
}
.x:hover{
    color:var(--writing-1);
    box-shadow: 1px 1px 10px var(--writing-1);
    border-radius: 1000px;
    cursor: pointer;
}
.projects-1 , .projects-2 , .projects-3{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}
.container-project-infos{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.projects-containers-title{
    color: var(--writing-2);
    font-size: 30px;
    margin-bottom:4%;
    margin-top: 8%;
}
.projects-containers-title:hover{
    color:var(--writing-1);
    cursor: pointer;
}
.projects-containers-text{
    color: #ffffffad;
    margin-bottom: 4%;
}
.projects-containers-skills{
    font-size: 0.8vw;
    display: flex;
    flex-direction: row;
    margin:0;
    gap:1vw;
    justify-content: center;

}
.projects-containers-skills p{
    background: #acacac1e;
    border-radius: 2px;
    padding: 2%;
    margin: 0;
    color: #ffffff75;
}
.projects-containers-skills p:hover{
    cursor: pointer;
    color: var(--writing-1);
}
.contact{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top:15%;
    margin-left: 15%;
    margin-right: 10vw;
    margin-bottom: 10%;
}
.contact-form{
    display: flex;
    flex-direction: column;
    padding: 5%;
    width: 34vw;
    height: 30vw;
    background: #acacac1e;
}
.contact-form input {
    border: none;
    background: transparent;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
    outline: none;
    color: var(--writing-2);
    font-size: 30px;
    
}
.contact-form textarea{
    border: none;
    background: transparent;
    resize: none;
    outline: none;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
    font-size: 30px;
    color: var(--writing-2);
    
}
.contact-form input::placeholder , .contact-form textarea::placeholder{
    color: #ffffffad;
    font-size: 30px;
    font: var(--font);
    font-weight: 100;
}
.contact-form button{
    background: transparent;
    border: 1px solid #ffffff75;
    color: #fff;
    padding:4%;
    font-size: 25px;
    font-weight: 200;
    transition: all 1s;
}
.contact-form button:hover{
    background-color: #fff;
    color: var(--background-color);
    cursor: pointer;
}
.contact-info{
    display: flex;
    flex-direction: column;
    gap:1vw;
}
.contact-info-me{
    font-size: 2.4vw;
    width: 70%;
    font-weight: bold;
}
.contact-info-title{
    font-size: 1.5vw;
    font-weight: 200;
    color: #ffffff75;
}
.contact-info-content{
    font-size: 2vw;
}
.contact-info-content-link{
    transition: all 0.2s;
}
.contact-info-content-link:hover{
    cursor: pointer;
    color: var(--writing-1);
}
.social-media{
    display: grid;
    grid-template-columns: repeat(4,2.5vw);
    gap: 6%;
}
.container-social-media-img:hover{
    cursor: pointer;
}
.social-media-img{
    width: 100%;
    opacity: 0.8;
}
.footer-data{
    border-top: 1px solid #ffffff75;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 2%;
    padding-top: 2%;
    width: 100%;
}
.footer-data p {
    color: #ffffffad;
    font-weight: 100;
    font-size: 1.3vw;
}
.footer-data p:nth-child(2):hover{
    color: var(--writing-1);
    cursor: pointer;
}
.hide{
    display: none !important;
}

@media (max-width:440px){
    html{
        overflow-x: hidden;
    }
    .navBar{
        height: 16vw;
    }
    .navLinks{
        display: none;
    }
    .hamburger {
        display: flex;
        justify-content: center;
        align-items: center;  
        width: 12vw;
        height: 12vw;
        border: 1px solid #ffffff38;
        border-radius: 5px;
        text-align: center;
        padding:1% 0.5%;
    }
    .hamburger img{
        width: 9vw;
    }
    .logo{
        font-size: 9vw;
    }
    .logo:hover{
        color: var(--writing-2);
    }
    .navBar-hamburger-filter{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 900;
        width: 100%;
        height: 100%;
        background: transparent;
        backdrop-filter: blur(10px);
    }
    .navBar-hamburger{
        display: flex;
        flex-direction: column;
        position: fixed;
        z-index: 9999;
        top: 17vw;
        right: 0;
        background:transparent;
        backdrop-filter: blur(40px);
        width: 55vw;
        height: 100%;
        border-radius: 5px;
        gap:40%
    }
    .navLinks-hamburger{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .navLinks-hamburger li{
        border-bottom:0.1px solid  #ffffff75;
        padding-bottom: 6vw;
        width: 100%;
        text-align: center;
        padding: 6vw;
    }
    .red{
        background: var(--writing-1) !important; 
    }
    .red-color{
        color:var(--writing-1) !important ;
    }
    .social-media-hamburger{
        display: flex;
        flex-direction:row;
        align-items: center;
        width: 100%;
        gap: 7%;
        text-align: center;
    }
    .social-media-hamburger-img{
        width: 70%;
    }
    .hero-img{
        display: none;
    }
    .hero-title{
        top:145vw;
        left: 50vw;
        transform: translate(-50%,-50%);
        text-align: center;
    }
    .hero-writing h1{
        font-size: 17vw;
    }
    .hero-writing p{
        font-size:4vw;
    }
    .btn-hero{
        font-size: 7vw;
    }
    .btn-hero:hover{
        background: transparent;
    }
    .hero-img-phone{
        display: block;
        width: 100%;
        height: 175vw;
    }
    .container-hero-img{
        position: relative;
        width: 100%;
    }
    .container-hero-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 20%, transparent 80%);
    }
    .go-back{
    bottom: 2vw;
    left: 50vw;
    width: 30vw;
    transform: translate(-50%, -50%);
    height: 10.5vw;
    font-size: 8vw;
    }
    .go-back:hover{
        background: #acacac3b;
        color:var(--writing-2)
    }
    .about{
        display: flex;
        flex-direction: column;
        gap: 10vw;
        margin-left: 0;
    }
    .about-title ,.skills-title, .projects-title {
        font-size: 12vw;
    }
    .container-who{
        width: 90vw;
        margin-right: 0;
        text-align: center;
    }
    .container-who p:nth-child(2){
        font-size: 6vw;
    }
    .container-who p:nth-child(3){
        font-size: 4.5vw;
    }
    .container-exp{
        display: flex;
        flex-direction: row;
        gap: 10%;
    }
    .container-exp-5y , .container-exp-40p{
        width: 40vw;
        height: 20vw;
    }
    .container-exp-5y p:nth-child(1) , .container-exp-40p p:nth-child(1){
        font-size: 10vw;
    }
    .container-exp-5y p:nth-child(2) , .container-exp-40p p:nth-child(2){
        font-size: 3vw;
    }
    .skills{
        margin-left: 0;
        padding-left: 0;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .container-skills{
        grid-template-columns: repeat(2,42vw);
    }
    .svg-img{
        width: 20vw;
    }
    .svg-text{
        font-size: 7vw;
    }
    .svg-circle-main{
        stroke-width: 2vw;
    }
    .svg-circle-fill{
        stroke-width: 2vw;
    }
    .projects{
        margin-left: 0;
        align-items: center;
        text-align: center;
        margin-top: 50vw;
        padding: 0;
        width: 100%;
    }
    .see-more{
        font-size: 4vw;
    }
    .project-window{
        flex-direction: column;
        width: 90vw;
        height: 70vh;
        top:10%;
        left: 5%;
    }
    .project-window-img{
        width: 50vw;
        height: auto;
    }
    .project-window-title{
        font-size: 9vw;
    }
    .project-window-description{
        font-size: 3vw;
    }
    .project-window-text{
        width: 90%;
    }
    .project-window-example{
        font-size: 2vw;
    }
    .x{
        top:2%;
        right:4%;
        padding:2% 3%;
        border-radius:1000px ;
    }
    .x:hover{
        color:var(--writing-2);
        box-shadow: none;
    }
    .projects-1 , .projects-2 , .projects-3{
        width: 100%;
    }
    .container-projects{
        grid-template-columns: repeat(1, 90vw);
        text-align: center;
        margin: 0 auto;
        gap: 20vw;
        width: 90vw;
    }
    .projects-containers-title:hover{
        color: var(--writing-2);
    }
    .container-project-img{
    width: 90vw;
    height: 90vw;
    }
    .projects-containers-skills{
    font-size: 3vw;
    gap: 4vw;
    }
    .contact{
        flex-direction: column;
        margin-right: 0;
        margin-left: 0;
        align-items: center;
        margin-top: 40vw;
    }
    .contact-info{
        text-align: center;
        align-items: center;
        gap: 6vw;
    }
    .contact-info-me{
        font-size: 10vw;
        margin-bottom: 10vw;
    }
    .contact-info-title{
        font-size: 5vw;
    }
    .contact-info-content{
        font-size: 6vw;
    }
    .contact-info-content-link:hover{
    color: var(--writing-2);
    }
    .social-media{
        grid-template-columns: repeat(4,10vw);
        gap: 6vw;
    }
    .social-media-img{
        margin-top: 7vw;
    }
    .contact-form{
    width: 90vw;
    height: 90vw;
    margin-top: 40vw;
    }
    .contact-form input::placeholder , .contact-form textarea::placeholder , .contact-form input , .contact-form textarea{
        font-size: 5vw;
    }
    .footer-data{
        flex-direction: column;
        text-align: center;
        height: 40vw;
    }
    .footer-data p{
        font-size: 6vw;
    }
    .footer-data p:nth-child(2):hover{
    color: var(--writing-2);
    }

}

