:root {
  --color-primary: #feca1f;
  --color-secondary: #2f3a49;
  --color-background: #21252c;
  --color-text: #efeee9;

  --font-primary: "Inria Sans", sans-serif;

  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;

  --blur-amount: 0px;
  --nav-height: 80px;
}

#home > div,
#scroll-indicator {
  filter: blur(var(--blur-amount));
  transition: filter 0.2s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-background);
  color: var(--color-text);
  scroll-behavior: smooth;
}

section {
  min-height: 100dvh;
  padding-top: var(--nav-height);
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  line-height: 1.3;
}

p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

/* Optional Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

section {
  padding-inline: 4rem; /* or any value you prefer! */
}

@media (max-width: 768px) {
  section {
    padding-inline: 2rem;
  }
}

@media (max-width: 480px) {
  section {
    padding-inline: 1rem;
  }
}
