@import url(https://fonts.googleapis.com/css?family=Six+Caps);
@import url(https://fonts.googleapis.com/css?family=Alfa+Slab+One&display=swap);
@import url(https://fonts.googleapis.com/css?family=Libre+Caslon+Text&display=swap);

/* Smooth out intro */
:root {
   /*Global variables */
  --transition: all 1s;

  /* Colors */
  --col-header: #00D6F7;
  --col-header-cont: #f74600;
  --col-bg: #ededed;

  /* Fonts */
  --font-six: 'Six Caps', sans-serif;
}

/* When link is active or element has focus */
*:active, *:focus{
	outline: none;
}

::-webkit-scrollbar {
  display: none;
}

html, body{
	height: 100%;
  box-sizing: border-box; /* Include the padding and border into the total width/height */
  font-family: 'Libre Caslon Text', serif;
  background-color: var(--col-bg);
}

body{
  background-color: var(--col-bg);
	margin: 0 auto;
}

.break-black {
  background-color: black;
  height: 2vh;
}

.sub-break-black {
  background-color: black;
  height: .25vh;
  width: 92vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: .5vh;
}

.txt-period {
  color: var(--col-header);
  font-size: 10vh;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.bold {
  font-weight: bold;
}

.left {
  text-align: left;
  align-content: left;
  margin-left: 0px;
}

.container-fluid {
  margin-bottom: 7.5vh;
}

.list {
  list-style-type: circle;
}

/* Top Section ======================================================================== */

.hero {
  width: 100%;
  height: 75vh;
  background-image: url('../media/backgrounds/thumb-1920-875696.png');
  background-position: center;
  background-size: cover;
  background-color: #010101;
}

.header {
  position: fixed; /* Position relative to viewpoint. Doesn't move on scroll. No page gap where previously located */
  width: 100%;
  left: 50%;
  top: 30%;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  opacity: 1;
  transform: translate(-50%, -50%); /* Transform 2D (x,y), moves it up 50% and left 50% */
  transition: var(--transition); /* Fades when scrolled */
}

.headline, .subheadline {
  transform: translateY(20%); /* Translate on the Y-axis */
  opacity: 0;
  transition: all 1.5s; /* Fades when scrolled */
  color: var(--col-header);
  font-family: var(--font-six);
  text-transform: uppercase;
}

.headline {
  font-size: 18vw;
  letter-spacing: 15px;
}
.subheadline {
  letter-spacing: 10px;
  font-size: 8vw;
}

/* Desktop */
@media (max-width: 10000px) {
  .headline, .subheadline {
    text-shadow: 4px 3px black;
  }

  .subheadline {
    margin-top: 4vh;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .headline, .subheadline {
    text-shadow: 1.75px .75px black;
  }

  .subheadline {
    margin-top: 4vh;
  }
}

.header-slide-in {
  transform: translate(0); /* 2D transformation 0 */
  opacity: 1;
}

.header-fade-out {
  opacity: 0;
}

/* About Me Section ======================================================================== */

.headers {
  color: black;
  height: 15vh;
  width: 100vw;
  padding-left: 5.5vw;
  margin: 5vh 0 5vh 0;
  font-family: var(--font-six);
  text-transform: uppercase;
  font-size: 14vh;
  letter-spacing: .055em;
  background-color: var(--col-bg);
}

#headshot {
  background-color: var(--col-bg);
}

#headshot img {
  height: 25vw;
  width: 21vw;
}

@media (max-width: 650px) {

  #headshot img {
    height: 60vw;
    width: 50vw;
    margin-bottom: 5vh;
  }
}

.stateWrapper {
  margin: 0 4vw 0 4vw;
}

.row #states-row {
  margin: 0 4vw 0 4vw;
}

/* Text */
.state {
  margin: 20px 20px 0 20px;
  align-content: center;
}

.state-name {
  color: var(--col-header-cont);
  font-family: var(--font-six);
  font-size: 5vh;
  letter-spacing: .1em;
  width:-webkit-fit-content;
  width:-moz-fit-content;
  text-align: center;
}

.state-bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5vw;
  margin: 4vw 0 0 0;
}

.miss-bg {
  background-image: url(../media/states/mo.png);
}

.cali-bg {
  background-image: url(../media/states/ca.png);
}

.wash-bg {
  background-image: url(../media/states/wa.png);
}

.aboutList {
  width: 100%;
}

.aboutList li {
  padding-top: 1vh;
}

/* About Me Subheaders ===================== */

