* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: white;
  margin: 0;
}

:root {
  --black: #111111;
  --white: #FFFFFF;
  --dusty: #c89e44;
}

#color-container{
  background-color: var(--black);
  z-index: -1;
}

/* HEADER */

header{
  position: fixed;
  display: flex;
  width: 100%;
  margin-top: 2%;
  padding-right: 2%;
  justify-content: flex-end;
  z-index: 2;
  mix-blend-mode: difference;
}

#btn-container{
  border: none;
  display: grid;
  grid-template-columns: repeat(4,25%);
  place-items: center;
  width: 700px;
}

.head-btn{
    text-decoration: none;
    color: var(--white);
    border: none;
    opacity: 90%;
    width: 100%;

}

.head-btn:hover{
    font-weight: 600;
}

/* LANDING PAGE */

#background-vid{
  position: absolute;
  mix-blend-mode: difference;
  opacity: 60%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);

}

#landing{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.hero{
    mask-image: radial-gradient(
    circle at center,
    black 20%,
    transparent 85%
  );

  -webkit-mask-image: radial-gradient(
    circle at center,
    black 20%,
    transparent 85%
  );

  mask-size: 0%;
  -webkit-mask-size: 0%;

  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;

  mask-position: center;
  -webkit-mask-position: center;
}

#title{
    cursor: default;
    text-align: center;
    font-family: "Ovo", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 128px;
    margin: 0;
    color: var(--black);
    
}

#title-heading{
  cursor: default;
  margin-top: 40px;
  text-align: center;
  letter-spacing: 91%;
  color: var(--black);
}

.char {
  display: inline-block;
  will-change: transform;
}

#scroll-down{
  top: 90vh;
  position: absolute;
  transition: opacity 0.3s ease;
}

/* BLURB */

#blurb{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;

}

#short-blurb{
  text-align: center;
  width: 517px;
}

#narrow-transition{
  position: absolute;
  object-fit: cover;
  top: 45%;
  width: 100%;
  margin-bottom: 0;
  z-index: -1;
}

/* SELECTED WORK */

#projects{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  margin-bottom: 376px;
}

#dark-title{
  color: var(--white);
  margin-bottom: 183px;
  margin-left: 2%;
  z-index: 999;
}

.project-list{
  position: relative;
  margin-bottom: 200px;
}

.project-item{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 79px;
  cursor: pointer;
  padding-left: 2%;
  padding-right: 2%;
  z-index: 2;
}

.project-item:hover{
  border-style: solid none solid none;
  border-width: 1px;
  border-color: var(--white);
}

.project-title{
  color: var(--white);
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
}

.project-item:hover .project-title{
  font-weight: 700;
  font-size: 40px;
}

.project-description{
  color: var(--white);
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 20%;
  opacity: 0;
}

.project-item:hover .project-description{
  opacity: 100;
}

/* CASE-STUDY HERO IMAGE */

.project-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hero-image{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0; /* behind text */
  width: 431px;
  height: 307px;
  object-fit: cover;
  pointer-events: none;
}

#showreel{
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0; /* behind text */
  width: 429px;
  height: 305px;
  object-fit: cover;
  pointer-events: none;
}

.project-item:hover ~ #showreel{
  opacity: 0;
}

#norima-hero{
  opacity: 0;
}

#norima:hover ~ #norima-hero{
  opacity: 1;
}

#sprout-hero{
  opacity: 0;
}

#sprout:hover ~ #sprout-hero{
  opacity: 1;
}

#arataki-hero{
  opacity:0;
}

#arataki:hover ~ #arataki-hero{
  opacity: 1;
}

/* WHO AM I */

#who-am-i {
  display: grid;
  place-items: center;
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}

#little-me,
#i-content {
  grid-area: 1 / 1;
}

#little-me{
  opacity: 60%;
  width: 70%;
  height: 100%;
  object-fit: cover;

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

#i-content{
  display: grid;
  grid-template-columns: 15% 20% 30% 20% 15%;
  grid-template-rows: repeat(20,5%);
  height: 100%;
  place-items: center;
  z-index: 1;
}

#portrait{
  grid-column: 3;
  grid-row-start: 3;
  grid-row-end: 8;
  height: 100%;
}

#i-container{
  display: flex;
  justify-content: space-around;
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row: 1;
  width: 100%;
}

#who{
  grid-column: 2;
  grid-row: 4;
}

#am-i-container{
  grid-column:span 4;
  grid-row: 6;
  width: 100%;
}

.body-text{
  color: var(--white);
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;

}

#truth{
  grid-column: 4;
  grid-row: 8;
}

#about-container{
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row: 14;
  width: 100%;
  padding: 30px;
}

#about-description{
  width: 70%;
}

#skills-container{
  grid-column-start: 2;
  grid-column-end: 5;
  grid-row: 18;
  width: 100%;
  padding: 30px;
}

/* LET'S CHAT */

#contact{
  margin-top: 270px;
  padding-top: 100px;
  height: 100vh;
}

#contact-title-container{
  display: grid;
  grid-template-columns: repeat(5,180px);
  grid-template-rows: repeat(2,200px);
  margin-left: auto;
  margin-right: auto;
  width: 900px;
  margin-bottom: 40px;
}

#lets{
grid-row: 1;
text-align: left;
}

#chat-container{
  width: 100%;
  grid-column: 2/6;
  grid-row: 2;
}

#chat{
  text-align: right;
}

#email{
  color: var(--white);
  margin-left: 2%;
}

#linkedin{
  color: var(--white);
  margin-left: 2%;
}

.contact-info{
  display: flex;
  align-items: center;
}

#my-email{
  color: var(--white);
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  border: none;
}

#my-linkedin{
  color: var(--white);
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  border: none;
}

/* BACK TO THE TOP */

#btt-container{
  display: flex;
  justify-content: center;
}

/* TYPOGRAPHY */

.who-title{
  font-family: "Ovo", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 128px;
  color: var(--white);
}

.contact-title{
  font-family: "Ovo", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 200px;
  color: var(--dusty);
  margin: 0;
}

.heading{
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 64%;
}

#btt{
  color: var(--white);
  text-align: center;
  cursor: pointer;
}

#btt:hover{
  font-weight: 700;
}

/* 
Ovo
  font-family: "Ovo", serif;
  font-weight: 400;
  font-style: normal;

Helvetica Neue LT Pro 55 Roman
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;

Helvetica Neue LT Pro 75 Roman 
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
*/