@import url('https://fonts.googleapis.com/css2?family=Nova+Round&family=Quicksand:wght@300..700&family=Sen:wght@400..800&family=Varela+Round&display=swap');

:root{
    --bg-color:#171717;
    --bg-contacts:#0D3747a1;
    --bg-button:#494ba0;
    --bg-button-hover:#7576cf;

    --font-color:#fff;
    --font-family:"Sen", serif;
    --font-size-01:3.2rem;
    --font-size-02:1.5rem;
    --font-size-03:1.1rem; /*16px*/
    --font-size-04:1rem;
    --font-size-05:0.9rem;

    --bg-section01:linear-gradient(to right, #082531 0%, #292a58 50%, #5E60CE 100%);

    --status-bar:#171717;
    --status-fill:linear-gradient(to right, #595ac2 80%, #fff  100%);
}

/*Contact area ------------------------------------------*/

.sections{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}
.contacts{
    width:90%;
    background:var(--bg-section01);
    height:140px;
    border-top-right-radius:80px;
    border-bottom-right-radius: 80px;
    border: 2px dashed white;
    border-left:0px;
    display:flex;
    align-items:center;
    justify-content: center;
    gap:40px;
    color:var(--font-color)
}
.midia{
    width:40px;
    height:40px;
    margin:5px;
}
.contacts span{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about{
    width:30%;
    margin:20px 40px 20px 30px;
    color:var(--font-color);
    font-size:var(--font-size-03);
    hr{
        margin:10px 0px;
    }
}

/*sections area -------------------------------------------------------------*/

.details{
    height:100%;
    padding:4% 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:50px;
    h2{
        color: var(--font-color);
    }
}
.n04, .n05, .n03{
    display: flex;
    flex-direction: column;
}
.text{
    color:var(--font-color);
    font-size:var(--font-size-03);
    width:50%;
    display:flex;
    gap:10px;
    justify-content: center;
    flex-direction:column;
    h2{
        font-size:var(--font-size-02);
    }
    p{
        font-size: var(--font-size-04);
        text-indent: 20px;
    }
}
.imgs{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.imgs > div{
    display:flex;
    flex-direction: column;
    color:#ddddddb9;
    font-size: var(--font-size-05);
    flex-wrap:wrap;
    width:100%;
    text-align: center;
}
.imgs img{
    width: 100%;
    max-width:250px;
    height:150px;
    background-color: var(--bg-color);
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-in-out;
    position: relative;
    border:3px rgba(255, 255, 255, 0.322) solid;
    filter:brightness(95%);
}
.imgs img:hover, .pictures-project img:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media(max-width:860px){
    .see-projects>div{
        width:clamp(120px, 20vw, 165px);
    }
    .skills-desc{
        margin-top:50px;
        width:100%;
    }
    .descriptions-skills{
        width:100%;
    }
    .sections{
        display:flex;
        flex-wrap: wrap;
    }
    .contacts{
        width:95%;
        height:120px;
    }
    .about{
        width:100%;
        display:flex;
        flex-direction: column;
        justify-content: center;
        margin-top:45px;
        hr{
            width:100%;
        }
    }
    .details{
        display:flex;
        flex-wrap: wrap;
    }
    .wrapper-imgIcon{
        padding:17px 10px;
    }
    .text{
        width:100%;
    }
    .imgs{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
    }
}