
//== Scaffolding
//
//## Settings for some of the most global styles.

// Background color for `<body>`.
$body-bg:				 $white-base;
// Global text color on `<body>`.
$text-color:			#676767;

// Global textual link color.
$link-color:			#0073aa;
// Link hover color set via `darken()` function.
$link-hover-color:		darken($link-color, 15%);
// Link hover decoration.
$link-hover-decoration: none;




//== Typography
//
//## Font, line-height, and color for body text, headings, and more.
$font-opensans:			'Open Sans', sans-serif;
$font-Poppins:			'Poppins', sans-serif;


$body-font:				$font-opensans;
$heading-font:			$font-Poppins;
$secondary-font:		$font-Poppins;

$font-size-base:		1rem; // Assumes the browser default, typically `16px`
$font-size-lg:			($font-size-base * 1.13); // 18px
$font-size-sm:			($font-size-base * .875); // 14px


$h1-font-size:          $font-size-base * 3.375;
$h2-font-size:          $font-size-base * 2.625;
$h3-font-size:          $font-size-base * 2.25;
$h4-font-size:          $font-size-base * 1.5;
$h5-font-size:          $font-size-base * 1.25;
$h6-font-size:          $font-size-base;

//weight
$headings-font-weight-h1:	800;
$headings-font-weight-h2:	800;
$headings-font-weight-h3:	800;
$headings-font-weight-h4:	700;
$headings-font-weight-h5:	700;
$headings-font-weight-h6:	700;


$font-weight-light:           300;
$font-weight-normal:          500;
$font-weight-bold:            700;
$font-weight-bolder:          800;


// line height for paragraph
$line-height-base:			 	1.8;
$line-height-widget-li:			2.5rem;
// body font weight
$body-font-weight:				$font-weight-normal;



//== Headings
//
$headings-font-family: 			$heading-font;
$headings-font-weight-h1-h3:	800;
$headings-font-weight-h4-h6:	700;
$headings-line-height: 			1.3;
$headings-line-height-smaller:	1.5;
$headings-color: 				#000;


$headings-nav-side-icons-color: 	#888;

