/* 

--- 01 Typography System ---

*** Font-Size *** (https://type-scale.com/ => Major Third)

8 / 10 / 12 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98;

*** Spacing-System ***
 
2  / 4  / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*** Font-Weights ***
Default: 400
Medium: 500
Semi-bold: 600
Bold : 700


*** Line-Heights ***

Small: 1.05;
Paragraph Default: 1.4

*** Letter-Spacing ***
Default: 1px;
Headings : -0.5px;

--- 02 Colors ---

- Primary : #e67e22
- Tints : #eb984e, #fdf2e9, #fae5d3,
- Shades : #cf711f, #45260a;
- Accents :
- Grays :
#555
#333
#6f6f6f => Lightest gray allowed on #fdf2e9;

--- 05 Shadows ---

Normal Box Shadow : box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.25);

--- 06 Border-Radius ---

Default : 10px;

--- 07 Whitespace ---

*** Spacing-System ***
 
2  / 4  / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128


*/

/**********************/
/* GENERAL COMPONENTS */
/**********************/


*:focus {
  outline: none;
  box-shadow: 0 0 0 0.4rem rgba(207, 113, 31, 0.5);
}

.center--text {
  text-align: center;
}

.container {
  /* General used widths 1140px / 1200px */
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
}

/* 
All grid selectors that are not a last child will
have the margin-bottom of 9.6rem
*/
.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--center--v {
  align-items: center;
}

.grid--center--h {
  justify-items: center;
}

.grid--2--cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3--cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4--cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5--cols {
  grid-template-columns: repeat(5, 1fr);
}

.grid--footer {
  grid-template-columns: 1fr 1fr 0.6fr 0.6fr 0.6fr;
}

.margin--right--sm {
  margin-right: 1.6rem !important;
}

.margin--bottom--sm {
  margin-bottom: 2.4rem !important;
}

.margin--bottom--md {
  margin-bottom: 4.8rem !important;
}

.margin--bottom--bg {
  margin-bottom: 9.5rem !important;
}

.heading--primary,
.heading--secondary,
.heading--tertiary,
.heading--quaternary,
.heading--subheading {
  line-height: 1.05;
  color: #333;
  letter-spacing: -0.5px;
  /* We can use pixels in these situations */
}

.heading--primary {
  font-size: 5.1rem;
}

.heading--secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading--tertiary {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.heading--quaternary {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.heading--subheading {
  display: block;
  font-size: 2rem;
  color: #cf711f;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 1px;
}

strong {
  font-weight: 500;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.list--icon {
  width: 3rem;
  height: 3rem;
  color: #cf711f;
}

.list--item--flex {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  gap: 1.6rem;
}

.list--align--center {
  align-items: center;
}
