/* SECTIONS */
section .profile{
    padding-top: 4vh;
    height: 96vh;
    margin: 0 10rem;
    box-sizing: border-box;
    min-height: fit-content;
}

.section-container {
    display: flex;
}

/* PROFILE SECTION */
#profile {
    justify-content: center;
    gap: 5rem;
    /* height: 60vh; */
}

.section__pic-container {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 250px;
    width: 100%;
    margin: auto 0;
}

.section__pic-container img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

.section__text {
    color: #fff;
    align-self: center;
    text-align: center;
}

.section__text p {
    font-weight: 600;
}

.section__text__p1 {
    color: #e91e63;
    text-align: center;
    margin-bottom: 1rem;
}

.section__text__p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.title {
    font-size: 3rem;
    text-align: center;
}

/* BUTTONS */
.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 11rem;
    border-radius: 2rem;
}

.btn-color-1,
.btn-color-2 {
    color: #fff;
    border: #fff 0.1rem solid;
}

.btn-color-1:hover,
.btn-color-2:hover {
    cursor: pointer;
}

.btn-color-1 {
    background: #260026;
}

.btn-color-2{
    background: #e91e63;
    color: white;
}

.btn-color-1:hover,
.btn-color-2:hover {
    background: linear-gradient(#00bcd4, #e91e63, #3f51b5, #00bcd4);
    background-size: 100% 500%;
    background-position: 0 40%;
}

.btn-color-2:hover {
    border: rgb(255, 255, 255) 0.1rem solid;
}

.btn-container {
    gap: 1rem;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1130px) {
    #desktop-nav {
        display: none;
    }
    #hamburger-nav {
        display: flex;
    }
    #experience,
    .experience-details-container {
        margin-top: 2rem;
    }
    #profile,
    .section-container {
        display: block;
    }
    /* #profile {
        height: 80vh;
    } */
    .arrow {
        display: none;
    }
    section,
    .section-container {
        height: fit-content;
    }
    .section__pic-container {
        width: 100%;
        height: 250px;
        margin: 0 auto 2rem;
    }
    .btn{
        width: 100%;
    }
    .about-containers {
        margin-top: 0;
    }
}

@media screen and (max-width: 576px) {
    #contact,
    #profile {
        margin-bottom: 0;
    }
    article {
        font-size: 1rem;
    }
    .about-containers,
    .contact-info-upper-container,
    .btn-container {
        flex-wrap: wrap;
    }
    .contact-info-container {
        margin: 0;
    }
    .contact-info-container p,
    .nav-links li a {
        font-size: 1rem;
    }
    .experience-sub-title {
        font-size: 1.25rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .section__pic-container {
        width: 100%;
        height: 250px;
        justify-content: center;
    }
    .section__text__p2 {
        font-size: 1.25rem;
    }
    .title {
        font-size: 2rem;
    }
    .text-container {
        text-align: justify;
    }
}
