@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700,900');
@import url('https://fonts.googleapis.com/css?family=Reenie Beanie:300,400,700,900');

/* custom variables */
:root {
  --accent-color: #00ff6c;
  --highlight-color: #F9E79F;
  --background-color: #232323;
  --light-background-color: #F2F3F4;
  --high-visibility-color: #edede7;
}
/*

 */
* {
  box-sizing: border-box;
  transition: all ease-in-out 250ms;
}

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  text-align: center;
}

.dark-body {
  background-color: var(--background-color);
}

img {
  max-width: 100%;
  height: auto;
}

.home-about-textbox {
  background-color: var(--background-color);
  padding: 1em;
  height: auto;
  margin-left: 0;
  color: #FFF;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.home-about-textbox h1 {
  color: var(--accent-color);
  text-align: center;
  transform: translateX(-50%);
  margin-top: -5rem;
  background:  var(--background-color);
  padding: 2rem .145rem 0rem 2rem;
}

.container-footer {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: start;
  background-color: whitesmoke;
}

.container {
  display: grid;
  grid-template-columns: 50% 50%;
  background-color: var(--background-color);
  grid-gap: 1rem;
  padding: 1rem;
}

.section-one {
  padding: 1rem;
  border: 1px solid var(--accent-color);
  outline-offset: -2rem;
  background-color:   var(--background-color);
  width: 100%;
  height: auto;
}

.section-one p{
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.section-two {
  padding: 1rem;
  border: 1px solid var(--accent-color);
  background-color: var(--background-color);
  width: 100%;
  height: auto;
}

.section-one p{
  color: var(--high-visibility-color);
  text-align: left;
  margin: 0;
}
.section-one h1 {
  color: var(--accent-color);
  margin-top: 0;
}

.section-two h1 {
  color: var(--high-visibility-color);
  margin-top: 0;
}


/* buttons */

.button {
  display: inline-block;
  font-size: 1.15rem;
  text-decoration: none;
  text-transform: uppercase;
  border-width: 2px;
  border-style: solid;
  padding: .5em 1.75em;
  margin-bottom: 1em;
}

@media (min-width: 60rem) {
  .button {
    font-size: 1.5rem;
  }
}

.button-small {
  font-size: .7rem;
  font-weight: 700;
}

.button-accent {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.button-hightlight {
    color: white;
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: black;
    font-weight: 900;
    border-color: white;
}

.button-hightlight:hover,
.button-hightlight:focus {
    color: #232323;
    background: #00ff6c;    
    border-color: #232323;
}

.button-light {
  color: #f2f2f2;
  border-color: #f2f2f2;
}

.button-accent:hover,
.button-accent:focus {
  background: #00ff6c;
  color: #232323;
}

.button-dark {
  color: #232323;
  border-color: #232323;
}

.button-dark:hover,
.button-dark:focus {
  background: #232323;
  color: #00ff6c;
}

/* Parallax
=================== */
.parallax--bg,
.parallax--box {
  transition: initial;
}

/* header
=================== */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 1em;
}

.header-text-box {
  margin-top: .5rem;
  padding: .5rem;
  background: rgba(23,23,23,0);
}


.header-text-box h1 {
  display: inline-block;
  font-family: 'Reenie Beanie', sans-serif;
  text-align: left;
  font-size: 8rem;
  color: var(--accent-color);
  margin: 0rem;
  padding: .5rem .5rem .5rem 0;
  font-weight: 900;
}

.header-text-box h1 {
  color: var(--accent-color);

}

.header-text-projects h1 {
  color: var(--accent-color);
}

.navbar {
  margin-top: 1.5rem;
  float: right;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin: 1em;
}

nav a {
  font-weight: 900;
  text-decoration: none;
  padding: .5em;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--accent-color);
}


nav a:hover,
nav a:focus,
nav a:visited{
  color: var(--accent-color);
  background-color: #232323;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  background: transparent;
  border: none;
  float: right;
  margin-top: 1rem;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}




@media (min-width:60rem) {
  .header-text-box h1 {
    float: left;
  }

  .navbar {
    float: right;
  }
}

