@charset "UTF-8";
/* CSS Document */

/*~~~~~ Notes ~~~~~
- Colors used:
    Black = rgb(12, 12, 12)
    Paper White = #FFFEFB
    Transparent White: rgba(255, 255, 255, 0.97)
    Grey = #757575
    Teal = #17C2AB;
    Burgundy = #c34a18
*/

:root {
    --off-black: rgb(12, 12, 12);
    --paper-white: #FFFEFB;
    --primary-color: #A25C49; /* Sequoia Dust */
    --secondary-color: #7D4538; /* Sequoia Brick ----- Theo Grey: #8B8A7A; */
    --tertiary-color: #CFCDBA; /* Theo Green */
    --header-font: iAWriterQuattroV, 'Courier New', Courier, monospace;
    --body-font: 'strawfordlight', sans-serif;
    --italicized-body-font: 'strawfordlight_italic', sans-serif;
    --emphasized-body-font: 'strawfordmedium', sans-serif;
}

/**********************
Smartphone size
**********************/

html, body {
    height: 100%;
    margin: 0;
    background-color: var(--paper-white);
}

#page-wrapper {
    display: block;
    height: 100%;
    margin: 1rem;
}

.skip-to-main {
    position: absolute;
    top: -50%;
}

h1, h2, h6 {
    font-family: var(--header-font);
    font-style: normal;
}

h1 {
    font-weight: 700;
    font-size: 3.5rem;
    margin: 0 auto .5em auto;
}

h2 {
    font-weight: 700;
    font-size: 2rem;
}

h3 {
    font-family: 'strawfordmedium', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25em;
}

h4 {
    font-family: 'strawfordmedium', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0.25em auto;
}

h5 {
    font-family: 'strawfordregular', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin: 0.25em auto;
}

h6 {
    font-style: italic;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin: 1em auto 0.5em auto;
}

p, ol, ul {
    font-family: 'strawfordlight', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 auto 1.5em auto;
    
}

ul {
    padding-left: 1rem;
}

.ol-custom {
    counter-reset: list-total -1 numbered-list -1;
    margin: 1rem auto;
}

.ol-custom ol {
    font-family: var(--header-font);
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    text-transform: uppercase;
    padding-left: 2.5rem;
}

.ol-custom-total-counter span {
    counter-increment: list-total;
}

.ol-custom li {
    counter-increment: numbered-list;
    margin-top: 0.5em;
}

.ol-custom li::marker {
    content: counter(numbered-list) "/";
    color: var(--secondary-color);
}

.ol-custom li::before {
    content: counter(list-total) ".";
    color: var(--secondary-color);
    margin-right: 0.5em;
}

.ol-custom li a {
    font-family: var(--header-font);
    font-weight: 400;
    font-style: normal;
}

li {
    margin-bottom: .5em;
}

p a {
    overflow-wrap: break-word;
}

p i, li i {
    font-family: var(--italicized-body-font);
    font-style: italic;
}

p em, li em {
    font-family: var(--emphasized-body-font);
    font-style: normal;
}

hr {
    color: var(--tertiary-color);
    opacity: 0.5;
    width: 90%;
}

.hr-half {
    width: 10rem;
}

.hr-full {
    width: 100%;
}

.vertical-rule {
    width: 100%;
}

img {
    max-width: 100%;
}

.dropShadow {
    filter: drop-shadow(0 0 8px rgba(10, 10, 10, 0.3));
}

.outlined {
    outline: 2px solid var(--tertiary-color);
}

.callout {
    border: var(--tertiary-color) 2px solid;
    padding: 0 2em;
}

/* vvvvv Anchor Styling vvvvv */

a {
    font-family: 'strawfordregular', sans-serif;
    font-weight: 500;
    font-size: 1em;
}

a:link, .a-animated a {
	color: var(--off-black);
	text-decoration: underline;
    width: max-content;
}

a:visited {
	color: rgb(0, 0, 0);
	text-decoration: none;
}

/*
.button-centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
*/

