/*
--- 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
Large: 1.8

- Letter spacing
-0.5px
0.75px

-Font Families
-Rubik
-Playwrite AU SA, cursive

--- 02 COLORS

- Primary: #e67e22
- Tints:


- Shades: 


- Accents:
- Mint, Pastel Colors, Beige...

#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
*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;

  /* Does NOT work on Safari */
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #1e1e1e;
  background-color: #ede4d6;

  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
}

/* GENERAL SECTION STYLE CUSTOMIZATION */
.section {
  padding: 12rem 3rem;
  border-top: 1px solid #62a29a;

  transition: transform 1s, opacity 1s;
}

/* MAIN CONTAINER STYLE SPECIFICATIONS */
.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

/* THESE WILL BE DIFFERENT GRID SPECIFICIAIONS */
.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

/* HEADINGS */
.section-heading {
  font-size: 3.2rem;
  font-family: "Playwrite AU SA", cursive;
  color: #62a29a;
}

/* TRANSITION */
.transition {
  transition: ease-in 0.5s;
}

/* HIDDEN CLASS */
.hidden {
  opacity: 0;
}

/* /* LAZY IMAGES STYLE CUSTOMIZATION */
.lazy {
  filter: blur(7.5px);
}

/* SLIDER ANIMATION */
@keyframes fade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
