/* Base Typography & Layout Elements */

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Helper Classes */
.text-center {
  text-align: center;
}

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

.bg-surface-soft {
  background-color: var(--surface-soft);
}

.mt-xl {
  margin-top: 4rem;
}

.link-primary {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.link-primary:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}