.primary-button {
    background-color: var(--primary-color);
    color: var(--paper-white);
    border: none;
    box-sizing: border-box;
    padding: 1em 1.5em;
    margin: 1em 0;
    font-family: iAWriterQuattroV, 'Courier New', Courier, monospace;
    font-style: normal;
    font-weight: 400;
    font-size: 0.8em;
    text-transform: uppercase;
}

.primary-button:hover {
    opacity: 0.8;
    transition: opacity 100ms ease-in-out;
    cursor: pointer;
}

/* ^^^^^ Anchor Styling ^^^^^ */

/* vvvvv Header vvvvv */

header {
    height: 4rem;
    width: calc(100% - 2rem);
    position: fixed;
    top: 1rem;
    mask-image: linear-gradient(to left, transparent 10%, black 25%);
    z-index: 10;
}

header a {
    display: inline-block;
    height: 100%;
}

#brandLogo {
    height: 100%;
    filter: invert(39%) sepia(45%) saturate(644%) hue-rotate(326deg) brightness(91%) contrast(80%);
}

#brandLogo:hover {
    opacity: 60%;
    transition: opacity 100ms ease-in-out;
}

.my-crumbs {
    position: absolute;
    top: 0;
    margin: auto 1rem;
    width: max-content;
    font-family: var(--header-font);
    font-weight: 700;
    font-style: normal;
    font-size: 1.5em;
    color: var(--primary-color);
}

.my-crumbs a {
    text-decoration: none;
    font-family: var(--header-font);
    font-weight: 500;
    font-style: normal;
    font-size: 1.0em;
    color: var(--primary-color);
}

.my-crumbs a:after {
    padding: 0 12px;
    content: "/";
}

.my-crumbs a:hover {
    /* opacity: 80%; */
    font-weight: 700;
    transition: font-weight 100ms ease-in-out;
}

/* ^^^^^ Header ^^^^^ */

/* vvvvv Nav vvvvv */

nav {
    display: flex;
    position: fixed;
    bottom: 0;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    width: 100%;
    z-index: 2;
    margin: auto 0 auto -1rem;
    background: url("../images/mobile-nav-sheet.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    filter: drop-shadow(0px -4px 10px rgba(0, 0, 0, 0.08));
    text-align: center;
    transform: translateY(88%);
    transition: 0.5s;
    transition-property: all;
    transition-timing-function: ease-in-out;
    pointer-events: none;
}

nav button {
    display: block;
    box-sizing: border-box;
    background: none;
    border: none;
    height: auto;
    width: 4rem;
    cursor: pointer;
}

nav button svg {
    width: 100%;
}

nav button span {
    display: block;
    width: 100%;
    font-family: 'strawfordbold', sans-serif;
    text-transform: uppercase;
}

#mobileMenuButton {
    pointer-events: all;
}

#closeMobileMenuButton {
    position: relative;
    bottom: 1.5rem;
    margin-bottom: 1rem;
}

nav ul {
    width: 100%;
    list-style: none;
    padding-inline-start: 0;
    margin: 1rem auto 4rem auto;
    padding: 0;
}

nav ul li {
    margin: 2rem auto;
}

nav ul li a {
    font-family: iAWriterQuattroV, "Courier New", monospace;
    font-style: italic;
    font-weight: 500;
    font-size: 2em;
}

nav ul li .router-link-active {
    font-weight: 700;
    text-decoration: none;
}

nav .social {
    display: inline-block;
    margin: 2rem 1.5rem 0 1.5rem;
}

#menu-icon {
    margin: .5rem auto auto auto;
}

#name {
    color: var(--primary-color);
    font-family: var(--header-font);
    font-weight: 600;
    font-style: normal;
    font-size: 2.25em;
    text-transform: uppercase;
    text-decoration: none;
    margin: 3rem auto 0 auto;
    padding: 0;
}

#name:hover {
    opacity: 80%;
    transition: opacity 100ms ease-in-out;
}

.icon {
    margin: 5px auto;
    height: 2.5rem;
    width: auto;
    border: 0;
}

/* ^^^^^ Nav ^^^^^ */

/* vvvvv Main / Content vvvvv */

