@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    --accent: rgb(122, 158, 117);
    --accent-light: rgba(151, 189, 140, 0.25);
    --accent-lighter: rgba(186, 229, 173, 0.38);
    --default-color: #363636;
    --hover-accent: var(--default-color);
    --project-bg: #f8f8f8;
    --project-bg-mobile: #f8f8f8;

}

/* ----------------------------------------------
 * Generated by Animista on 2022-11-16 11:23:39
 * Licensed under FreeBSD License.
 * See https://animista.net/license for more info.
 * w: https://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in-bottom {
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

iconify-icon {
  vertical-align: middle;
  transform: translateY(-1px);
}

.fade-in {
    -webkit-animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* links */
a.navbar-brand {
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02rem;
    color: var(--default-color);

}
a.nav-link {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: var(--default-color);
}

a {
    font-family: 'Open Sans', sans-serif;
    color: var(--default-color);
    text-decoration: none;
}

a:hover {
    color: var(--default-color);
    text-decoration: none;
}

#current {
    color: var(--accent);
}


#accent-link:hover {
    color: var(--accent);
}

/* navbar */
.navbar {
    padding: 3rem 0 4rem 0;
}

.navbar ul {
    float: right;
}

.navbar li {
    list-style: none;
    padding-left: 2rem;
}

/* one liner */
.hero {
    /* padding: top right bottom left */
    padding: 8rem 0 12rem 0;
    position: relative;
    overflow: hidden;
}


.header-intro {
    font-family: 'Georgia', sans-serif;
    font-weight: 600;
    font-size: 72px;
}

.header-desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.5;
}

.block-quote {
  border-left: 6px solid rgba(122, 158, 117, 0.25); /* green bar */
  padding-left: 1em;
  margin: 1em 0;
}
/* text styling */

strong
{
    font-weight: 600;
}

p {
    font-family: 'Open Sans', sans-serif;
    color: var(--default-color);
}

li {
    font-family: 'Open Sans', sans-serif;
    color: var(--default-color);
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02rem;
    color: var(--default-color);
}

h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03rem;
    color: var(--default-color);
    padding-bottom: 2rem;
}
h3 {
    font-size: 28px;
    font-family: 'Open Sans', sans-serif;
    color: var(--default-color);
    padding: 1rem 0 1rem 0;
}


h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.01rem;
    line-height: 1.6;
    color: var(--default-color);
}

h5 {
    font-family: 'Open Sans', sans-serif;
    color: var(--default-color);
    font-weight: 600;
    padding-bottom: 1rem;
    letter-spacing: 0.01rem
}

/* project on works page */
.project-locked {
    display: flex;
    background-color: var(--project-bg);
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.project {
    display: flex;
    background-color: var(--project-bg);
    border-radius: 1rem;
    margin-bottom: 3rem;
    
}

.project:hover {
    box-shadow: 5px 5px 5px #d7d9d7;
}

.project-desc {
    padding: 4rem 0.5rem 2.5rem 2.75rem;
    line-height: 1.5;
}

/*
.project-pill {
    font-size: 16px;
    background-color: var(--accent-light); 
    display: inline-block;
    padding: .25rem 1rem .25rem 1rem;
    margin: 1rem .5rem .5rem 0rem;
    border-radius: 1.5rem;
    
}
*/ 

.project-pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem; /* controls both row and column spacing */
}

.project-pill {
  font-size: 16px;
  background-color: var(--accent-light);
  padding: .25rem 1rem;
  border-radius: 1.5rem;
}

.locked-pill {
    background-color: #e1e1e1;
}

.project-locked:hover .locked-pill{
    background-color: #d6d6d6;
}

.project-img {
    padding: 2.5rem 3rem 2.5rem 3rem;
    max-width: 55%;
    height: auto;
}

.project-CTA {
    font-weight: 600;
    color: var(--accent);
}

.thumbnail-wrapper {
  position: relative;
  display: inline-block;
  isolation: isolate;
  overflow: hidden;
  border-radius: 1rem;
}

/* Image */
.project-thumbnail {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease-out;
  will-change: transform;
  border-radius: 1rem;
}


.project:hover .project-thumbnail {
  transform: scale(1.03);
}

.project-locked:hover .project-thumbnail {
  transform: scale(1.03);
}

/* Arrow container (bottom-right) */
.thumbnail-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
  pointer-events: none;
}

.project:hover .thumbnail-overlay {
  opacity: 1;
}

.project-locked:hover .thumbnail-overlay {
  opacity: 1;
}

/* Green circle */
.thumbnail-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #8caa88;
  border-radius: 50%;
}

.project-locked .thumbnail-overlay::before {
  background-color: rgba(120, 120, 120, 0.9);
}

/* Material icon */
.material-symbols-sharp {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24;
}

/* case study pages */
.proj-cover
{
    max-width: 100%;
    height: auto;
}
.proj-subsection {
    padding-bottom: 2rem;
}

.proj-img {
    max-width: 100%;
    height: auto;
    padding: 0rem 0 1.5rem 0;
}