.amWrapper {
  margin: 0 4vw 0 4vw;
}

.am-subheader {
  font-family: var(--font-six);
  text-transform: uppercase;
  font-size: 6vh;
  letter-spacing: .055em;
  margin-bottom: 1.5vh;
}

/* ======================================== */
.am-title {
  font-family: var(--font-six);
  font-size: 4vh;
  letter-spacing: .1em;
  width:-webkit-fit-content;
  width:-moz-fit-content;
  padding-top: 2vh;
}

.am-title-sub {
  font-family: var(--font-six);
  color: var(--col-header-cont);
  font-size: 3vh;
  letter-spacing: .1em;
  width:-webkit-fit-content;
  width:-moz-fit-content;
}

.am-title-location {
  font-size: 3vh;
}

.am-info li {
  padding-top: 1vh;
}

#firstList {
  padding-top: 0;
}

.tree-silhouette {
  background-image:url('../media/breaks/forest2.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 15vh;
}


/* Pet Parallax  | Media Responsiveness ===================================================================== */

/* Desktop */
@media (max-width: 10000px) {
  #pet-parallax {
    background: url(../media/dogs.jpg) 50% 0 no-repeat fixed;
    background-color: black;
    background-size: cover;
    background-position: center;
    height: 70vh;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #pet-parallax .bg{
    background: url(../media/ball.png) 0 no-repeat fixed;
    background-size: 50%;
    height: 60vh;
    width: 80vw;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 200;
  }
}

/* Mobile */
@media (max-width: 650px) {
  #pet-parallax {
    background-color: black;
    background-image: url(../media/dogs.jpg);
    background-size: 96vw 68vh;
    height: 65vh;

  }

  #pet-parallax .bg{
    background: url(../media/ball.png) 0 no-repeat fixed;
    background-size: 63%;
    height: 60vh;
    width: 90vw;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 200; /*Originally 200*/
  }
}

/* Projects ================================================================ */

@supports(display: grid) {
  .notice {
    display: none;
  }
}

.projectContainer {
  justify-content: center;
  grid-template-columns: auto;
  grid-template-rows: auto;
  height: 75vh;
  width: 60vw;
}

featured, projectList {
  text-transform: uppercase;
  display: flex;
  letter-spacing: .65vw;
}

/* Featured  Project ==================================== */

featured {
  grid-area: featured;
  justify-content: center;
  height: 73vh;
  width: 34vw;
  background-color: white;
}

.featNav {
  position: fixed;
  left: 50%;
  bottom: 2vh;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  color: black;
  text-decoration: none;
}

.featNav a {
  color: black;
}

.featNav a:hover {
  color: black;
}

.proNav {
  border: .2vw solid black;
  border-radius: 5px;
  font-size: 5vh;
  letter-spacing: .1vw;
  background-color: var(--col-header);
  color: white;
  cursor: pointer;
  padding: .5vh 1vw .5vh 1vw;
  margin: 0 .25vw 0 .25vw;
}

.proNav a:hover {
  text-decoration: none;
}

.codePort {

}

/* Feature (Portfolio) ================= */

#featCol {
  height: 73vh;
  width: 34vw;
  border: .5vh solid black;
  border-radius: 2.5vh;
  position: relative;
  background-image: url(../media/projects/feat/blank1.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: white;
}

.featTitle {
  text-align: center;
  padding-top: 3.5vh;
  font-size: 7vh;
  color: black;
}

.featSubTitle {
  text-align: center;
  font-size: 3.5vh;
  color: black;
  font-family: var(--font-six);
  letter-spacing: .035em;
}

.proj-content {
  margin: 4vh 0 0 2vw;
  font-size: 1em;
  text-transform: none;
  letter-spacing: 0px;
}

@media (max-width: 750px) {
  .featSubTitle {
    display: none !important;
  }

  .proj-content {
    display: none !important;
  }
}

#period-port {
  color: var(--col-header);
  font-size: 7vh;
}

/* Button Animation ======================================= */

