/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

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

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #e67e22
- Tints:
#fdf2e9
#fae5d3
#eb984e

- Shades: 
#cf711f
#45260a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

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

/* html {
  scroll-behavior: smooth;
} */

.container {
  max-width: 120rem;
  margin: 0 auto;
  justify-items: center;
  align-items: center;
}
.grid {
  display: grid;
  gap: 8rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.hero-primary,
.heading-secondary {
  letter-spacing: -0.5px;
  line-height: 1;
  color: #555;
}

.heading-primary {
  font-size: 5.2rem;
  margin-bottom: 4.8rem;
}

.heading-secondary {
  font-size: 4.2rem;
  margin-bottom: 6.4rem;
}

.sub-heading {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.6rem;
  letter-spacing: 2px;
}

.btn {
  border: 0;
  display: inline-block;
  border-radius: 9px;
  padding: 1.6rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  transition: background-color 1s;
  font-weight: 600;
}

.btn--full:link,
.btn--full:visited {
  background-color: #e67e22;
}

.btn--full:hover,
.btn--full:active {
  background-color: #cf711f;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
  transition: box-shadow 1s;
}

.btn--outline:hover,
.btn--outline:active {
  box-shadow: inset 0 0 0 3px #fae5d3;
}

.margin-right-small {
  margin-right: 2.4rem;
}

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

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

.list-item span {
  font-size: 1.8rem;
  font-weight: normal;
  color: #555;
}

.list-icon {
  color: #cf711f;
  font-size: 2.4rem;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(214, 36, 36, 0.412);
}
