@if not-imported("import_once_func") { @import "import_once_func"; }
@if not-imported("framework") { @import "framework"; }

html, body {
  font: $font-size-default/$line-height-default $font-family;
}

#wrapper {
  @include for-tablet {
    font-size: 16px;
  }

  @include for-mobile {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, table, ol, ul, form {
  margin-bottom: $gutter-default;
}

body {
  font-weight: $font-weight-default;
  color: $color-text;
}

strong,
b {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: $color-link;
  @include transition(color 0.2s ease);

  &:hover {
    color: mix($color-link,#000,80%);
  }
}

p {
  margin-bottom: 1.5em;

  &:last-child {
    margin-bottom: 0;
  }

  + ul,
  + ol {
    margin-top: -1.5em;
  }
}
h1,h2,h3,h4,h5,h6 {
  @include headline();
  margin: 0 0 0.75em;
  line-height: 1.15;

  em,i {
    font-style: normal;
    color: $color-text-alt;
  }

  &:last-child {
    margin-bottom: 0;
  }
}

h1, h2 {
  font-size: font-size(32px);
  letter-spacing: 0.125em;
  text-transform: uppercase;
}

h3 {
  font-size: font-size(27px);
  letter-spacing: 0.125em;
  text-transform: uppercase;
}

h4 {
  font-size: font-size(22px);
  letter-spacing: 0.125em;
  text-transform: uppercase;
}

h5 {
  font-size: font-size(22px);
  letter-spacing: 0.125em;
  text-transform: uppercase;
  margin-bottom: 0.25em;
}

@include for-tablet {
  h1, h2 {
    font-size: font-size(27px);
  }

  h3 {
    font-size: font-size(23px);
  }

  h4,h5 {
    font-size: font-size(19px);
  }
}
@include for-mobile {
  h1, h2 {
    font-size: font-size(22px);
  }

  h3 {
    font-size: font-size(18px);
  }

  h4,h5 {
    font-size: font-size(15px);
  }
}

.ff-sans {
  font-family: $font-family-alternate;
  letter-spacing: 0.125em;
  font-weight: 700;
  text-transform: uppercase;
}

.ff_h {
  font-family: $font-family-handwriting;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.ff_a {
  font-family: $font-family-alternate;
  letter-spacing: 0.1em;
  text-transform: none;
}

.ff_a_sc {
  @include small-caps;
}

.fs_small {
  font-size: font-size(16px);
}