@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.wobble-vertical {
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.wobble-vertical:hover {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  text-decoration: none;
}

@keyframes wobble-horizontal {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
.wobble-horizontal {
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.wobble-horizontal:hover {
  animation-name: wobble-horizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* ============================================================  */

projectList {
  grid-area: projectList;
  align-items: center;
  justify-content: center;
  font-size: 4vh;
}

.singleProject {
  border: .25vw solid black;
  border-radius: 1.5vh;
  background-color: white;
  margin-bottom: 1.65vh;
  position: relative;
  background-color: lightgrey;
  font-family: var(--font-six);
}

/* Also contains in-line style */
.singleProject #text {
  position: absolute;
  padding-left: 1vw;
  margin-bottom: 0px;
  bottom: .25vh;
  color: black;
  transform: scale(1, 1.15);
}

.proScroller:hover .singleProject {
  opacity: .5;
}

.proScroller .singleProject:hover {
  opacity: 1;
}

.projectLast {
  margin-bottom: 0;
}

/* Desktop ================================ */
@media (max-width: 10000px) {

  .projectContainer {
    display: grid;
    grid-template-areas: "featured projectList";
    grid-gap: 10px;
    margin: auto;
  }

  projectList {
    height: 73vh;
    width: 54vw;
    overflow: auto;
  }

  .proScroller {
    height: 73vh;
    width: 54vw;
    overflow: scroll;
  }

  .singleProject {
    height: 13.25vh;
  }
}

/* Mobile ================================ */
@media (max-width: 750px) {

  .projectContainer {
    grid-template-areas: "featured" "projectList";
  }

  featured {
    width: 90vw;
    height: 20vh;
    border: .65vw solid black;
  }

  #featCol {
    width: 90vw;
    height: 20vh;
    border: .65vw solid black;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-image: url('../media/projects/feat/mobile/feat.png');
  }

  .featPro {
    width: 90vw;
    height: 20vh;
  }

  .featNav {
    position: fixed;
    left: 50%;
    bottom: 2vh;
    transform: translate(-50%, -50%);
    margin: 0 auto;
  }

  .proNav {
    border: .4vw solid black;
    border-radius: 5px;
    font-size: 4vh;
    letter-spacing: .1vw;
    color: white;
    color: black;
    cursor: pointer;
    background-color: white;
    text-decoration: none;
    padding: .5vh 1vw .5vh 1vw;
    margin: 0 .25vw 0 .25vw;
    font-family: var(--font-six);
  }

  .proNav a:hover {
    text-decoration: none;
  }

  projectList {
    width: 90vw;
    height: 50vh;
    overflow: hidden;
  }

  .proScroller {
    width: 90vw;
    height: 50vh;
    overflow: auto;
  }

  .singleProject {
    height:  11.25vh;
    border: .65vw solid black;
  }
}

#featPort {
  height: 72vh;
  width: 33.5vw;
  border-radius: 2.50vh;
  position: relative;
  background-image: url(../media/projects/feat/blank1.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: white;
}

@media (max-width: 750px) {

  #featPort {
    width: 90.25vw;
    height: 19.3vh;
    border-radius: 2.25vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-image: url('../media/projects/feat/mobile/feat.png');
  }
}

/* Individual Projects =================================================================== */

/*THUMB*/
#waves {
  background-image: url(../media/projects/thumb/waves.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  bottom: 0;
  background-color: #e1decf;
}

/*FEATURED*/
#featWaves {
  height: 72vh;
  width: 33.5vw;
  border-radius: 2.50vh;
  position: relative;
  background-image: url(../media/projects/feat/blank7.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: white;
}

.featTitle {
  text-align: center;
  padding-top: 3.5vh;
  font-size: 7vh;
  color: black;
  font-family: var(--font-six);
}

#period-port {
  color: var(--col-header);
  font-size: 7vh;
}

#period-waves {
  color: #5a858e;
}

#wavesNav {
  background-color: #5a858e;
  color: black;
  font-family: var(--font-six);
}

#portNav {
  font-family: var(--font-six);
}

@media (max-width: 750px) {

  #featWaves {
    width: 90.25vw;
    height: 19.3vh;
    border-radius: 2.25vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-image: url('../media/projects/feat/mobile/waves.png');
  }

  #period-waves {
    color:black;;
  }

  #wavesNav {
    background-color: white;
    color: black;
    font-family: var(--font-six);
  }
}

/* ============================ */

/*THUMB*/
#brain {
  background-image: url(../media/projects/thumb/brain.png);
  background-size: 100% 100%;;
  background-repeat: no-repeat;
  bottom: 0;
  background-color: #d2d2d2;
}

/*FEATURED*/
#featBrain {
  height: 72vh;
  width: 33.5vw;
  border-radius: 2.50vh;
  position: relative;
  background-image: url(../media/projects/feat/blank2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: white;
}

#period-brain {
  color: #ffb49f;
}

#brainNav {
  background-color: #ffb49f;
  color: black;
  font-family: var(--font-six);
}

