@layer base {

/* =========================================
   FONT FACES
========================================= */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* =========================================
   BASE TYPOGRAPHY
========================================= */
body {
  font-size: var(--font-size-base);
  line-height: 1.6;
}

/* =========================================
   HEADINGS SCALE
========================================= */
h1 {
  font-size: var(--heading-1);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: var(--heading-2);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--heading-3);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

/* =========================================
   PARAGRAPH
========================================= */
p {
  margin-bottom: var(--space-md);
  color: var(--color-gray);
}

/* =========================================
   TEXT UTILITIES
========================================= */
.text-sm {
  font-size: var(--font-size-sm);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-bold {
  font-weight: 700;
}

.text-medium {
  font-weight: 500;
}

.text-muted {
  color: var(--color-gray);
}

/* =========================================
   LINKS
========================================= */
a {
  color: var(--color-primary);
}

a:hover {
  color: var(--color-primary-dark);
}

/* =========================================
   LISTS
========================================= */
ul,
ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

ul li {
  list-style: disc;
}

ol li {
  list-style: decimal;
}

/* =========================================
   BLOCKQUOTE
========================================= */
blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--color-gray);
}

/* =========================================
   RESPONSIVE TYPOGRAPHY
========================================= */
@media (max-width: 768px) {

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

}

}