main {
    scroll-behavior: smooth;
    scroll-snap-align: start;
    margin: 8rem auto auto auto;
    max-width: 45rem;
}

.content-header {
    text-align: center;
}

.content-section {
    margin-bottom: 3em;
}

.featured-content, .project-list {
    font-family: var(--header-font);
    font-weight: 400;
    font-style: italic;
    text-align: center;    
    overflow: hidden;
    margin: 0 auto;
}

.section-header {
    font-size: 1.5em;
}

#titleheader {
    display: block;
    position: fixed;
    z-index: 1;
    font-family: 'strawfordbold', sans-serif;
    font-style: normal;
    font-size: 2em;
    letter-spacing: 0.7pt;
    color: white;
    margin: auto auto auto 50px; 
}

.end-note {
    display: block;
    width: 100%;
    margin: 5rem auto;
    font-family: var(--header-font);
    font-style: italic;
    font-weight: 400;
    font-size: .8em;
    text-align: center;
}


#home-hero-text {
    text-align: center;
    margin: 20vh auto;
}

#home-hero-text h4 {
    font-family: iAWriterQuattroV, 'Courier New', Courier, monospace;
    font-style: italic;
    font-weight: 400;
    font-size: 1.125em;
    margin: auto auto 0 auto;
}

#home-hero-text p {
    font-family: 'strawfordlight', sans-serif;
    font-size: 1.25em;
    line-height: 1.4em;
}

#home-hero-text a {
    font-family: iAWriterQuattroV, 'Courier New', Courier, monospace;
    font-size: .875em;
    font-weight: 400;
    margin: auto;
}

/* ^^^^^ Main / Content ^^^^^ */

/* vvvvv Project Card vvvvv */

.project-card {
    margin: 1rem auto 4rem auto;
}

.project-thumbnail {
    height: 100%;
}

.project-card img {
    display: block;
    width: 100%;
    height: auto;
}

.project-thumbnail-title {
    font-family: var(--header-font);
    display: inline-block;
    position: relative;
    bottom: 1.75rem;
    background-color: #FFFEFB;
    padding: .5rem .75rem;
    font-style: normal;
    font-size: .875em;
}

.project-tile-caption {
    font-family: 'strawfordlight', sans-serif;
    font-style: normal;
    font-size: 1em;
    position: relative;
    bottom: .5rem;
}

/* ^^^^^ Project Card ^^^^^ */

/* vvvvv Project Page vvvvv */

.project-header {
    margin-bottom: 1rem;
}

.project-details, .collection-details {
    text-align: left;
}

.project-case-study h4 {
    margin-top: 0;
}

.project-case-study.content-section section {
    padding: 0.1rem 0;
    margin-top: 2rem;
}

.project-case-study.content-section section img {
    margin: 1rem auto;
}

.gallery-two-images, .gallery-four-images {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 2rem auto;
}

.horizontal-scroll-wrapper {
    overflow-x: scroll;
    scroll-snap-type: x proximity;
    scroll-snap-stop: always;
    margin-bottom: 2rem;
    /*-webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);*/
}

.gallery-three-images, .gallery-five-images {
    grid-gap: 2rem;
    margin: 1rem 0 2rem 0;
    padding: 1.5rem;
    white-space: nowrap;
}

.project-case-study.content-section .gallery-two-images img,
.project-case-study.content-section .gallery-four-images img
{
    margin: 1rem auto;
}

.project-case-study.content-section .gallery-three-images img,
.project-case-study.content-section .gallery-five-images img {
    margin: auto 1rem auto auto;
}

/* ^^^^^ Project Page ^^^^^ */

/* vvvvv About page vvvvv */

.resume-section {
    padding-left: 1em;
    border-left: rgb(207, 205, 186, .5) 2px solid;
}

/* ^^^^^ About page ^^^^^ */

/* vvvvv Footer vvvvv */

footer {
    position: relative;
    height: max-content;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 1rem;
    margin-top: 0rem;
    font-family: 'strawfordlight', sans-serif;
    font-size: 0.7em;
    font-weight: 300;
    line-height: 1.2em;
    color: #000000;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 6rem 1fr;
    height: 3rem;
}

