/* ============================================
   Impact Cinema — Fonts
   ic-fonts.css
   ============================================ */

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* Font face definitions (fallback) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: local('Playfair Display');
}

/* ── Font Utility Classes ── */
.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }
.font-mono    { font-family: var(--font-mono); }

/* ── Weight ── */
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

/* ── Tracking ── */
.tracking-wide   { letter-spacing: 0.1em; }
.tracking-wider  { letter-spacing: 0.2em; }
.tracking-widest { letter-spacing: 0.35em; }

/* ── Serif Italic accent ── */
.ic-serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ic-gold);
}

/* ── Eyebrow / label text ── */
.ic-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ic-gold);
}

/* ── Lead text ── */
.ic-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ic-text);
}

/* ── Caption ── */
.ic-caption {
  font-size: 0.78rem;
  color: var(--ic-text-dim);
  letter-spacing: 0.04em;
}

/* ── Drop cap ── */
.ic-dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--ic-gold);
  float: left;
  line-height: 0.8;
  margin-right: 0.15em;
  margin-top: 0.1em;
}