@media (max-width:40rem) {
  .hamburger {
    display: flex;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(35, 35, 35, 0.98);
    padding: 4rem 2rem 2rem 2rem;
    margin: 0;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar nav li {
    display: block;
    margin: 1.5rem 0;
    text-align: left;
  }

  nav li {
    display: block;
    margin: 1.5rem 0;
  }

  nav a {
    font-size: 1.5rem;
    display: block;
    padding: 0.5rem;
  }

  .navbar {
    margin-top: 0rem;
  }

  .container h1 {
    margin-top: 1rem;
    font-size: 1.5rem;
  }


}

@media (max-width:30rem) {
  .navbar {
    margin-top: 0rem;
  }
  nav li {
    font-weight: 600;
    margin: .5rem;
  }
  nav a {
    font-weight: 600;
  }

  .container h1 {
    margin-top: 0rem;
    font-size: 1.5rem;
  }

  .header-text-box h1 {
    font-size: 3rem;
  }
}
/*

 */
.section {
  background-size: cover;
  background-position: center;
  padding: 10em 0;
  color: #FFF;
}

.section-hero-home{
  background-image: url(../img/LinkedIn-background-filter.png);
  height: 30vh;
}

.section-hero-projects{
  background-image: url(../img/PNNL_EMSL_CascadeSuperComputer.jpg);
  height: 50vh;
}

.section-hero-about{
  background-image: url(../img/python-code.jpg);
  height: 25vh;
  width: 100vh;
}

.section-hero-cv{
  background-image: url(../img/MatrixSuperComputer.jpg);
  height: 15vh;
  width: 100%;
}

.section-hero-contact{
  background-image: url(../img/Biometrics-Large.jpg);
  height: 50vh;
}

.section-hero-funpage{
  background-image: url("../img/waihee-ridge-enhanced.jpg");
  border-radius: 2rem;
  height: 50vh;
}

@media (min-width: 60rem) {
  .section-hero-home {
    height: 30vh;
    padding-top: 35vh;
  }

  .section-hero-projects {
    height: 50vh;
    padding-top: 35vh;
  }

  .section-hero-cv {
    height: 25vh;
    padding-top: 35vh;
  }
}

/* hero-home */


@media (min-width: 60rem) {
  .home-about-textbox {
    width: 50%;
    height: auto;
  }
}

@media (min-width: 25rem) {
  h1 {
    font-size: 2rem;
  }

  .home-about-textbox {
    padding: 5.5em;
  }

  .home-about-textbox h1 {
    top: .6em;
    padding: 0 .325em;
  }
}

@media (min-width: 60rem) {
  h1 {
    font-size: 2.5rem;
  }

  .home-about {
    /*background-image: url(../img/getdonations.jpg);*/
    /* background-image: url(../img/aiAgentScreenShot.jpg); */
    background-image: url(../img/about-section-image-dark.png);
    padding-bottom: 10em;
    width: 100%;
  }

  .home-about-textbox {
    width: 50%;
    height: auto;
    padding: 5em;
    outline-offset: -3.75em;
    margin-left: -2.5%;
    top: -11.5rem;
    text-align: left;
    box-shadow: 0 0 4em 0 rgba(23,23,23,.3);
  }

  .home-about-textbox h1 {
    top: .75em;
    left: 6rem;
    transform: translateX(0);
  }
}

/* portfolio  */



@media (min-width: 60rem) {
  .portfolio {
    width: 50%;
    float: right;
    margin-top: -16.5rem;
    position: relative;
  }
}

.portfolio h1 {
  color: #FFFFFF;
  background: var(--background-color);
  margin: 0rem 0 0;
  padding: 1.5rem 0 1.5rem 0;
  font-weight: 700;
}
.port-item {
  margin: 0;
  position: relative;
}

.port-item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 300px; /* Set your desired fixed height */
  width: auto; /* Width will scale proportionally */
}

.port-desc {
  position: absolute;
  z-index: 100;
  bottom: 0em;
  left: 0em;
  right: 0em;
  color: white;
  background: rgba(0,0,0,.6);
  padding-bottom: 2em;
}

.port-desc p {
  margin: 1em;
}

@media (min-width: 37rem) {
  .port-item {
    width: 50%;
    float: left;
  }
}

@media (min-width: 60rem) {
  .port-item {
    width: 50%;
    overflow: hidden;
  }

  .port-desc {
    transform: translateY(150%);
  }

  .port-item:hover .port-desc {
    transform: translateY(0%);
  }
}


/* call-to-action  */

.call-to-action {
  background-color: var(--background-color);
  padding: 4em 0;
  margin: 0em 0;
}

.cta-title {
  color: #FFFFFF;
  margin: 3rem 0 2rem 0;
  padding-top: 2rem;
}

.cta-title-span {
  font-weight: 300;
}

.unstyled-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* columns */

[class^=col-] {
  margin-top: 1em;
  line-height: 1.5rem;
  width: 100%;
}

[class^=col-]:first-child {
  margin-top: 0;
}

[class^=col] a {
  text-decoration: none;
  text-transform: uppercase;
}

.col-3 {
  width:50%;
  text-align: justify;
  padding: 2rem;
  margin: 3rem 3rem 0rem 3rem;
}

.col-1 {
  width: 33.333334%;
  float: left;
}

@media (min-width: 40rem) {

  [class^=col-] {
    float: left;
    padding: 0 .5em;
    margin-top: 0;
  }

  [class^=col-]:first-child {
    padding-left: 0;
  }

  .col-3 {
    width: 50%;
  }

  .col-1 {
    width: 16.6666%;
  }


}

@media (max-width: 30rem) {

  [class^=col-] {
    float: left;
    margin-top: 0;
  }

  [class^=col-]:first-child {
    padding-left: 0;
  }

  .col-3 {
    width: 80%;
  }

  .col-1 {
    width: 100%;
  }
  .col-1:last-child {
    margin-bottom: 1rem;
  }

  .header-text-box h1 {
    font-size: 4rem;
    font-weight: 700;
    -webkit-text-stroke: 1px black; 
    text-stroke: 1px black; 
  }

  .section-hero-home {
    font-size: 1rem;
  }
  
  .container {
    grid-template-columns: 100%;
  }

  .detailed-about-me {
    display: none;
  }

  .highlight-about-me {
    display: block;
    color: var(--accent-color);
  }

  #phone-number {
    background-color: var(--background-color);
  }

  .container-footer {
    flex-direction: column;
    text-align: center;
  }

  .title {
    font-size: 1.5rem;
    font-weight: 600;
    -webkit-text-stroke: 1px black; 
    text-stroke: 1px black;
  }

}


/* Footer
=================== */

.footer {
  background: var(--background-color);
  color: #fff;
  text-align: left;
  padding: 5em 0 5em;
}

.footer-title {
  font-weight: bold;
  margin: .5rem 0 0 0;
}

