//  Foundation for Emails Settings
//  ------------------------------
//
//  Table of Contents:
//
//   1. Global
//   2. Grid
//   3. Block Grid
//   4. Typography
//   5. Button
//   6. Callout
//   7. Menu
//   8. Thumbnail


// 1. Global
// ---------

$primary-color: #e30513;
$secondary-color: #777777;
$success-color: #3adb76;
$warning-color: #ffae00;
$alert-color: #ec5840;
$light-gray: #ebebeb;
$medium-gray: #cccccc;
$dark-gray: #999999;
$black: #333333;
$white: #ffffff;
$pre-color: #ff6908;
$global-width: 660px;
$global-width-small: 95%;
$global-gutter: 26px;
$body-background: $light-gray;
$container-background: $white;
$global-padding: 0;
$global-margin: 0;
$global-radius: 3px;
$global-rounded: 500px;
$global-breakpoint: $global-width + $global-gutter;

$color-scheme: (
  1: $primary-color,
  2: #e98000,
  3: #cea405,
  4: #99396f,
  5: #006d95,
  6: #52b689,
  7: #e24e42,
  8: #6a73ce
);

// 2. Grid
// -------

$grid-column-count: 12;
$column-padding-bottom: $global-padding;
$container-radius: 0;

// 3. Block Grid
// -------------

$block-grid-max: 8;
$block-grid-gutter: $global-gutter;

// 4. Typography
// -------------

$global-font-color: $black;
$body-font-family: Verdana, Geneva, Helvetica, Arial, sans-serif;
$global-font-weight: normal;
$header-color: inherit;
$global-line-height: 1.545454545454545;
$global-font-size: 11px;
$body-line-height: $global-line-height;
$header-font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;;
$header-font-weight: bold;
$h1-font-size: 28px;
$h2-font-size: 24px;
$h3-font-size: 14px;
$h4-font-size: 12px;
$h5-font-size: 20px;
$h6-font-size: 18px;
$header-margin-bottom: 28px;
$paragraph-margin-bottom: 17px;
$small-font-size: 80%;
$small-font-color: $medium-gray;
$lead-font-size: 13px;
$lead-line-height: 1.538461538461538;
$text-padding: 10px;
$subheader-lineheight: 1.4;
$subheader-color: $dark-gray;
$subheader-font-weight: $global-font-weight;
$subheader-margin-top: 4px;
$subheader-margin-bottom: 8px;
$hr-width: $global-width;
$hr-border: 1px solid $medium-gray;
$hr-margin: 20px auto;
$anchor-text-decoration: none;
$anchor-color: $primary-color;
$anchor-color-visited: $anchor-color;
$anchor-color-hover: darken($primary-color, 10%);
$anchor-color-active: $anchor-color-hover;
$stat-font-size: 40px;

// 5. Button
// ---------

$button-padding: (
  tiny: 4px 8px 4px 8px,
  small: 5px 10px 5px 10px,
  default: 8px 16px 8px 16px,
  large: 10px 20px 10px 20px,
);
$button-font-size: (
  tiny: 10px,
  small: 12px,
  default: 16px,
  large: 20px,
);
$button-color: $white;
$button-color-alt: $medium-gray;
$button-font-weight: bold;
$button-margin: 0 0 $global-margin 0;
$button-background: $primary-color;
$button-border: 2px solid $button-background;
$button-radius: 0;
$button-rounded: $global-rounded;

// 6. Callout
// ----------

$callout-background: $white;
$callout-background-fade: 100%;
$callout-padding: 22px 28px 0 26px;
$callout-margin-bottom: $global-margin;
$callout-border: 0;
$callout-border-secondary: 0;
$callout-border-success: 0;
$callout-border-warning: 0;
$callout-border-alert: 0;

// 7. Menu
// -------

$menu-item-padding: 10px;
$menu-item-gutter: 10px;
$menu-item-color: $primary-color;

// 8. Thumbnail
// ------------

$thumbnail-border: solid 4px $white;
$thumbnail-margin-bottom: $global-margin;
$thumbnail-shadow: 0 0 0 1px rgba($black, 0.2);
$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);
$thumbnail-transition: box-shadow 200ms ease-out;
$thumbnail-radius: $global-radius;

