/* 
- FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

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

/* Color variables */

:root {
  --color-primary: #9d2235;
  --color-primary-light: #b14e5d;
  --color-primary-dark: #6e1825;
  --color-secondary: #f9a826;
  --color-secondary-light: #ffcf5c;
  --color-secondary-dark: #c77e00;
  --color-white: #fff;
  --color-black: #000;
  --color-grey-light-1: #f9f9f9;
  --color-grey-light-2: #f1f1f1;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-dark-1: #333;
  --color-grey-dark-2: #777;
  --color-grey-dark-3: #999;
}

/* GLobal Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
}

body {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  line-height: 1.5;
  color: var(--color-grey-dark-1);
}
ion-icon {
  font-size: 1.8rem;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 1.2rem 2.4rem;
}

.section-heading h2 {
  text-align: center;
  font-size: 2.8rem;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 4px;
}
