@import url("global-variables.css");

.section {
    color: var(--dark-color);
    font-weight: bold;

    /* text-align: start; */
}

.section-title {
    font-size: 2em;
    width: 100%;
}

.section-desc {
    font-size: 1.2em;
    width: 100%;
}

.section-img-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
}

.section-img-box {
    position: relative;
    z-index: 99;

    aspect-ratio: 16 / 9;

    border-radius: 50px;
    overflow: hidden;

    color: var(--text-color);
}

.section-img-box:hover .section-img-picture {
    transform: scale(1.1);
}

.img-big {
    width: 50%;
}

.img-small {
    width: 40%;
}

.section-img {
    position: absolute;
    top: 0;
    left: 0;

    height: 100%;
    width: 100%;

    box-sizing: border-box;
    
    border-radius: 50px;

    transition: all .25s ease;
}

.section-img-title {
    position: absolute;
    top: 75%;
    left: 5%;

    font-size: 1.6em;
}

.section-img-desc {
    position: absolute;
    top: 85%;
    left: 5%;
}

.section-profile-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5%;
}

.section-profile-box {
    width: 150px;
    height: 180px;
    border-radius: 50px;
    
    background-color: var(--dark-color);
    color: var(--text-color);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.profile-big {
    width: 150px;
    height: 180px;
    border-radius: 50px;
}

.profile-small {
    width: 150px;
    height: 150px;
    border-radius: 50px;
}

.section-profile-img {
    height: 40%;
    width: auto;

    filter: invert(84%) sepia(7%) saturate(2420%) hue-rotate(357deg) brightness(93%) contrast(90%);
}

.section-profile-title {
    font-size: 1.4em;
    text-decoration: none;
}

.section-resume-box {
    display: inline-flex;
    gap: 5px;
}

.section-resume-text {
    font-size: 1.2em;
    font-weight: bold;
    
    color: var(--dark-color);
    text-decoration: underline;
    font-style: italic;
}

.section-resume-img {
    height: 1.4em;
    width: auto;
    
    padding-top: .1em;

    filter: invert(15%) sepia(52%) saturate(3417%) hue-rotate(264deg) brightness(91%) contrast(121%);
}