/**
 ***** TYPOGRAPHY AND TEXT *****
 */

/* html is set to 62.5% so that all the REM measurements are based on 10px sizing. So basically 1.5rem = 15px */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: Inter, "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0f110c;
}

/* Links */
a {
  font-weight: normal;
  text-decoration: none; 
  color:#38761d;
}
a:focus {
  outline: thin dotted;
}

small {
  font-size: 75%;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Inter, sans-serif;
  line-height: 1;
  text-rendering: optimizeLegibility; /*  voodoo to enable ligatures and kerning | https://developer.mozilla.org/en-US/docs/CSS/text-rendering */
  margin-top: 0;
  margin-bottom: 1.0rem;
  font-weight: 700;
}
h1 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h2 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h3 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h4 { font-size: 1.6rem; line-height: 1.5;  letter-spacing: -.05rem; } /* h4 different header */
h5 { font-size: 1.8rem; line-height: 1.6;  letter-spacing: 0; }
h6 { font-size: 1.6rem; line-height: 1.6;  letter-spacing: 0; }

/* Paragraphs */
p {
  margin: 0 auto 1.5em auto; /* bottom margin for paragraphs */
}
p + p {

}

/* Quotes & Blockquotes */
q {
  quotes: '\00201C' '\00201D';
}
q:before {
  content: open-quote;
}
q:after {
  content: close-quote;
}

blockquote {
  /*background-color: #F8F8F8;*/
  border-left: 1px solid #030;
  margin: 1.4em 10%;
  padding: .75em 1em;
  font-size:1.25rem;
}
blockquote p:last-child {
  margin-bottom: 0;  
}

/**
 * Misc Text Styles
 */
hr.solid {
  border-top: 1px solid #030;
}

.label {
  color: white;
  font-size: 1.3rem;
  padding: 5px;
}
.darkgreen {background-color: #386641;} /* Hunter Green */
.applegreen {background-color: #9EA93F;} /* Apple Green */
.orange {background-color: #c05746;} /* Jasper */
.gray {background-color: #e7e7e7; color: black;} /* Gray */ 

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

/**
 ***** COLUMNS *****
 */
.column {
  float: left;
  padding: 10px;
}

.column.side {
  width: 30%;
}
.column.middle {
  width: 60%;
}

.column.mini {
  width: 10%;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}

/**
 ***** IMAGES *****
 */

/* 
 *** SIMPLE GALLERY
*/

/* Image Gallery */
div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*
* Collapsible sections
*/

.collapsible {
  background-color: transparent;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 13px;
}

.active-drop, .collapsible:hover {
  background-color: #eee;
}

.dropdown {
  padding: 8px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

/**
 * Layout styles
 */



/* Background color 

html, #container, .inner { background-color:transparent;}

html { background-color: #faf9f6;
}
*/

/* Full size background image

background:url(frog2.jpg) center center no-repeat fixed;
*/

html, #container, .inner { background-color:transparent;}
html {
  background-color: #faf9f6;
  background-size:cover;
}
body {
  max-width:800px;
  margin:25px auto;
}

header, #content, footer {
  padding:25px; 
}

iframe {
  max-width:100%;
}

/* Menu Links */
ul.main-menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  list-style: none;
}
ul.main-menu li a {
  margin-right:20px;
  font-size:1.5rem;
  border-bottom: solid transparent 3px;
  color:#000000;
}
ul.main-menu li a:hover {
  color:#9EA93F;
}
ul.main-menu li a.active {
  color:#303030;
  border-bottom-color:#38761d‎;
}

/* Utility classes */
.hide {
  display:none;
}
.show {
  display:block;
}