@media (max-width: 750px) {

  #featBrain {
    width: 90.25vw;
    height: 19.3vh;
    border-radius: 2.25vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-image: url('../media/projects/feat/mobile/brains.png');
  }

  #period-brain {
    color:black;;
  }

  #brainNav {
    background-color: white;
    color: black;
    font-family: var(--font-six);
  }
}

/* ============================ */

/*THUMB*/
#node64 {
  background-image: url(../media/projects/thumb/nodes.png);
  background-size: 100% 100%;;
  background-repeat: no-repeat;
  bottom: 0;
  background-color: #555252;
}

/*FEATURED*/
#featNode64 {
  height: 72vh;
  width: 33.5vw;
  border-radius: 2.50vh;
  position: relative;
  background-image: url(../media/projects/feat/blank3.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: white;
}

#period-node {
  color: #fdd600;
}

#nodeNav {
  background-color: #fdd600;
  color: black;
  font-family: var(--font-six);
}

@media (max-width: 750px) {

  #featNode64 {
    width: 90.25vw;
    height: 19.3vh;
    border-radius: 2.25vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-image: url('../media/projects/feat/mobile/node.png');
  }

  #period-node {
    color:black;;
  }

  #nodeNav {
    background-color: white;
    color: black;
    font-family: var(--font-six);
  }
}

/* ============================ */

/*THUMB*/
#repaw {
  background-image: url(../media/projects/thumb/repaw.png);
  background-size: 100% 100%;;
  background-repeat: no-repeat;
  bottom: 0;
  background-color: #a3d8e5;
}

/*FEATURED*/
#featRepaw {
  height: 72vh;
  width: 33.5vw;
  border-radius: 2.50vh;
  position: relative;
  background-image: url(../media/projects/feat/blank4.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: white;
}

#period-repaw {
  color: #a3d8e5;
}

#repawNav {
  background-color: #a3d8e5;
  color: black;
  font-family: var(--font-six);
}

@media (max-width: 750px) {

  #featRepaw {
    width: 90.25vw;
    height: 19.3vh;
    border-radius: 2.25vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-image: url('../media/projects/feat/mobile/repaw.png');
  }

  #period-repaw {
    color:black;;
  }

  #repawNav {
    background-color: white;
    color: black;
    font-family: var(--font-six);
  }
}

/* ============================ */

/*THUMB*/
#courses {
  background-image: url(../media/projects/thumb/courses.png);
  background-size: 100% 100%;;
  background-repeat: no-repeat;
  bottom: 0;
  background-color: #ffc75c;
}

/*FEATURED*/
#featCourses {
  height: 72vh;
  width: 33.5vw;
  border-radius: 2.50vh;
  position: relative;
  background-image: url(../media/projects/feat/blank6.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: white;
}

#period-courses {
  color: #ffc75c;
}

#courseNav {
  background-color: #ffc75c;
  color: black;
  font-family: var(--font-six);
}

@media (max-width: 750px) {

  #featCourses {
    width: 90.25vw;
    height: 19.3vh;
    border-radius: 2.25vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-image: url('../media/projects/feat/mobile/courses.png');
  }

  #period-courses {
    color:black;;
  }

  #courseNav {
    background-color: white;
    color: black;
    font-family: var(--font-six);
  }
}
/* ============================ */

/*THUMB*/
#port {
  background-image: url(../media/projects/thumb/port.png);
  background-size: 100% 100%;;
  background-repeat: no-repeat;
  bottom: 0;
  background-color:;
}


/* Contact Information =================================================================== */

.con-subheader {
  font-family: var(--font-six);
  text-transform: uppercase;
  font-size: 5vh;
  letter-spacing: .055em;
  margin: 4vh 0 2vh 0;
}

#email-col {
  margin-left: 5vw;
  width: 90vw;
}

.soc-img {
  width: 40px;
  height: 40px;
}


@media (max-width: 725px) {
  #soc-img {
    width: 8vw;
    height: 8vw;
  }
}

.soc-img-marg {
  margin-left: 4vw;
}

.shadow {
  -webkit-box-shadow: 0 6px 4px -4px black;
  -moz-box-shadow: 0 6px 4px -4px black;
  box-shadow: 0 6px 4px -4px black;
}

#osm {
  width: 40vw;
  height: 65vh;
}

@media (max-width: 650px) {

#osm{
  width: 80vw;
  height: 80vh;
}
}

.contact-col {
margin-top: 5vh;
}

.lab {
  font-weight: bold;
}
