/* FONTS */
@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("../fonts/AGaramondPro-Bold.eot");
  src: url("../fonts/AGaramondPro-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/AGaramondPro-Bold.woff2") format("woff2"),
    url("../fonts/AGaramondPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("../fonts/AGaramondPro-Italic.eot");
  src: url("../fonts/AGaramondPro-Italic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/AGaramondPro-Italic.woff2") format("woff2"),
    url("../fonts/AGaramondPro-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("../fonts/AGaramondPro-Regular.eot");
  src: url("../fonts/AGaramondPro-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/AGaramondPro-Regular.woff2") format("woff2"),
    url("../fonts/AGaramondPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("../fonts/AGaramondPro-BoldItalic.eot");
  src: url("../fonts/AGaramondPro-BoldItalic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/AGaramondPro-BoldItalic.woff2") format("woff2"),
    url("../fonts/AGaramondPro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/* GENERAL */

/* Detault parameters */

* {
  font-family: "Source Sans Pro";
  font-weight: 400;
  box-sizing: border-box;
  font-size: rem;
  text-decoration: none;
  color: black;
  font-weight: normal;
  font-style: normal;
}

body {
  margin: auto;
  margin-bottom: 0px;
  width: 100%;
  padding: 0;
  width: 100%;
  font-family: "Source Sans Pro", "Helvetica", "Sans-Serif";
  background-color: #FEFCF6; /* full page background */
}

/* GENERAL */
html {
  font-size: 11px;
}

.box {
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 50px;
}

.lighter {
  font-size: 1.7rem;
  line-height: 1.45em;
  width: 100%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pserif {
  font-size: 2rem;
  line-height: 1.5em;
  color: #333;
  font-family: "Adobe Garamond Pro";
  width: 100%;
  font-weight: normal;
  font-style: normal;
}

.pserif c {
  color: #529796; /* Light blue */
}

.pserif sc {
  font-family: "Adobe Garamond Pro";
  color: #DD8D94; /* Light pink for highlights in text */
}

.pserif i {
  font-family: "Adobe Garamond Pro";
  color: #333;
  font-style: italic;
  font-weight: normal;
}

.pserif ic {
  font-family: "Adobe Garamond Pro";
  font-style: italic;
  font-weight: normal;
  color: #DD8D94;
}

.pserif b {
  font-family: "Adobe Garamond Pro";
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
}

.pserif bc {
  font-family: "Adobe Garamond Pro";
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
  color: #DD8D94;
}

/* NAVIGATION BAR */
.nav-bar {
  font-style: normal;
  text-align: right;
  padding-bottom: 5px;
  padding-top: 20px;
  margin-top: 0px; /* Space between navegation bar and top of body*/
  list-style: none;
  font-weight: 500;
  font-size: large;
  overflow: hidden;
  width: 100%;                  /* full width background */
  background-color: #fefaf1;
  border-bottom: 0px solid #d5d5d5;
  position: sticky;
  top: 0;
  z-index: 1;
}

.nav-container {
  width: 90%;                    /* content only 90% */
  margin: 0 auto;                /* center it */
  display: flex;
  justify-content: space-between;/* left group + right group */
  align-items: center;
  padding: 15px 0;
}

.nav-left,
.nav-right {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-left li,
.nav-right li {
	margin: 0 10px;
}

.nav-left a,
.nav-right a {
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #316669;   /* default color */
  transition: color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
  color: #B5BAA1;   /* hover + active color */
}


.nav-links a,
.nav-open a {
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #316669;   /* default color */
    transition: color 0.3s ease;
   }

.nav-open a:hover,
.nav-links a:hover,
.nav-open a.active,
.nav-links a.active {
  color: #B5BAA1;   /* hover + active color */
}


footer .fa:hover {
  color: #B5BAA1; 
}