.footer-left {
    display: grid;
    text-align: left;
    grid-column: 1/2;
    justify-self: start;
}

.footer-right {
    display: grid;
    text-align: right;
    grid-column: 3/4;
    justify-self: end;
}

.footer-right .text {
    width: auto;
}

/* ^^^^^ Footer ^^^^^ */

/**********************
Tablet size
**********************/
@media screen and (min-width: 768px) {

    h2 {
        font-size: 2.25em;
    }

    #page-wrapper {
        margin: 2rem;
    }

    .vertical-rule {
        width: 0;
    }

    /* vvvvv Nav vvvvv */

    nav {
        padding: .5rem 0;
        margin-left: -2rem;
        transform: translateY(85%);
    }

    #name {
        margin-top: 5rem;
    }

    /* ^^^^^ Nav ^^^^^ */

    /* vvvvv Header vvvvv */

    header {
        top: 2rem;
    }

    #home-hero-text {
        padding: 0 15vw;
    }

    /* ^^^^^ Header ^^^^^ */

    main {
        margin-top: 8rem;
    }

    /* vvvvv Project Page vvvvv */

    .project-details {
        display: grid;
        grid-template-areas:
            "overview overview divider toc"
            "tags tools divider toc"
            "time team divider toc"
            "section-divider section-divider section-divider section-divider";
        grid-template-columns: 1fr 1fr 1rem 16rem;
        grid-template-rows: auto auto auto;
        grid-gap: 1rem;
        padding-top: 1.5rem;
    }

    .collection-details {
        display: grid;
        grid-template-areas: 
            "overview overview overview"
            "tags tools time"
            "section-divider section-divider section-divider";
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto;
        grid-gap: 1rem;
        padding-top: 1.5rem;
    }

    .project-details h6, .collection-details h6, .project-case-study h6 {
        margin-top: 0;
    }

    .project-details p, .project-details ul, .collection-details p, .collection-details ul {
        margin: 0 auto 1em auto;
    }
    
    .project-details .vertical-rule {
        grid-area: divider;
        margin: 0 auto;
    }

    .project-details .hr-full, .collection-details .hr-full {
        grid-area: section-divider;
    }

    .project-details-overview {
        grid-area: overview;
    }

    .project-details-tags {
        grid-area: tags;
    }

    .project-details-tools {
        grid-area: tools;
    }

    .project-details-time {
        grid-area: time;
    }

    .project-details-team {
        grid-area: team;
    }

    .project-toc {
        grid-area: toc;
    }

    .project-toc h4 {
        margin-top: 0;
    }

    .project-case-study p {
        margin-bottom: 1em;
    }

    .project-case-study.content-section section {
        padding: 1rem 0;
    }

    .project-case-study.content-section .gallery-two-images img,
    .project-case-study.content-section .gallery-four-images img {
        margin: 1rem 0;
    }

    .project-case-study.content-section .gallery-two-images img {
        width: 48%;
    }

    .project-case-study.content-section .gallery-four-images img {
        width: 47%;
    }

    .project-case-study.content-section .gallery-three-images img,
    .project-case-study.content-section .gallery-five-images img {
        width: 75%;
    }

    .project-case-study.content-section .gallery-three-images-narrow img {
        width: 40%;
    }

    /* ^^^^^ Project Page ^^^^^ */

    /* vvvvv Footer vvvvv */

    footer {
        font-size: 0.9em;
    }

    .footer-content {
        height: auto;
        grid-template-columns: 1fr 20rem 1fr;
        margin-bottom: 1rem;
    }

    /* ^^^^^ Footer ^^^^^ */

}
/**********************
Desktop size
**********************/
@media screen and (min-width: 1024px) {

    #page-wrapper {
        display: grid;
        grid-template-columns: 20.5rem auto;
        grid-template-rows: auto 5rem;
        grid-template-areas:
            "nav main"
            "nav footer";
    }
    
    /* vvvvv Anchor Styling vvvvv */

    a:link, .a-animated a, .a-animated .text {
        text-decoration: none;
    }

    .a-animated a, .a-animated .text {
        display: inline-block;
    }

    .a-animated a:after, .a-animated .text:after {
        display: block;
        content: '';
        border-bottom: solid 0.0625em #000000;
        transform: scaleX(0);
        transition: transform 250ms ease-in-out;
        transform-origin: 100% 50%;
    }

    a:hover:after, .a-animated:hover .text:after {
        transform: scaleX(1);
        transform-origin: 0 50%;
    }

    /*
    .button-centered {
        position: relative;
    }
    */

    /* ^^^^^ Anchor Styling ^^^^^ */

    /* vvvvv Nav vvvvv */

    nav {
        height: 100%;
        width: auto;
        max-width: 17rem;
        justify-content: flex-start;
        align-items: baseline;
        left: 0;
        margin: 0;
        padding: 3rem;
        background: #ffffff;
        text-align: left;
        transform: none;
        transition: none;
        pointer-events: all;
    }

    #mobileMenuButton {
        display: none;
    }

    #closeMobileMenuButton {
        display: none;
    }

    nav ul::before {
        content: '';
        height: 1px;
        width: 100%;
        background-color: var(--tertiary-color);
        display: block;
        margin: 1rem 0;
    }

    nav ul li {
        margin-right: auto;
        margin-left: 0;
    }

    nav ul li a {
        font-weight: 500;
        font-size: 1.5em;
    }

    nav .social {
        margin: 2rem 2rem 0 0;
    }

    #name {
        margin-top: 6rem;
    }

    /* ^^^^^ Nav ^^^^^ */

    /* vvvvv Header vvvvv */

    header {
        top: 3rem;
        left: 22.5rem;
    }

    /* ^^^^^ Header ^^^^^ */

    /* vvvvv Main vvvvv */

    main {
        grid-area: main;
        margin-top: 7rem;
    }

    #home-hero-text {
        padding: 0 5vw;
    }

    .content-header img {
        max-width: 65%;
    }

    /* ^^^^^ Main ^^^^^ */

    /* vvvvv Project Page vvvvv */

    .project-header.content-header img {
        max-width: 100%;
    }

    /*
    .project-contents-list {
        -webkit-mask-image: linear-gradient(to left, transparent -1%, black 25%);
        mask-image: linear-gradient(to left, transparent -1%, black 25%);
        overflow-x: hidden;
    }
    */

    .gallery-three-images {
        grid-template-columns: 35rem 35rem 35rem;
    }

    .gallery-five-images {
        grid-template-columns: 35rem 35rem 35rem 35rem 35rem;
    }

    /* ^^^^^ Project Page ^^^^^ */

    /* vvvvv Footer vvvvv */

    footer {
        grid-area: footer;
    }

    .footer-content {
        margin-bottom: 0;
    }

    /* ^^^^^ Footer ^^^^^ */

}

/**********************
1440p width size
**********************/
@media screen and (min-width: 1440px) {
    .mainContent {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }
}

/**********************
Imported fonts
**********************/

@font-face {
	font-family: iAWriterQuattroV;
    src: url("../fonts/iAWriterQuattroV.ttf") format('truetype');
}

@font-face {
	font-family: iAWriterQuattroV;
    src: url("../fonts/iAWriterQuattroV-Italic.ttf") format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'strawfordbold';
    src: url('../fonts/strawford-bold-webfont.woff2') format('woff2'),
         url('../fonts/strawford-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'strawfordmedium';
    src: url('../fonts/strawford-medium-webfont.woff2') format('woff2'),
         url('../fonts/strawford-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'strawfordregular';
    src: url('../fonts/strawford-regular-webfont.woff2') format('woff2'),
         url('../fonts/strawford-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'strawfordlight';
    src: url('../fonts/strawford-light-webfont.woff2') format('woff2'),
         url('../fonts/strawford-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'strawfordlight_italic';
    src: url('../fonts/strawford-lightitalic-webfont.woff2') format('woff2'),
         url('../fonts/strawford-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
