@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;800&family=Roboto+Mono&display=swap);
:root {
  --background-color: #06011a;
  --hover-color: #1d034e;
  --primary-color: #1edfb8;
  --primary-text-color: rgb(238, 238, 238);
  --secondary-text-color: #a9a9a9;
  --main-font: 'Open Sans', Helvetica;
  --secondary-font: 'Roboto Mono', monospace;
  --lg-text: 3.5rem;
  --md-text: 2.5rem;
  --sm-text: 1rem;
  --tiny-text: 0.8rem;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
html {
  background: var(--background-color);
  color: var(--primary-text-color);
  scroll-behavior: smooth;
  font-family: var(--secondary-font);
  font-size: var(--sm-text);
}
body::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.25rem;
}
body::-webkit-scrollbar-track {
  background: var(--background-color);
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(
    var(--background-color),
    var(--primary-color),
    var(--background-color)
  );
  border-radius: 3px;
}
.disableselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.disabledrag {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
h1 {
  font-family: var(--main-font);
}
h2 {
  font-family: var(--secondary-font);
}
svg {
  width: 20px;
  height: 20px;
}
.navigation {
  display: block;
  z-index: 50;
  width: 100vw;
  padding: 0.7rem 0;
  position: fixed;
  background: var(--background-color);
}
.navigation-links .logo {
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-weight: 800;
}
.navigation-links {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 6px 0;
}
.navigation-links--link {
  list-style: none;
  text-transform: capitalize;
  color: var(--primary-color);
}
.navigation-links--link a {
  text-decoration: none;
  color: inherit;
  margin: 0 1.2rem;
  font-family: inherit;
  font-weight: 500;
}
.navigation-links--link a:hover {
  color: var(--primary-text-color);
}
.navigation-links--link:first-child {
  left: 0;
  left: 1rem;
  position: absolute;
  font-size: 1.4rem;
}


.navigation-links--link:last-of-type a {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 2px;
  text-transform: uppercase;
  margin-right: 3.25rem;
  padding: 0.25rem 0.5rem;
}


.logo-img {
  width: 3rem;
  height: 3rem;
  margin-top: -0.75rem;
}
section {
  height: 100vh;
  font-size: 1rem;
  /* min-height: 500px; */
  white-space: wrap;
}

/* NAVIGATION Section*/
.skills-link {
  text-decoration: none;
  display: inline-block;
  color: inherit;
  position: relative;
}
.skills-link::after,
.skills-link::before {
  z-index: -1;
  background: #535353;
  content: '';
  display: block;
  height: 0.5rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.skills-link::after {
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
.skills-link:hover::after {
  background: var(--primary-color);
  transform: scaleX(1);
  transform-origin: 0 50%;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
section#home {
  position: fixed;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 0 16%;
}

.home-content {
  /* justify-content: center;
  align-items: flex-start; */
}
.home-content h4 {
  color: var(--primary-color);
  font-family: inherit;
  margin-bottom: 0rem;
}
.home-content h1 {
  color: inherit;
}
.home-content h1 .a, .a2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  display: inline-flex;
  cursor: default;
  font-size: 4.5rem;
  font-family: var(--main-font);
  letter-spacing: 1px;
}
.home-content h1 .a:hover {
  color: var(--primary-color);
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
.pHighlight {
  color: var(--primary-color);
  font-style: italic;
  font-size: 2rem;
  font-weight: lighter;
}
.pHighlight:hover {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  display: inline-flex;
  cursor: default;
}
.home-content h2 {
  font-size: 2rem;
  color: var(--secondary-text-color);
  margin-top: 0 rem;
}
.home-content p {
  max-width: 80%;
  line-height: 1.5;
  margin-top: 1rem;
}
.home-contact p {
  line-height: 1.4;
  margin-top: 1rem;
  width: 60%;
}
.home-contact {
  margin-top: 4rem;
}
.home-contact a {
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 3px;
  padding: 1rem 1.4rem;
  font-size: var(--sm-text);
}
.home-contact a:hover {
  background: var(--hover-color);
}


@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}



/* TODO: About -------------------------------------------------------*/

/* 

section#about {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 16%;
  z-index: 2;
}

.about-content h2 {
  margin-bottom: 4rem;
}
.about-content p {
  max-width: 85%;
  margin-bottom: 1rem;
}

.about-content h2::after {
  content: '';
  display: block;
  position: relative;
  top: -15px;
  width: 80%;
  height: 1px;
  margin-left: 25%;
  background-color: var(--primary-color);
}

.skills-list {
  list-style: none;
  text-decoration: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 200px));
  padding: 0;
  margin: 20px 0 0;
}
.skills-list li {
  position: relative;
  font-size: var(--tiny-text);
  margin: 0.3rem 0;
}
.skills-list li svg {
  color: var(--primary-color);
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  margin-bottom: -0.3rem;
}
.about-link {
  text-decoration: none;
  display: inline-block;
  color: inherit;
  position: relative;
}
.about-link::after,
.about-link::before {
  z-index: -1;
  background: #7a5a5a;
  content: '';
  display: block;
  height: 0.5rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.about-link::after {
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
.about-link:hover::after {
  background: var(--primary-color);
  transform: scaleX(1);
  transform-origin: 0 50%;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
.about-img {
  width: 12rem;
  height: 12rem;
  border: 3px dashed #1edfb8;
  border-radius: 6px;
  margin-top: 8rem;
  margin-right: 6rem;
}

.about img:hover {
  border: none;
  cursor: pointer;
  box-shadow: 3px 2px 1px 1px var(--primary-color),
    -3px -2px 1px 1px var(--primary-color);
}

section#project {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 16%;
  z-index: 2;
}

.project-content h2 {
  margin-bottom: 4rem;
}

.project-content h2::after {
  content: '';
  display: block;
  position: relative;
  top: -15px;
  width: 80%;
  height: 1px;
  margin-left: 50%;
  background-color: var(--primary-color);
}
.project-content h3::before {
  content: '01.';
  font-size: var(--tiny-text);
  color: var(--primary-color);
  margin-right: 0.4rem;
}
.project-content h3 {
  font-size: 1.2rem;
  color: var(--primary-text-color);
  margin-bottom: 2rem;
  font-family: inherit;
}
.project-content p {
  max-width: 80%;
}
.img-cricket {
  width: 27rem;
  height: 16rem;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 8px var(--background-color);
  margin-top: 2rem;
  filter: blur(2px);
}
.img-cricket:hover {
  filter: blur(0);
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.tech-skills {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin: 10px 0 10px;
  padding: 0;
  list-style: none;
  color: var(--primary-color);
}
.tech-skills .skill {
  list-style: none;
  margin: 0 20px 5px 0;
  color: inherit;
  font-family: inherit;
  font-size: 0.8rem;
}
.project-link {
  color: var(--primary-text-color);
}
.project-link:hover {
  color: var(--primary-color);
}

*/

/*

section#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
*/

/*
.contact-header {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  text-align: center;
}
.contact-header h1 {
  font-size: var(--md-text);
  margin-bottom: 1.2rem;
}
.contact-header p {
  font-size: inherit;
  width: 70%;
}
*/
.contact-header .contact-cta {
  margin-top: 3.5rem;
  text-decoration: none;
  color: var(--secondary-text-color);
  border: 2px solid var(--primary-color);
  border-radius: 3px;
  padding: 1rem 1.4rem;
  font-size: var(--sm-text);
  font-weight: 500;
}
.contact-cta:hover {
  background: var(--hover-color);
}


.contact-link {
  text-decoration: none;
  display: inline-block;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  color: inherit;
  position: relative;
  transition: ease-in;
  cursor: pointer;
}


.orientation--left {
  width: 30px;
  position: fixed;
  bottom: 0;
  right: auto;
  left: 40px;
  z-index: 10;
  color: var(--secondary-text-color);
}
.orientation--left a {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}
.email a {
  margin: 20px auto;
  padding: 10px;
  font-family: inherit;
  font-size: var(--tiny-text);
  letter-spacing: 0.1rem;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
}
.email::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 90px;
  margin: 0 auto;
  background-color: #fff;
}
.email a:hover {
  color: var(--primary-color);
  transform: translateY(2px);
}
.orientation--right {
  width: 30px;
  position: fixed;
  bottom: 0;
  left: auto;
  right: 40px;
  z-index: 10;
  color: var(--secondary-text-color);
}
.orientation--right .social {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.orientation--right .social li a svg {
  width: 20px;
  height: 20px;
}
.social li {
  margin-bottom: 1rem;
}
.social li a {
  margin: 5px auto;
  padding: 5px;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0.1rem;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
}
.social::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 90px;
  margin: 0 auto;
  background-color: #fff;
}
.social li a:hover {
  color: var(--primary-color);
  transform: translateY(2px);
}

/* FOOTER SECTION ------
.footer {
  position: absolute;
  bottom: 2rem;
}
.footer a {
  text-decoration: none;
  margin-left: 0.5rem;
  color: inherit;
}

 
.footer a:hover {
  color: var(--primary-color);
}
.reveal {
  position: relative;
  transform: translateY(200px);
  opacity: 0;
  transition: all 1.5s ease;
}
.reveal.active {
  transform: translateY(0);
  opacity: 1;
}
*/

/* MEDIA ------------------------------ */

@media all and (max-width: 60rem) {

 
  /* section#about,
  section#project {
    min-height: 100vmin;
    flex-wrap: wrap;
  } */

  /* body::-webkit-scrollbar {
    display: none;
  } */

  .navigation-links--link:first-child {
    display: none;
  }

  .home-content h1 .a, .a2 {
    font-size: 3.5rem;
    line-height: 1.4;
    letter-spacing: 1.4;
  }
  .home-content h2 {
    font-size: 2.5rem;
    line-height: 1;
  }
  /* .about-content p {
    max-width: 100%;
    font-size: 1.1rem;
  }
  .about-content h2::after {
    width: 20rem;
    margin-left: 130px;
  }
  .about-img {
    width: 200px;
    height: 190px;
    margin-top: 6rem;
    margin-left: 5rem;
  }
  .project-content h2::after {
    width: 20rem;
    margin-left: 207px;
  }
  .project-text p {
    max-width: 100%;
    font-size: 1.1rem;
  }
  .img-cricket {
    width: 25rem;
    height: 16rem;
    margin-top: 3rem;
  } */
  /* .contact-header {
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    align-content: center;
  }
  .contact-header h1 {
    font-size: 3rem;
  } */
  /* .contact-header p {
    font-size: 1.15rem;
    max-width: 100%;
    letter-spacing: 1.4;
    line-height: 1.6;
  } */
}
@media all and (max-width: 40rem) {

  /* .navigation {
    display: none;
    z-index: 40;
    min-height: 100%;
    height: 200%;
    flex-flow: column nowrap;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0;
    padding: 0;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: 0 2rem 4rem rgb(0 0 0 / 40%);
  } */
  .navigation-links {
    display: flex;
    align-items: center;
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0rem;
  }
  /* .navigation-links--link:last-of-type a {
    margin-right: 0rem;
    font-size: var(--sm-text);
  } */
  .navigation-links--link:first-child {
    display: none;
    /* left: 0;
    left: 0;
    position: relative;
    margin-bottom: 5rem; */
  }
  /* .navigation-links--link {
    margin-top: 1.5rem;
  } */
  .navigation-links--link a {
    font-size: 0.5rem;
    
  }
  /* .navigation-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    transform: translateX(-150vw);
  } */
  /* .navigation-overlay--left {
    transition: all 0.6s ease-in-out;
    transform: translateX(150vw);
  } */

/*   
  .hidden {
    overflow-y: hidden;
  }
  .overlay-blur {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 500vh;
    max-height: 1000vh;
    backdrop-filter: blur(0.125rem);
    z-index: 20;
  } */
  /* .navigation-overlay--right {
    transition: all 0.6s ease-in-out;
    transform: translateX(15vh);
  } */

  /*

  .hamburger {
    position: fixed;
    top: 1rem;
    right: 2rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
  }
  .hamburger .hamburger-1 {
    width: 2.2rem;
  }
  .hamburger .hamburger-2 {
    width: 1.8rem;
  }
  .hamburger .hamburger-3 {
    width: 1.4rem;
  }
  .hamburger-1,
  .hamburger-2,
  .hamburger-3 {
    height: 3px;
    background-color: #fff;
    margin: 0.25rem 0;
    transition: 0.4s;
    border-radius: 0.5rem;
    background: var(--primary-color);
  }
  .toggle .hamburger-1 {
    transform: rotate(-405deg) translate(-8px, 8px);
    width: 1.5rem;
  }
  .toggle .hamburger-2 {
    opacity: 0;
  }
  .toggle .hamburger-3 {
    transform: rotate(405deg) translate(-8px, -8px);
    width: 1.5rem;
  }
  section {
    height: 120vh;
    min-height: 100%;
  }

  */

  /* section#home {
    justify-content: flex-start;
    margin: 30% auto;
  } */

  section#about,
  section#home,
  section#project {
    display: block;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    margin: 50% auto; 
    /* margin-left: 4%; */
    width: 100%;
  }
  .home-content h4 {
    letter-spacing: 2px;
    
    /* margin-bottom: 1rem; */
  }
  .home-content h1 .a, .a2 {
    font-size: 2.7rem;
    line-height: 1.4;
    letter-spacing: 2px;
    

  }
  .home-content h2 {
    font-size: 2rem;
    color: var(--secondary-text-color);
    line-height: 1.4;
    letter-spacing: 2px;
    
    /* margin-top: 0.4rem; */
  }
  /* .home-content p {
    margin-top: 1rem;
    min-width: 100%;
    line-height: 1.4;
    font-size: 1.2rem;
  }
  .home-contact p {
    line-height: 1.4;
    margin-top: 1rem;
  }
  .about-content {
    display: block;
  }
  .about .text h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .about-content .text p {
    font-size: 1.2rem;
  }
  .about-content h2::after {
    width: 180px;
    height: 0.5px;
    margin-left: 180px;
  }
  .about-content .text p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .about-img {
    width: 140px;
    height: 140px;
    margin-top: 0;
    margin-left: 50%;
  }
  .project-content h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .project-content h2::after {
    width: 90px;
    height: 0.5px;
    margin-left: 285px;
  }
  .project-text h3::before {
    margin-right: 0.2rem;
  }
  .project-text h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .project-text p {
    font-size: 1.2rem;
  }
  .img-cricket {
    width: 17rem;
    height: 10rem;
    margin-top: 2rem;
    margin-left: 6%;
  }
  .contact-header {
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
  }
  .contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .contact-header p {
    font-size: 1.2rem;
    min-width: 90%;
    letter-spacing: 1.4;
    line-height: 1.4;
  } */

 
  .orientation--left {
    display: none;
  }
  .orientation--right {
    width: 0;
    position: absolute;
    bottom: 10px;
    left: 50%;
    color: var(--secondary-text-color);
  }
  .social li {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
  }
  .social li a {
    margin: 0 0.8rem;
    padding: 0;
    letter-spacing: 0.1rem;
    -webkit-writing-mode: none;
    writing-mode: none;
  }
  .social::after {
    display: none;
  }
  /* .footer {
    left: 50;
    bottom: 1rem;
    font-size: 0.8rem;
  } */
}
