/* 
  --- 01 Typography System

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

  - Font weights 

  Defualt 400
  Medium 500
  Semi-bold 600
  bold 700

  - Line height
  Defualt 1 
  Small 1.05
  Medium 1.2
  large 1.4
  paragraph defualt 1.6


  - Line heights
  -0.5px
  0.75px


  --- 02 COLOR

  primary color #e67e22
  Tints: 
  #fdf2e9
  #fae5d3
  #eb984e
  #2e1907
  #45260a
  
  
  Shades: #cf711f
  Accent:
  #888
  #6f6f6f(Lightest grey allowed   #fdf2e9)
  #555
  #333

  --- 03 Shadows
0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);



  --- 04 Border-Radius
Defualt 9px
Medium 11px
  --- 05 Whitespaces
  - Spacing System
  2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

html {
  font-size: 62.5%;
  overflow-x: hidden;
  /* You can use scroll-behavior in html also you can write your own for every browser in js */
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* For Accessbilty when we press tab then bar will appear to be rounded we select every element then apply psuedo focus class on it and apply outline: none;   */
*:focus {
  outline: none;
  /* outline: 4px solid #e67e22;
  outline-offset: 8px; */
  /* Trick for outline is using box shadow */
  box-shadow: 0 0 0 0.8rem rgba(230, 125, 34, 0.5);
}
body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  /* Only works if there is nothing absolute positioned in relation to body */
  overflow-x: hidden;
}

/* ************************ */
/* General Reuseable Component */
/* ************************ */

/* Creating reuseable css code of grid and flex for better performance -- space for variation in css class */

.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}
.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 7.6rem;

  /* margin-bottom: 9.6rem; */
}
/* .grid:last-child{
  margin-bottom: 0;
} */

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.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--center {
  align-items: center;
}

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

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

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
.subheading {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;

  /* Only neccesary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  text-decoration: none;
  padding: 1.6rem 3.2rem;
  border-radius: 8px;
  /* Put transition on original state  We always use all other than background-color */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover,
.btn--form:active {
  background-color: #fff;
  color: #555;
}

.btn--left:link,
.btn--left:visited {
  background-color: #e67e22;
  color: #fff;
}
.btn--left:hover,
.btn--left:active {
  background-color: #cf711f;
  color: #fff;
}
.btn--right:link,
.btn--right:visited {
  background-color: #fff;
  color: #333;
}

.btn--right:hover,
.btn--right:active {
  background-color: #fdf2e9;
  /* When we add border then the section jumps up So we use trick that is using shadows */
  /* border: 2px solid #fff; */
  box-shadow: inset 0 0 0 3px #fff;
}

.link:link,
.link:visited {
  display: inline-block;
  text-decoration: none;
  padding: 2px;
  color: #e67e22;
  /* currentColor will apply the same color of color property in border if you do change the color */
  border-bottom: 1px solid currentColor;
  transition: all 0.3s;
}
.link:hover,
.link:active {
  border-bottom: 1px solid transparent;
  color: #cf711f;
}

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

.list-icon {
  height: 3rem;
  width: 3rem;
  color: #e67e22;
}
.list-items {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}

/* Helper/Setting classes */
/* Generic Class or Helper class always have !important*/
.margin-right-sm {
  margin-right: 1.6rem !important;
}

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

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

strong {
  font-weight: 500;
}
