@import url(variables.css);
@import url(fonts.css);

.headshot-container {
    height: 500px;
    width: 100%;
    background-color: var(--pink);
    flex-grow: 1;
    border-radius: 3rem;
    display: flex;
    margin-bottom: 2rem;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;

    .headshot-inner {
        position: absolute;
        z-index: 1;
        display: flex;
        align-content: center;
        justify-content: center;
        gap: 10rem;
        align-self: center;
        width: 1300px;
        align-items: center;

        .headshot-image {
            z-index: 1;
            width: 24rem;
            max-width: 24rem;
            border-radius: 50%;
            border: 1rem solid white;

            @media (max-width: 1400px) {
                width: 40%;
            }
        }

        .nina-briceno-logo {
            width: 28rem;
            max-width: 28rem;
                
            @media (max-width: 1400px) {
                width: 100%;
            }
        }

        @media (max-width: 1400px) {
            gap: 5%;
            justify-content: center;
            width: calc(100% - 4rem);
        }
    }

    .headshot-pattern {
        position: relative;
        object-fit: cover;
        width: 100%;
        opacity: 20%;

        @media (max-width: 1400px) {
            height: 100%;
            width: 100%;
            scale: 1.1;
            left: 5%;
        }
    }

    .headshot-container__logo-wrapper {
        padding-right: 6rem;
        text-align: center;

        @media (max-width: 1400px) {
            width: 40%;
            padding-right: 0;
        }
    }

    .headshot-container__buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 1rem;
        gap: 1rem;

        .headshot-container__linkedin {
        }

        .headshot-container__resume {
            background-color: white;
            border-radius: 3rem;
            font-weight: 700;
            padding: 0.75rem 2rem;
            font-size: 1.5rem;
            color: var(--pink);
        }
    }
}

.projects-section {
    width: 100%;
    padding-top: 2rem;

    .projects-section__background {
        flex-direction: column;
        width: 100%;
        background-color: var(--blue);
        display: flex;
        border-radius: 3rem;
    }

    .projects-section__header-background {
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        background-color: var(--pink);
        border-radius: 3rem;
        width: 100%;
    }

    .projects-section__header {
        font-size: medium;
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        font-size: 4rem;
        color: white;
        font-family: Museo_700;
        padding: 1.5rem 0;
    }

    .projects-section__projects {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-content: center;
        align-items: center;
        flex-direction: row;
        padding: 2rem 0;

        @media (max-width: 1400px) {
            flex-direction: column;
        }
    }

    .projects-section__project {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-content: center;
        align-items: center;
        gap: 2rem;
        padding-bottom: 2rem;
        width: 100%;

        @media (max-width: 1400px) {
            padding-bottom: 4rem;
        }
    }

    .projects-section__photo {
        background-color: var(--purple);
        border-radius: 3rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-direction: row;
        width: 20rem;
        height: 30rem;
        object-fit: cover;
        transition: 0.5s;

        &:hover {
            transform: scale(1.1);
            cursor: pointer;
            transition: 0.5s;
        }

        @media (max-width: 1400px) {
            width: calc(100% - 8rem);
            height: unset;
        }
    }

    .projects-section__title {
        background-color: var(--purple);
        border-radius: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        color: white;
        font-size: 2rem;
        font-family: Museo_700;
        width: fit-content;
        padding: 1rem 2rem;
    }
}

.apps {
    flex-grow: 1;
    background-color: var(--blue);
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding: 2rem;

    .app-title {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        align-content: center;
        font-size: 2rem;
        padding: 1rem;
        color: var(--darkblue);
    }

    .logos-row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 1.5rem;

        .logo {
            width: 6rem;
            height: 6rem;

            transition: 0.5s;

            &:hover {
                transform: scale(1.2);
                transition: 0.25s;
            }
        }
    }
}

.about {
    font-family: Museo_700;
    display: flex;
    width: 100%;
    gap: 2rem;

    .intro {
        flex-grow: 3;
        background-color: var(--blue);
        border-radius: 3rem;
    }

    @media (max-width: 1400px) {
        flex-direction: column;
    }
}

.intro {
    .intro-title {
        display: flex;
        justify-content: space-evenly;
        align-content: center;
        padding-top: 2rem;
        font-size: 2rem;
        color: var(--darkblue);
    }
    .intro-body {
        padding-left: 2rem;
        padding-right: 2rem;
        font-size: medium;
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        padding-top: 2rem;
        padding-bottom: 4rem;
        font-size: 1.5rem;
        color: var(--darkblue);
        font-family: Museo_300;
    }
}

.contact-me-section {
    background-color: var(--blue);
    width: 100%;
    border-radius: 3rem;
    text-align: center;
    margin-top: 2rem;
    color: var(--darkblue);
    font-size: 2rem;
    padding-bottom: 4rem;

    .contact-me-section__title {
        padding: 2rem 1rem 1rem;
        font-size: 700;
    }

    .contact-me-section__email {
        padding: 1rem;
        margin: 0;
    }

    .contact-me-section__icons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding-top: 1rem;

        .contact-me-section__resume {
            background-color: var(--pink);
            border-radius: 3rem;
            padding: 1rem;
            color: white;
        }

        .contact-me-section__icon {
            /* padding: 0 1rem; */
        }
    }
}
