/* About Me Page Styling */

#about-container {
    width: 100%; 
    height: 100%; 
    margin-top: 3%;
}

/* COLUMN 1 */

#about-col1 {
    /* height: 90%; */
    width: 45%;
    margin-left: auto;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 3%;
}

#tape {
  position: absolute;
  height: 17%;
  margin-top: -6%;
  transform: rotate(10deg);
  z-index: 5;
}

#sticky-note {
    position: relative;
    width: 50%;
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.5%;
    background-color: var(--note-green);
    transform: rotate(-3deg);
    z-index: 1;
    box-shadow: -2pt -1pt 6pt 0pt lightgrey;
}

#fold-background {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    height: 15%;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    background-color: ivory; 
    z-index: 3;
    transform: scale(2);
}

#fold {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    height: 15%;
    border-radius: 8% 0% 0% 0%;
    background-color: var(--fold-green);
    box-shadow: -2pt -1pt 6pt 0pt lightgrey;;
    z-index: 2;
}

#prof-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#profile-pic {
    width: 35%;
    border-radius: 50%;
    border: 2pt solid var(--border-green);
}

#sticky-note h2 {
    font-size: 35pt;
    margin-top: 1%;
    margin-bottom: 1%;
    /* font-family: 'Homemade Apple'; */
}

#title-role {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#title-role h3 {
    font-size: 25pt;
    margin: -0.5rem;
}

#sticky-note ul {
    width: 30%;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    align-items: center;
    padding-inline-start: 0px;
    margin: 4%;
}
  
.icon {
    font-size: 16pt;
    color: var(--teal-blue);
}

#edu-container {
    display: flex;
    flex-direction: column;
    /* column-gap: -1rem; */
}

.edu p {
    font-size: 12pt;
    text-align: center;
    line-height: 50%;
}

/* COLUMN 2 */

#about-col2 {
    /* height: 100%; */
    width: 45%;
    margin-left: 45%;
    display: flex;
    flex-direction: column;
}

#about-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin-bottom: 2rem; */
}

#about-heading h1 {
    text-align: center;
    margin: auto;
    font-size: 40pt;
}

#about-heading img {
    width: 22%;
    position: absolute;
    left: 55%;
}

#about-col2 h2 {
    font-size: 30pt;
}

#about-col2 p {
    font-size: 12pt;
}

.bio {
    width: 98%;
    margin-top: 1rem;
    margin-bottom: -1rem;
}

.lined {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.lined h2 {
    margin: 0rem;
    font-size: 35pt;
    margin-bottom: -0.9rem
}

.bio p {
    /* text-indent: 2.5rem; */
    line-height: 1.5rem;
}

.bio a {
    text-decoration: none;
    color: var(--light-orange);
    font-style: italic;
}


/* Responsive Adjustments */

@media (max-width: 1300px) {

    #about-col1 {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: row;
    }

    #sticky-note {
        width: 70%;
        flex-direction: row;
        justify-content: space-around;
        transform: rotate(-2deg);
        margin: auto;
        padding: 3rem;
    }

    #tape {
        display: none;
    }

    #fold-background {
        width: 10%;
        height: 25%;
    }

    #fold {
        width: 10%;
        height: 25%;
    }

    #prof-container{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        }

    #profile-pic {
        width: 15%;
        border-radius: 50%;
        border: 2pt solid var(--border-green);
    }

    #sticky-note h2 {
        font-size: 30pt;
    }

    #title-role {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #title-role h3 {
        font-size: 25pt;
        margin: -0.5rem;
    }

    #sticky-note ul {
        width: 20%;
        margin: 0%;
        flex-direction: column;
        gap: 10px;
        margin-block-start: 0em;
        margin-block-end: 0em;
        
    }
    
    .icon {
        font-size: 16pt;
        color: var(--teal-blue);
    }

    #edu-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 90%;
        padding: 10px; 
    }

    .edu {
        width: 40%; 
        /* margin: 0 10px; */
    }

    .edu p {
        font-size: 12pt;
        text-align: center;
        line-height: 100%;
    }

    #about-col2 {
        position: relative;
        width: 70%;
        margin-top: 5%;
        margin-left: 15%;
        margin-right: 15%;
        margin-bottom: 5%;
    }
    
}

/* @media (max-width: 1050px) {

} */
