/*
Theme Name: Jake Robbs Personal Site & Blog
Theme URI: http://jakerobbs.com
Description: Custom WordPress theme for Jacob by Harry
Version: 1.0
Author: Harry J. Atkins
Author URI: https://harryjatkins.com
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit; }

img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */ }

.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after {
  clear: both; }

.cf {
  *zoom: 1; }

.text-l {
  text-align: left; }

.text-c {
  text-align: center; }

.text-r {
  text-align: right; }

.float-l {
  float: left; }

.float-r {
  float: right; }

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor; }

/* General Styles */
body {
  background: #041251;
  color: white;
  font-family: 'Poppins', sans-serif; }

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px; }
  @media all and (max-width: 650px) {
    .inner {
      padding: 0 20px; } }

header {
  padding: 40px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #041251;
  z-index: 50;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease; }
  @media all and (max-width: 650px) {
    header {
      padding: 20px 0; } }
  header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  header nav {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right; }
    header nav a {
      color: white;
      text-decoration: none;
      font-style: italic;
      font-size: 0.9em;
      text-transform: uppercase;
      margin-left: 20px;
      opacity: .5;
      position: relative;
      -webkit-transition: .2s ease;
      -o-transition: .2s ease;
      transition: .2s ease; }
      @media all and (max-width: 650px) {
        header nav a {
          margin-left: 10px; } }
      header nav a:after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: white;
        position: absolute;
        bottom: 0;
        left: 0;
        opacity: 0;
        -webkit-transition: .2s ease;
        -o-transition: .2s ease;
        transition: .2s ease; }
      header nav a.active {
        opacity: 1; }
        header nav a.active:after {
          bottom: 50%;
          opacity: 1;
          margin-bottom: -1px; }
      header nav a:hover {
        opacity: 1; }
        header nav a:hover:after {
          opacity: 1; }
  header .site-logo {
    width: 100%;
    max-width: 100px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease; }
    @media all and (max-width: 650px) {
      header .site-logo {
        max-width: 60px; } }
  header.reduced {
    padding: 10px 0; }
    header.reduced .site-logo {
      max-width: 60px; }
      @media all and (max-width: 650px) {
        header.reduced .site-logo {
          max-width: 40px; } }

main {
  margin-top: 185px; }
  @media all and (max-width: 650px) {
    main {
      margin-top: 120px; } }

p a {
  color: white;
  text-decoration: none;
  position: relative; }
  p a:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    background: white; }
  p a:hover:after {
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px); }

h2 {
  font-weight: bold;
  font-size: 48px;
  line-height: 52px;
  margin-bottom: .5em; }
  @media all and (max-width: 650px) {
    h2 {
      font-size: 35px; } }

p {
  font-size: 19px;
  line-height: 1.4em; }
  @media all and (max-width: 650px) {
    p {
      font-size: 16px; } }

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .row .col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }
    .row .col:nth-child(1) {
      padding-right: 30px;
      -webkit-box-flex: 2;
      -ms-flex: 2;
      flex: 2; }
      @media all and (max-width: 650px) {
        .row .col:nth-child(1) {
          padding-right: 0;
          padding-bottom: 30px; } }
      .row .col:nth-child(1) p {
        max-width: 580px; }
    .row .col:nth-child(2n) {
      text-align: right; }
      @media all and (max-width: 650px) {
        .row .col:nth-child(2n) {
          text-align: left; } }
  @media all and (max-width: 650px) {
    .row {
      display: block; } }

.bio-image {
  width: 100%;
  max-width: 360px;
  margin-right: 20px;
  -webkit-box-shadow: 10px 10px 0px rgba(255, 255, 255, 0.2);
  box-shadow: 10px 10px 0px rgba(255, 255, 255, 0.2); }
  @media all and (max-width: 650px) {
    .bio-image {
      width: 80%; } }

.image-shadow img {
  -webkit-box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.2);
  box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.2);
}

.page-section {
  margin-bottom: 80px; }
  @media all and (max-width: 650px) {
    .page-section {
      margin-bottom: 40px; } }

h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 200;
  margin-bottom: 1em; }
  @media all and (max-width: 650px) {
    h3 {
      font-size: 20px; } }

.work-block {
  margin: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 40px; }
  @media all and (max-width: 650px) {
    .work-block {
      margin: 30px 0 20px 0;
      padding-bottom: 20px; } }
  .work-block p {
    max-width: 450px; }

.work-video {
  border: 5px solid white;
  margin-bottom: 30px; }
  @media all and (max-width: 650px) {
    .work-video {
      margin-bottom: 20px; } }

i, em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

ul.social {
  margin: 30px 0; }
  ul.social li {
    display: inline-block;
    margin-right: 20px; }
    ul.social li a {
      display: block;
      font-size: 40px;
      color: white;
      padding: 10px;
      -webkit-transition: .2s ease;
      -o-transition: .2s ease;
      transition: .2s ease; }
      ul.social li a:hover {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1); }

footer {
  margin-bottom: 50px;
  text-align: center;
  opacity: .5; }
  footer p {
    font-size: .8em; }

.article-listing + .article-listing {
  margin-top: 40px;
}  
.article-listing-image {
  margin-right: 30px;
  flex: .5;
}
.article-listing-info {
  flex: 2;
  font-size: 16px;
}

.article-listing-info p {
  font-size: 16px;
}

.article-listing-info a {
  color: #f3e36c;
  text-decoration: none;
}
.article-listing-info a:hover {
  text-decoration: underline;
}
.article-listing-info h3 {
  margin-bottom: 10px;
}
span.meta {
  font-size: 12px;
  opacity: .4;
  letter-spacing: .2px;
  display: block;
  margin-bottom: 10px;
}
.article-listing-info .read-more {
  display: inline-block;
  margin-top: 15px;
}

article {
  max-width: 768px;
  margin: 0 auto 60px auto;
  font-size: 16px;
}

article p {
  font-size: 16px;
}
article p a {
  color: #f3e36c;
}
article p a:after {
  background: #f3e36c;
}

article * + * {
  margin-top: 1em;
}

blockquote {
  display: block;
  margin: 30px 0;
  border-left: 5px solid white;
  padding: 30px;
}
blockquote p {
  font-size: 23px;
  margin-bottom: 15px;
}
blockquote p:before {
  content: '"';
}
blockquote p:after {
  content: '"';
}
blockquote cite {
  font-style: italic;
}
figcaption {
  font-size: 12px;
  opacity: .4;
  letter-spacing: .2px;
}
.post-categories {
  display: block;
  margin-bottom: 25px;
}
.post-categories li {
  display: inline-block;
  margin-right: 3px;
}
.post-categories li a {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #041251;
  background: white;
  border-radius: 3px;
  padding: 2px 6px;
  text-decoration: none;
}
.post-categories li a:hover {
  background: #f3e36c;
  text-decoration: none;
}

.pagination,
.previous-post {
  margin-bottom: 40px;
}

.pagination a,
.previous-post a {
  color: white;
  text-decoration: none;
}
.pagination a:hover,
.previous-post a:hover {
  color: #f3e36c;
}

.pagination .current {
  color: #f3e36c;
  font-weight: bold;
}

.pagination .next {
  margin-left: 20px;
}

.pagination .prev {
  margin-right: 20px;
}