.proj-title {
    padding: 3rem 0 1rem 0;
    text-align: left;
    font-weight: 600;
    font-size: 32px;
}

blockquote {
    border-left: 5px solid var(--accent-light);
    margin-bottom: 1rem;
    padding: 0 0 0.25rem 0.5rem;
}
.proj-text {
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
}
.proj-ul {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    padding-inline-start: 20px;
}
.proj-opener {
    font-size: 20px;
}
.proj-details
{
    display: flex;

}

.project-specs {
    font-weight:700;
    font-size: 18px;
    padding-top: 1rem;
}

.proj-tri-column {
    padding-right: 1rem;
    justify-content: space-between;
    width: 100%;
}
.proj-section {
    display: flex;
    margin-top: 4rem;
    justify-content: space-between;

}
.proj-header {
    width: 35%;
    padding-right: 4rem;
    color: var(--default-color);
}

.proj-subheader {
    padding: .5rem 0 0.4rem 0;
    color: var(--default-color);
}

.proj-content {
    width: 65%;
}
/* about page */
.about-top {
    display: flex;
    padding-top: 3rem;
}

.about-traits {
    padding-top: 3rem;
}

.about-traits ul {
    padding-left: 1.25rem;

}

.about-traits .fun-ul {
    list-style: none;
    padding-left: 0rem;

}

.about-traits li {
    padding-top: .5rem;
    padding-left: .5rem;
}

.about-traits .fun-ul li{
    padding-top: .5rem;
    padding-left: 0rem;
}

.about-img {
    max-width: 30%;
    height: auto;
    padding-right: 0rem;
}

.about-portrait {
    border-radius: .5rem;
    max-width: 100%;
    height: auto;

}

.about-flair {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02rem;
}

.about-text {
    flex: 0 0 60%;
    padding: 0 0rem 0 4rem;
    vertical-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}

.about-desc {
    line-height: 1.75;
    font-weight: 400;
    padding: 0rem 0 2rem 0;
}

.about-lines {
    border-radius: .4rem;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    background-color: rgba(163, 220, 156, 0.15);
    /* padding: top right bottom left */
    padding: .75rem 1rem .75rem 1.5rem;
    margin: 1rem 0rem 1rem 0rem;
}
/* footer */
footer {
    margin: 10rem 0 3rem 0;
    justify-content: space-between;
    display: flex;
}

.social-header {
    color: var(--accent);
    font-weight: 500;
}

.socials {
    font-weight: 500;
    letter-spacing: 0.02rem;
}



/**
 * ----------------------------------------
 * responsive media queries
 * ----------------------------------------
 */

/* laptops */
@media screen and (max-width: 1200px) {
    .project-desc{
        padding-top: 2.9rem;
    }

    .project-img {
        max-width: 60%;
    }

    .about-text {
        max-width: 70%;
    }

}

/* tablets */
@media screen and (max-width: 1023px) {
    .header-intro {
        font-size: 46px;
    }

    .header-desc {
        font-size: 22px;
    }

    h2 {
        font-size: 24px;
    }

    .project {
        flex-direction: column-reverse;

    }

        .project-locked {
        flex-direction: column-reverse;

    }

    .project-img {
        padding-bottom: 2rem;
        max-width: 100%;
    }

    .project-desc {
        padding: 0rem 4rem 2rem 4rem;
    }

    .container{
        max-width: 750px;
    }


    .about-top {
        flex-direction: column;
        align-items: center;
    }

    .about-bottom {
        padding: 0 4rem 0 4rem;
        align-items: center;
    }

    .about-img {
        max-width: 80%;
    }

    .about-text {
        padding-top: 3rem;
        padding-left: 0;
        max-width: 80%;
    }


}

/* phones */
@media screen and (max-width: 767px) {


    .navbar li {
        padding-left: 0.75rem;
    }

    #resume-link {
        display: none;
    }

    .header-intro {
        font-size: 42px;
    }

    .header-desc {
        font-size: 20px;
    }

    h2 {
        font-size: 22px;
    }

    .container{
        max-width: 100%;
    }

    .project {
        background-color: var(--project-bg-mobile);
    }

    .project-locked {
        background-color: var(--project-bg-mobile);
    }

    .project-img {
        padding-bottom: 1.5rem;
    }

    .project-desc {
        padding: 0rem 2rem 2rem 2rem;
    }

    .project-img {
        padding: 2rem 2rem 2rem 2rem;
        max-width: 100%;
        height: auto;
    }

    .proj-details {
        flex-direction: column;
    }

    .proj-title {
        font-size: 28px;
    }
    .proj-section {
        flex-direction: column;

    }

    .proj-header {
        display: inline-block;
        width: 100%;
    }

    .proj-content {
        width: 100%;
    }

    .about-img {
        max-width: 90%;
    }

    .about-text {
        padding-top: 3rem;
        padding-left: 0;
        max-width: 90%;
    }

    .about-bottom {
        padding: 0 1rem 0 1rem;
        align-items: center;
    }

}

