/** FONTS
 ---------------------------------------------------------*/
@font-face {
  font-family: 'lacuna_regularregular';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/lacuna/lacuna-webfont.eot');
  src: url('../fonts/lacuna/lacuna-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lacuna/lacuna-webfont.woff') format('woff'), url('../fonts/lacuna/lacuna-webfont.ttf') format('truetype'), url('../fonts/lacuna/lacuna-webfont.svg#lacuna_regularregular') format('svg');
}
@font-face {
  font-family: 'lacuna_italicregular';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/lacuna/lacuna-italic-webfont.eot');
  src: url('../fonts/lacuna/lacuna-italic-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lacuna/lacuna-italic-webfont.woff') format('woff'), url('../fonts/lacuna/lacuna-italic-webfont.ttf') format('truetype'), url('../fonts/lacuna/lacuna-italic-webfont.svg#lacuna_italicregular') format('svg');
}

/** GLOBALS
 ---------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'lacuna_regularregular';
  font-size: 18px;
  line-height: 24px;
  min-width: 320px;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

@media all and (max-width: 60em) {
  body {
    font-size: 16px;
  }
}
@media all and (max-width: 48em) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 34em) {
  body {
    font-size: 13px;
  }
}

/** TYPOGRAPHY
---------------------------------------------------------*/
p {
  line-height: 1.7em;
  margin: 0 0 1.6em;
  color: #000;
}

p strong {
  font-weight: 300;
  color: #f31e41;
}

p big {
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.5em;
}

p big strong {
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25em;
  margin: 0 0 0.5em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: 'lacuna_regularregular';
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: #f31e41;
}

h1 {
  margin: 0 0 0.35em;
  color: #f31e41;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: #f31e41;
}

h2 {
  font-size: 1.35em;
  font-size: 18px;
  font-weight: 300;
  text-transform: none;
  color: #f31e41;
}

@media (min-width: 47.99em) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 24px;
  }
}

/** LINKS & BUTTONS
---------------------------------------------------------*/
a {
  text-decoration: none;
  color: #f31e41;
}

.button {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8em;
  font-weight: 700;
  display: inline-block;
  padding: 0.5em 1.25em;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #fff !important;
  background-color: #f31e41;
}

.button:after {
  font-family: FontAwesome;
  font-weight: 400 !important;
  position: relative;
  top: -1px;
  margin-left: 0.75em;
  content: '\f061';
}

.button:hover {
  background-color: #cf2031;
}

/** CONTAINERS
---------------------------------------------------------*/

.page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-right: 1.25em;
  padding-left: 1.25em;
  position: relative;
}

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

.fluid-video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 1.6em;
}

.fluid-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/** HEADER
---------------------------------------------------------*/
header {
  padding: 1.5em 0;
  border-bottom: 3px solid #f7e3e6;
}

header .container {
  display: flex;
  align-items: center;
}

#brand {
  margin: 0;
}

#brand a {
  overflow: hidden;
  display: block;
  background: url('../images/logo-2x.png') 0 0 no-repeat;
  width: 311px;
  height: 49px;
  text-indent: -9999em;
  background-size: 100%;
}

@media (max-width: 48em) {
  #brand a {
    width: 250px;
    height: 40px;
  }
}

@media (max-width: 34em) {
  #brand a {
    max-width: 220px;
    height: 35px;
  }
}

/* Navigation */
nav {
  margin: 0 0 0 auto;
}

nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}

nav li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  display: inline;
  margin-left: 1em;
  padding-left: 1em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-left: 2px solid #f31e41;
}

nav li:first-child {
  border-left: 0;
}

nav li a {
  text-decoration: none;
  color: #000;
}

nav li a:hover {
  color: #f31e41;
}

/** MAIN
---------------------------------------------------------*/

main {
  width: 100%;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  padding: 2em 20px;
}

.front main {
  flex-grow: 1;
  flex-direction: column;
  display: flex;
  justify-content: center;
}

/** FOOTER
---------------------------------------------------------*/
footer {
  clear: both;
  padding: 1.75em 1em 2.5em;
  background-color: #000;
  margin-top: auto;
}

footer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8em;
  line-height: 1.8em;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

footer p a {
  color: #fff;
}

/** PAGE: HOMEPAGE
---------------------------------------------------------*/

.front main {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.front main p {
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.35em;
  color: #000;
}

.front main strong {
  font-weight: 300;
  color: #f31e41;
}
