:root {
  --color-clear: 255, 255, 255;
  --color-dark: 14, 14, 14;
  --color-footer: 236, 235, 234;
  --color-1: 190, 250, 80;
  --color-light-grey-1: 232, 228, 226;
  --color-socialmedia-icon: rgba(var(--color-dark), 1);
  --color-red: 229, 57, 53;
  --color-toast: 255, 255, 255;

  --text-size: 1;
  --text-line-height: 1.3;

  --title-factor: 1;
}

/* reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
    "NHGD",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

/* Exclure les icônes Font Awesome */
i,
i::before,
i::after {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family:
    "NHGD",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 700;
}

h1 {
  font-size: calc(var(--title-factor) * 2.5em);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-style: italic;
}

h1 i {
  font-size: 0.65em;
  margin-top: 0.7em;
}

h2 {
  font-size: calc(var(--title-factor) * 2em);
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h2 i {
  font-size: 0.7em;
  margin-top: 0.7em;
}

h3 {
  font-size: 1.5em; /* ~24px */
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 1.25em; /* ~20px */
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

h5 {
  font-size: 1.1em; /* ~17.6px */
  font-weight: 500;
  line-height: 1.5;
}

h6 {
  font-size: 1em; /* ~16px */
  font-weight: 500;
  line-height: 1.5;
}

a {
  color: rgb(var(--color-clear));
  font-weight: 500;
}

p {
  font-size: var(--text-size);
  line-height: var(--text-line-height);
}

strong {
  font-weight: 700;
}

i {
  font-style: normal;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  background-color: rgb(var(--color-dark));
  color: rgb(var(--color-clear));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-align: center;
}

main {
  flex: 1 1 auto;
  margin: auto;
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  padding: 2.2rem 5em 3rem 5em;
  box-sizing: border-box;
}

section {
  padding: 3rem 0 1.5rem 0;
}

section.small-padding-top {
  padding-top: 1rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgb(var(--color-dark));
  color: rgb(var(--color-clear));
  border: 1px solid rgb(var(--color-clear));
  text-decoration: none;
  font-weight: 500;
  margin-top: 2.5rem;
  border-radius: 10px;
  cursor: pointer;
}

.button-calendly {
  background-color: rgb(var(--color-clear));
  color: rgb(var(--color-dark));
  border: none;
  font-size: var(--text-size);
}

.button i {
  margin-left: 0.3rem;
}

textarea {
  max-height: 500px;
}

.mobile-only {
  display: none;
}

.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(var(--color-clear));
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transition: transform 0.4s;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 1.6rem 3em 2rem 3em;
  }
  :root {
    --text-size: 0.95;
    --title-factor: 0.8;
  }
  .mobile-only {
    display: block;
  }
}

@media (max-width: 700px) {
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }
  :root {
    --text-size: 0.9;
  }
}
