
.hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-bottom: 40px;
}

.hero-header img {
    transition: all 0.5s ease;
    border-radius: 75% 3% / 20%;
    cursor: help;
}

.name-highlight-box {
    width: fit-content;
    height: fit-content;
    background-color: var(--background-color-minor-highlight);
    border-radius: 4px;
    padding: 6px 20px;
}

.section-occupations-timeline {
}

.section-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    border-bottom: 0 solid transparent;
}

.section-socials div {
    width: 60px;
    height: 60px;
    position: relative;
}

.section-socials div img {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transition: all 200ms ease-in;
}

.section-socials div:hover img {
    transform: scale(1.4);
    -ms-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-socials div:before {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 76px;
    height: 76px;

    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    content: "";
    display: block;
    transition: all 265ms ease-out;
    background-color: var(--background-color-minor-highlight);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
}

.section-socials div:hover:before {
    transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
}

.section-socials div img.orange {
    filter: invert(35%) sepia(68%) saturate(2131%) hue-rotate(3deg) brightness(106%) contrast(118%) drop-shadow(0px 0px 5px #852d04);
}

.section-socials div img.red {
    filter: invert(43%) sepia(64%) saturate(7313%) hue-rotate(347deg) brightness(97%) contrast(112%) drop-shadow(0px 0px 5px #6b1f0c);
}

.section-socials div img.gray {
    filter: invert(63%) drop-shadow(0px 0px 5px #424242);
}

.section-socials div img.blue {
    filter: invert(32%) sepia(16%) saturate(6549%) hue-rotate(201deg) brightness(90%) contrast(102%) drop-shadow(0px 0px 3px #1951d0);
}

/* mobile */
@media screen and (max-width: 768px) {
    .hero-header {
        flex-direction: column-reverse;
        gap: 0;
    }

    .hero-header img {
        width: max(300px, min(500px, 30vw));
    }
}

/* desktop */
@media screen and (min-width: 768px) {
    .hero-header div {
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        flex-direction: column;
        align-content: flex-end;
    }

    .hero-header {
        flex-direction: row;
    }

    .hero-header img {
        width: max(300px, min(500px, 30vw));
    }

    .hero-header img:hover {
        width: max(300px, min(600px, 34vw));
    }
}

@media screen and (min-width: 2100px) {
    .hero-header {
        gap: 200px;
    }
}