/* GENERAL */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

p {
    color: rgb(85,85,85);
}

/* TRANSITION */

a, .btn {
    transition: all 300ms ease;
}

/* DESKTOP NAV */

nav, .nav-links {
    display: flex;
}

nav {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}

.nav-links {
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
}

a {
    color: black;
    text-decoration: none;
    text-decoration-color: white;
}

a:hover {
    color: grey;
    text-decoration: underline;
    text-underline-offset: 0.6rem;
    text-decoration-color: rgb(181,181,181);
}

.logo {
    font-size: 2rem;
}

.logo:hover {
    cursor: default;
}

/* HAMBURGER MENU */

#hamburger-nav {
    display: none;
}

.hamburger-menu {
    position: relative;
    display: inline-block;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.hamburger-icon span {
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 0.3 ease-in-out;
}

.menu-links {
    position: absolute;
    top: 100%;
    right: 0%;
    background-color: white;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
}

.menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
}

.menu-links list {
    list-style: none;
}

.menu-links.open {
    max-height: 300px;
}

.hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child {
    transform: none;
}

.hamburger-icon span:nth-child(2) {
    opacity: 1;
}

.hamburger-icon span:last-child {
    transform: none;
}

/* SECTIONS */

section {
    padding-top: 4vh;
    height: 96vh;
    margin: 0 10rem;
    box-sizing: border-box;
    min-height: fit-content;
}



/* PROFILE */

#profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 83vh;
    min-height: 800px;
}

.main-pic {
    width: 100%;
    object-fit: cover;
}

.section__text {
    align-self: center;
    text-align: center;
}

.section__text p {
    font-weight: 600;
}

.section__text__p1 {
    text-align: center;
}

.section__text__p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.section__text__p2 span {
    color: #1879C2;
}

.section__text__p3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: black;
}

.title {
    font-size: 3rem;
    text-align: center;
}

#socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

/* ICONS */

.icon {
    cursor: pointer;
    height: 2rem;
}

.about-icon {
    cursor: default;
    height: 100%;
    margin-left: 6px;
}

/* BUTTONS */

.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    font-weight: 600;
    transition: all 0.3 ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;
}

.btn-color {
    background-color: white;
    border: rgb(53,53,53) 0.1rem solid;
}

.btn-color:hover {
    transform: translate(0,-3px) scale(1.08);
    cursor: pointer;
    background: rgb(53,53,53);
    color: white;
}

/* ABOUT SECTION */

#about {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 800px;
}

.wide-screen-about-section-container {
    position: relative;
    top: -3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 4rem;
}

.small-screen-about-section-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 2rem;
}

.about-section-pic {
    display: flex;
    height: 500px;
    margin: 0;
    min-width: 500px;
    width: auto;
    overflow: hidden;
    border-radius: 2rem;
}

.about-pic {
    height: 500px;
    width: 500px;
}

.about-containers {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.about-details-container {
    display: flex;
    flex-direction: column;
    max-width: 1800px;
}



.arrow {
    position: absolute;
    right: -5rem;
    bottom: 2.5rem;
}

.about-info-container {
    padding: 1.2rem;
    display: flex;
    width: 50%;
    min-width: 450px;
    flex-grow: 1;
    flex-direction: column;
    border-radius: 2rem;
    border: rgb(163,163,163) 0.1rem solid;
}

.about-story-container {
    min-width: 1028px;
    padding: 1.2rem;
    border-radius: 2rem;
    border: rgb(163,163,163) 0.1rem solid;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 13px 0px 0px 15px;
}

.about-points-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 13px 0px 0px 15px;
}

.about-points {
    display: flex;
    justify-content: flex-start;
}

.about-points > img {
    width: 6px;
    height: 6px;
    margin: 8.5px 8px 0px 0px;
}

.about-points > p {
    display: flex;
    justify-content: flex-start;
    font-size: 90%;
    text-align: left;
}

.box-title {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    height: 25px;
    margin-right: 5px;
}

.box-title > h3 {
    font-size: 33px;
    position: relative;
    top: -11px;
}

.section__pic-container {
    display: flex;
    height: 500px;
    width: 33%;
    max-width: 800px;
    margin: 0;
}

.section__pic-container img {
    border-radius: 50px;
}

/* EXPERIENCE SECTION */

#experience {
    position: relative;
    min-height: 870px;
}

/* Skill Information */

