/* En-tête / Section de présentation */
.header {
    place-content: center;
    background: url(../assets/imgPrincipal.png) no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    height: 50vh;
}

.header .text {
    padding: 0 25px;
}

.header .text h1 {
    font-weight: bold; 
    font-size: 70px;
}

.header .text p {
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0;
}

.badge-web {
    display: inline-block;
    padding: 1px 9px;
    font-size: 14px;
    white-space: nowrap;
    background-color: #f3e8ff;
    color: #7e22ce;
    border-radius: 9999px;
    border: 1px solid #7e22ce;
}

.header .text .social-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 30%;
    font-size: 28px;
    text-decoration: none;
    margin-right: 10px;
    margin-top: 10px;
    transition: .5s ease-in;
}

.header .text .social-icon a:hover {
    background: #f3e8ff;
    color: #7e22ce;
    box-shadow: 0 0 20px #f3e8ff, 0 0 40px #f3e8ff;
    border: 2px solid #7e22ce;
}


@media screen and (max-width: 840px) {
    .header {
        height: 40vh;
    }

    .header .text h1 {
        font-size: 50px;
    }

    .header .text p {
        font-size: 15px;
        margin: 10px 0;
    }

    .header .text .social-icon a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media screen and (max-width: 640px) {
    .header {
        height: 30vh;
    }

    .header .badge-web {
        font-size: 12px;
    }

    .header .text h1 {
        font-size: 35px;
    }

    .header .text p {
        font-size: 13px;
        margin: 5px 0;
    }

    .header .text .social-icon a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}