/* 

--- TYPOGRAPHY SYSTEM

--Container width
    Hero: 1600px
    Rest: 1500px

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

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

    FONT SIZE SYSTEM (px)
    10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98   
 main header: 6.2rem
 sub header: 2.4rem

--- COLORS
Primary: #e67e22 
Tints: #fae5d3 #f8d8bd #cf711f 
Shades:
Accents: #51cf66
Greys: #555 #333

lightest gray #6f6f6f allowd on #fae5d3

--- SHADOWS
  default - box-shadow: 0rem 1rem 2rem rgba(0, 0, 0, 0.6);
  hover - box-shadow: 1rem 2rem 4rem rgba(0, 0, 0, 0.3);

--- BORDER RADIUS
Default: 9px
Cards: 20px

--- WHITE SPACE
    SPACING SYSTEM (px)
    2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
    main header margin: 3.2
    ul left margin 1.6

    Letter spacing:
          subheader: 1px;
*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Rubik", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

*:focus {
  outline: none;
  /* outline: 2px solid #45260a; */
  box-shadow: 0 0 0 0.3rem rgba(230, 126, 34, 0.5);
}

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

/* ********************REUSABLE COMPONENTS**************** */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-large {
  margin-bottom: 9.6rem !important;
}

.margin-bottom-medium {
  margin-bottom: 5.4rem !important;
}

.centered-container {
  max-width: 160rem;
  padding: 0 4.8rem;
  margin: 0 auto;
}

/* reusable grid where grid class
will apply the grid on to the 
container and grid--N-cols 
will specify the number of the 
columns in the grid */
.grid {
  display: grid;
  gap: 9.6rem;
}

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

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

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

.header-primary,
.heading-secondary,
.header-tertiary {
  color: #333;
  margin-bottom: 3.2rem;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.header-primary {
  font-size: 6.2rem;
  line-height: 1.05;
}

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

.hero-discription {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4.8rem;
}

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

strong {
  font-weight: 500;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
}

.tag--vegeterian {
  background-color: #adcf51;
}
.tag--vegan {
  background-color: #51cf66;
}
.tag--paleo {
  background-color: #e9df4c;
}

.justify-items {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.list li {
  font-size: 2.2rem;
  /* font-weight: 500; */
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 1.6rem;
}

.checkmark-icon {
  height: 3rem;
  width: 3rem;
  color: #e67e22;
  margin-right: 1.6rem;
}

/* ***************BUTTONS***************** */

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

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

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #333;
}

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

.btn--form {
  align-self: flex-end;
  color: #fce9d9;
  background-color: #45260a;
  transition: all 0.3s;
}

.btn--form:hover {
  background-color: #fce9d9;
  color: #45260a;
}
