/* ========================================
   Typography - Blanq Premium Portfolio
   ======================================== */

/* Font Loading - Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Bebas+Neue&family=DM+Sans:wght@300;400;500;700&family=Inter:wght@300;400;500;700&display=swap');

/* Base Typography */
body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* Headlines - Display Font */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
}

h4 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}

h5 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

h6 {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
}

/* Body Text */
p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

/* Larger paragraph text for readability */
.section p,
.hero-fullscreen p,
.footer p {
  font-size: 1.05rem !important;
}

@media (min-width: 768px) {
  .section p,
  .hero-fullscreen p,
  .footer p {
    font-size: 1.1rem !important;
  }
}

/* Small Text / Captions */
small, .text-sm {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--text-secondary);
}

/* Extra Small Text */
.text-xs {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  color: var(--text-secondary);
}

/* Labels / Section Headers */
.label, .section-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--text-secondary);
}

/* Monospace / Code */
code, pre, .mono {
  font-family: 'Courier New', Courier, monospace;
  font-size: var(--fs-sm);
}

/* Links */
a {
  color: var(--text-primary);
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent);
}

/* Selection */
::selection {
  background-color: var(--accent);
  color: var(--text-primary);
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
