/* =========================================
   Remote Computer Repair - Typography / Fonts
   ========================================= */

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ---- Base type scale ---- */
body { font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif; }

h1, h2, h3, h4, h5, h6,
.font-heading { font-family: 'Poppins', sans-serif; }

code, pre, .font-mono {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.91em;
}

/* ---- Heading utilities ---- */
.display-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- Weight helpers ---- */
.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-800 { font-weight: 800; }

/* ---- Size helpers ---- */
.text-xs  { font-size: 0.78rem;  }
.text-sm  { font-size: 0.88rem;  }
.text-base{ font-size: 1rem;     }
.text-md  { font-size: 1.08rem;  }
.text-lg  { font-size: 1.18rem;  }
.text-xl  { font-size: 1.35rem;  }
.text-2xl { font-size: 1.6rem;   }
.text-3xl { font-size: 2rem;     }

/* ---- Color helpers ---- */
.text-muted-rcr  { color: #6c757d; }
.text-light-rcr  { color: rgba(255,255,255,0.7); }
.text-white-rcr  { color: #ffffff; }

/* ---- Article typography ---- */
.article-lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: #495057;
  font-weight: 400;
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

/* ---- Link styles in body copy ---- */
.article-content a {
  color: var(--accent-hover);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--primary);
}

/* ---- Caption under images ---- */
figcaption {
  font-size: 0.82rem;
  color: #6c757d;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}
