/**
 * Typography & Text styles
 */

@font-face {
    font-family: 'Beteckna';
    src: url('../fonts/beteckna-webfont.eot');
    src: url('../fonts/beteckna-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/beteckna-webfont.woff2') format('woff2'),
         url('../fonts/beteckna-webfont.woff') format('woff'),
         url('../fonts/beteckna-webfont.ttf') format('truetype'),
         url('../fonts/beteckna-webfont.svg#betecknaregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

* {
  /*-webkit-font-smoothing: antialiased;*/
}

/* 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: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
}

/**
 * Links
 */
a {
  font-weight: normal;
  text-decoration: none; 
}
a:focus {
  outline: thin dotted;
}

small {
  font-size: 75%;
}

/**
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  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: 2rem;
  font-weight: 300;
}
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.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h5 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }
h6 { font-size: 1.4rem; 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: 2px solid #AFC0D2;
  margin: 1.6em 10%;
  padding: .75em 1em;
  font-size:1.8rem;
}
blockquote p:last-child {
  margin-bottom: 0;  
}

/**
 * Horizontal lines
 */
/* https://css-tricks.com/examples/hrs/ */
hr {
  border: 0;
  height: 1px;
  margin:2em auto;
  width:85%;
  background-image: -webkit-linear-gradient(left, rgba(80,80,80,0), rgba(80,80,80,.5), rgba(80,80,80,0));
  background-image:    -moz-linear-gradient(left, rgba(80,80,80,0), rgba(80,80,80,.5), rgba(80,80,80,0));
  background-image:     -ms-linear-gradient(left, rgba(80,80,80,0), rgba(80,80,80,.5), rgba(80,80,80,0));
  background-image:      -o-linear-gradient(left, rgba(80,80,80,0), rgba(80,80,80,.5), rgba(80,80,80,0));
}
hr.thin {
  margin: 10px auto;
}
hr.collapse-margin {
  margin: 0 auto;
}

/* Utility class to set elements inline */
.container-inline * {
  display:inline;
}

/* A utility class for horizontal scrolling when content is too wide */
.side-scroll {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