.details-container {
    padding: 1.2rem;
    display: flex;
    width: 410px;
    flex-direction: column;
    background: white;
    border-radius: 2rem;
    border: rgb(53,53,53) 0.1rem solid;
    border-color: rgb(163,163,163);
    text-align: center;
}

.box-info {
    margin-top: 5px;
}

.skill-class {
    color: rgb(85,85,85);
    font-weight: 400;
    font-size: 1.5rem;
    text-decoration: underline;
    display: flex;

}

.skill-containers {
    gap: 1rem;
    width: 450px;
    display: flex;
    flex-direction: column;
}

.skill-title {
    color: rgb(12, 12, 12);
    font-weight: 600;
    font-size: medium;
    display: flex;
    margin-top: 5px;
    line-height: 115%;
}

.skill-points {
    /*display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-around;*/
    

    display: flex;
    justify-content: flex-start;
}

.skill-points > img{
    width: 4px;
    height: 4px;
    margin: 6px 3px 0px 10px;
}

.skill-blurb {
    color: rgb(0, 0, 0);
    font-weight: 300;
    font-size: 64%;
    font-style: italic;
    display: flex;
    text-align: left;
    line-height: 120%;
    margin-right: 20px;
}

/* Work Information */

.work-containers {
    padding: 1.2rem;
    display: flex;
    width: 650px;
    flex-direction: column;
    background: white;
    border-radius: 2rem;
    border: rgb(53,53,53) 0.1rem solid;
    border-color: rgb(163,163,163);
    text-align: left;
}

.job-title {
    margin-top: 4px;
    height: 27px;
    text-decoration: underline;
}

.job-sub-title {
    height: 22px;
    font-style: italic;
    font-weight: 100;
    margin-bottom: 4px;
}

.title-points {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 7px;
}

.title-points > img {
    width: 6px;
    height: 6px;
    margin: 6px 6px 0px 10px;
}


.title-blurb {
    color: rgb(0, 0, 0);
    font-weight: 300;
    font-size: 90%;
    font-style: normal;
    display: inline;
    text-align: left;
    line-height: 114%;
    margin-right: 20px;
}

.work-link {
    color: blue;
    font-weight: 400;
}

.work-link:hover {
    color: blue;
    
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.1rem;
    text-decoration-color: blue;
}

.work-sub-heading-link-icon {
    width: 13px;
    transform: translate(-189px,0px);
}

.work-text-link-icon {
    width: 13px;
    transform: translate(-15px,0px) scale(0.95);
}

/* Other Stuff */

.wide-screen-experience-details-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 20px 0px 20px 0px;
}

.small-screen-experience-details-container {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 20px 0px 20px 0px;
}

.article-details-container {
    margin-top: 1rem;
    display: flex;
    justify-content: initial;
    align-items: center;
    flex-direction: row;
}

.article-container {
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-around;
}

article {
    display: flex;
    width: 10rem;
    justify-content: space-around;
    gap: 0.5rem;
}

article .icon {
    cursor: default;
}

/* ARTICLES */

#articles {
    position: relative;
}

.color-container {
    border-color: rgb(163,163,163);
    background: rgb(250,250,250);
    cursor: pointer;
}

.article-title {
    margin: 1rem;
    color: black;
}

.article-btn {
    color: black;
    font-size: medium;
    width: 220px;
    border-color: rgb(163,163,163);
}

.info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /*min-width: 100%;
    height: 340px;*/
}

.info-container img {
    border-radius: 2rem;
    flex-shrink: 0;
    max-width: 350px;
    min-width: 100%;
    min-height: 100%;
}

/* CONTACT */

#contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 84vh;
}

.contact-info-upper-container {
    display: flex;
    justify-content: center;
    border-radius: 2rem;
    border: rgb(53,53,53) 0.1rem solid;
    border-color: rgb(163,163,163);
    background: rgb(250,250,250);
    margin: 2rem auto;
    padding: 0.5rem;
}

.contact-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
}

.contact-info-container {
    font-size: larger;
}

.contact-icon {
    cursor: default;
}

.email-icon {
    height: 2.5rem;
}

/* FOOTER SECTION */

footer {
    height: 16vh;
    margin: 0 1rem;
}

footer p {
    text-align: center;
}

.typewriter-container {
    width: 100%;
    height: 4vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ARTICLES */

.header-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.main-header {
    font-weight: 200;
    font-size: 60px;
}

.sub-header {
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
    color: rgb(85,85,85)
}

.article-body {
    margin: 0 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/*
.article-body img {
    border-radius: 50px;
    width: 450px;
    margin-bottom: 20px;
}*/


