/* Typography Enhancements for Bootstrap 4 */

/* Base font settings */

body {
  font-family: "Libre Baskerville", "Helvetica Neue", Arial, sans-serif, Poppins !important;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
}

/* Headings */

.h1, h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.h2, h2 {
  font-size: 2rem;
  font-weight: 600;
}

.h3, h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

.h4, h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

.h5, h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

.h6, h6 {
  font-size: 1rem;
  font-weight: 500;
}

/* Paragraphs */

p {
  margin-bottom: 1rem;
}

/* Font weight utilities */

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

/* Letter spacing */

.ls-1 {
  letter-spacing: 0.05rem;
}

.ls-2 {
  letter-spacing: 0.1rem;
}

/* Text colors (optional) */

.text-dark-gray {
  color: #343a40;
}

.mk.red {
  color: #BE3A34;
}

.text-muted-gray {
  color: #6c757d;
}

.text-light-gray {
  color: #adb5bd;
}

/* Line heights */

.lh-1 {
  line-height: 1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-15 {
  line-height: 1.5;
}

.lh-2 {
  line-height: 2;
}

/* Blockquotes */

blockquote {
  border-left: 0 solid #dee2e6;
  padding-left: 1rem;
  color: #6c757d;
  font-style: italic;
}

/* Code blocks */

code {
  background: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

