/*---[TYPOGRAPHY]---*/

body {
  font-size: 16px;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

p {
  font-family: 'Inter', sans-serif;
  line-height: 1.8rem;
  color: #333;
  font-weight: 400;
}

h1 {
  font-size: 2.8rem;
  line-height: 3rem;
	color: #21265f;
}

h2 {
  font-size: 2.0rem;
  line-height: 2.5rem;
}

h3 {
  font-size: 1.6rem;
  line-height: 2.8rem;
}

h4 {
  font-size: 1.2rem;
  line-height: 2rem;
}

h5 {
  font-size: 0.8rem;
  line-height: 1rem;
}

a {
  color: #000;
  text-decoration: none;
  box-shadow: inset 0 -0.6em #CDEEF2;
}

a:hover {
  box-shadow: inset 0 -0.6em #B4DDE3;
}

.sans {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.sans-thicc {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.1rem;
}

.serif {
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

.monospace {
  font-family: 'Menlo', 'Monaco', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: blue;
  letter-spacing: 0.1rem;
}

/*---[NAVIGATION]---*/

.nav {
  width: 100vw;
  height: 2.5rem;
  background-color: #21265f;
  position: fixed;
  z-index: 2;
  text-align: center;
  padding-top: 1.5rem;
}

.nav a {
  font-family: 'Menlo', 'Monaco', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  color: white;
  box-shadow: none;
}


/*---[INDEX] intro----*/

.intro img {
  object-fit: cover;
  height: 60vh;
  width: 100vw;
  margin-top: 2rem;
}

.bio {
  padding: 5vw;
}

/*---[INDEX] intro breakpoints---*/
@media (min-width: 600px) {
  .intro {
    display: grid;
    grid-template-columns: 50vw 40vw;
    grid-template-rows: 70vh;
    align-items: center;
  }
  .intro img {
    width: 100%;
    height: 100%;
    margin-top: 1.5rem;
  }
  .bio {
    width: 100%;
  }
}

/*---[INDEX] project---*/

.portfolio {
  clear: both;
}

.project {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 10vh;
}

.project-image img, .project-description {
  width: 100%;

}

.project-description {
  background-color: #fff;
  padding: 0 1rem;
}

.project-text-link {
  font-weight: 900;
}

.work-intro {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(3, 1fr);
  background-color: #000;
  height: 100vh;
  color: #fff;
  align-items: center;
}

.work-intro-text {
  grid-row: 2 / 2;
  grid-column: 2 / 6;
}

/*---[INDEX] project breakpoints ---*/

@media (min-width: 600px) {
  .project {
    height: 120vh;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(10, 1fr);
    align-items: center;
    margin-bottom: 0;
    background-color: #fff;
  }

  .project-image {
    grid-column: 2 / 14;
    grid-row: 1 / 11;
    z-index: 0;
  }

  .project-image img {
    height: 80vh;
    object-fit: cover;
    /*box-shadow: rgba(0, 0, 32, 0.8) 10px 10px 90px -30px; */ 
  }

  .project-description {
    grid-column: 11 / 15;
    grid-row: 1 / 11;
    z-index: 1;
    padding: 2rem 2rem;
    box-shadow: rgba(0, 0, 32, 0.8) 10px 10px 90px -30px; 
    /*border: solid 1px #000; */
  }
}

/*---[CASE STUDIES]---*/
.case-study {
  padding: 0vh 4vw;
  max-width: 70rem;
}

.case-study p {
  max-width: 44rem;
  padding-top: 1rem;
}

.case-study ul {
  max-width: 40rem;
  padding-top: 1rem;
}

.case-study h2 {
  padding-top: 1rem;
  margin: 2rem auto 1rem auto;
}

.case-study li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 2rem;
  padding-bottom: 1rem;
  color: #444;
}

.case-study img {
  width: 100%;
  margin: 1rem 0rem;
}

.case-study video {
  width: 100%;
  margin: 0 auto;
  padding-top: 4rem;
}

/*---[CASE STUDIES] breakpoints---*/

@media (min-width: 600px) {

.case-study img {
  /* box-shadow: rgba(0, 0, 32, 0.8) 10px 10px 90px -30px; */
  margin: 2rem 0rem;
}

.case-study video {
  /* box-shadow: rgba(0, 0, 32, 0.8) 10px 10px 90px -30px; */
}

}

/*---Animation Effects---*/


@keyframes bump-up {
  from { opacity: 0.3;}
  to { opacity: 1;}
}

 .bump-up-element {
  animation: bump-up 0.75s;
}  

.hidden {
  opacity: 0.3;
}