
.hero-section{
    display: flex;
    flex-direction: column;
    width: 80vw;
    min-height: 100vh;
    margin: auto;
}

.hero-section > h1{
    margin-top: 80px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 46px;
    font-size: clamp(40px, 6.8vw, 64px); /* 18 */
}

.hero-section > .presentation{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.hero-section > .presentation > .image{
    /* min-width: 33%;
    max-width: 250px; */
    width: clamp(50px, 33%, 250px);
    /* max-height: 250px; */
    aspect-ratio: 1 / 1;
    border-radius: 17%;
}

.hero-section > .presentation > .image > img{
    width: 100%;
    height: 100%;
    /* max-height: 250px;
    max-width: 250px; */
    border-radius: 10%;
    aspect-ratio: 1 / 1;
}

.hero-section > .presentation > .infos-box > .infos > h3{
    font-size: 18px;
    font-size: clamp(14px, 2.5vw, 22px);
    font-weight: 400;
}
.hero-section > .presentation > .infos-box > .links > a{
    display: block;
    margin-top: 5px;
}

.hero-section > .presentation > .infos-box > .links > a > img{
    width: 15px;
    margin-left: 10px;
    margin-bottom: -2px;
}

.hero-section > .texts{
    margin-top: 60px;
    max-width: 800px;
}

.hero-section > .images{
    display: flex;
    width: 100%;
    /* max-height: 100vh; */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    /* height: auto; */
    padding-bottom: 60px;
    padding-top: 60px;
}

.hero-section > .images > .image{
    /* max-height: 33vh; */
    height: 50vh;
    aspect-ratio: initial;
}

.hero-section > .images > .image > img{
    width: 100%;
    height: 100%;
    aspect-ratio: initial;
    border-radius: 8px;
    object-fit: cover;
    
}

.texts a{
    font-size: 1.05rem;
    text-decoration: underline;
}

.texts img{
    max-width: clamp(100%, 100vw, 600px);
    max-height: 100vh;
}


.contact-section{
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    height: 70vh;
    background-color: var(--background);
    color: var(--text);
    
}

.contact-section > h3{
    font-size: 42px;
    font-size: clamp(33px, 6vw, 51px); /* 18 */
    font-weight: 600;
}

.contact-section > img{
    width: 25%;
    max-width: 200px;
    min-width: 150px;
    border-radius: 1000000px;
}

.contact-section > a{
    color: var(--text);
    font-size: 26px;
    font-size: clamp(20px, 3.6vw, 32px); /* 18 */
    padding-top: 40px;
}

.contact-section > .socials{
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    max-width: 250px;
    gap: 50px;
}

.contact-section > .socials .social{
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

footer{
    padding-top: 30px;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 18px;
    font-size: clamp(14px, 2.5vw, 22px); /* 18 */
    font-weight: 300;
    position: relative;
    bottom: 0;
    background-color: var(--background);
    color: var(--text);
}

footer a{
    color: var(--text);
}

@media screen and (min-width: 750px) {
    .hero-section > .images{
        justify-content: start;
    }
}

@media screen and (min-width: 1024px) {

}