/* Typography System */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lora:wght@400;500;600&family=Source+Sans+Pro:wght@400;600&display=swap');

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--color-primary-text);
  background-color: var(--color-background);
}

/* Headings */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-text);
  margin-bottom: var(--space-md);
}

h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary-text);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--font-size-h1);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-h2);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

/* Body Text */
p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

/* Links */
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* Emphasis */
strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

/* Small Text */
small,
.text-small {
  font-size: var(--font-size-small);
  color: var(--color-secondary-text);
}

/* Lead Text */
.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-secondary-text);
  margin-bottom: var(--space-lg);
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-secondary {
  color: var(--color-secondary-text);
}
