

@import url(@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Lora&family=Open+Sans&display=swap');

/* These styles apply to every element */
* {
  box-sizing: border-box;
}

/* Style main page */
body {
  padding: 50px;
  background-color: #edeae5;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* Style navigation links to animate the underline */
a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 0px;
  transition: color .35s ease;
  text-decoration: none;
}

a:hover, a :focus {
  color: #557a95;
}

a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  transition: width 0s ease, background-color .35s ease;
}

a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #557a95;
  transition: width .35s ease;
}

a:hover:before {
  width: 100%;
  background: #557a95;
  transition: width .35s ease;
}

a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

/* Styles for the animated logo/monogram */
.monogram {
  background-image: url("images/logo.png");
  /* background-color: #83677b; */
  background-repeat: no-repeat;
  background-size: contain;
  width: 40pt;
  height: 40pt;
  margin: 0 8pt 8pt 8pt;
}

.monogram:hover {
  background-image: url("images/logohover.png");
  /* background-color: #557a95; */
}

@media (-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
  .monogram {
    /* TODO: Use @2x version ask rob */
    background-image: url("images/logo.png");
  }

  .monogram:hover {
    /* TODO: Use @2x version ask rob */
    background-image: url("images/logohover.png");
  }
}

/* Styles for the top navigation bar, and the logo */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: .5rem 0;
  background: #edeae5;
  z-index: 3;
  will-change: transform;
  transition: background-color 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background-color 0.3s;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background-color 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

header nav .logo {
  float: left;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-right: 1rem;
  font-size: 20pt;
  letter-spacing: 2pt;
  line-height: inherit;
  font-weight: 500;
}

header nav .logo:after {
  content: '';
  display: table;
  clear: both;
}

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

header nav ul li {
  float: none;
  margin-left: 0;
  font-family: 'Lora', serif;
  font-size: 20pt;
}
@media (min-width: 768px) {
  header nav ul li {
    float: left;
    margin-left: 1rem;
  }
}
header nav ul li a {
  display: block;
}
@media (min-width: 576px) {
  header nav ul li a {
    display: block;
    padding: .425rem 0rem;
  }
}

@media (max-width: 768px) {
  ul {
    clear: both;
  }
  ul li {
    padding: .5em 0;
  }
}
.hide-nav {
  transform: translateY(-120% !important);
  -webkit-transform: translateY(-120%) !important;
}

ul.menu-left {
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
}
@media (min-width: 768px) {
  ul.menu-left {
    display: block !important;
    float: right;
    max-height: none;
  }
}
ul.menu-left:before {
  content: '';
  display: table;
  clear: both;
}
ul.menu-left.collapse {
  max-height: 15em !important;
}

.nav-toggle {
  display: block;
  border-radius: 5px;
  background-color: transparent;
  float: right;
  height: 38px;
  width: 38px;
  cursor: pointer;
  padding: 8px 8px;
}
.nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(4.4px, 4.4px);
}
.nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(4.4px, -4.4px);
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background-color: #000;
  transition: all .25s;
}

/* Style the main container for all screen sizes */
/* The main container does things like make each section the full height */
.container {
  padding: 0px 15px 0px 15px;
}
@media (min-width: 0) {
  .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}

/* Other styles for the container */
.container h1 {
  font-family: 'Lora', serif;
  font-size: 100pt;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 180pt;
  padding-bottom: 0;
  line-height: 100pt;
}

.container h2 {
  font-family: 'Lora', serif;
}

.container h4 {
  color: #806543;
}

.container h5 {
  color: #806543;
  font-size: 20pt;
  padding-top: -25pt;
  margin-top: 0;
}

.container ul {
  font-family: 'Open Sans', sans-serif;
}
.container p {
  font-family: 'Open Sans', sans-serif;
}

/* Style section tags */
section {
  /* Min height a section */
  min-height: 100vh;
  /* Spacing between sections */
  margin-bottom: 200pt;
}

section#about {
  text-align: left;
}

section h1 {
  text-align: left;
}

/* Styles for the footer */
.signature {
  position: fixed;
  font-weight: 100;
  font-family: 'Open Sans', sans-serif;
  bottom: 10px;
  color: #000;
  left: 0;
  letter-spacing: 4px;
  font-size: 10px;
  width: 100vw;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}


