/* ===================================================================
   BASE/TYPOGRAPHY.CSS
   Typography Styles and Text Utilities
   =================================================================== */

/* ===== BASE TYPOGRAPHY ===== */
body {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Paragraph and list text */
p,
li,
pre {
    line-height: 1.6;
}

/* ===== 8. TYPOGRAPHY ===== */

/* ----- 8.1 Text Colors ----- */
.text-muted { color: #999; }
html.dark .text-muted { color: #505461; }
.text-light { color: #FFF; }

/* ----- 8.2 Text Sizes ----- */
.text-7 { font-size: 2.8em; }  /* Used in headings */

/* ----- 8.3 Font Weights ----- */
.font-weight-normal { font-weight: 400; }
.font-weight-extra-bold { font-weight: 800; }


/* ===== 24. TEXT & TYPOGRAPHY ===== */

/* ----- 24.1 Text Styles ----- */
.style15 {
    margin-bottom: 20px;
    line-height: 1.4;
    word-spacing: 0.1em;
    letter-spacing: 0.05em;
}

.style16 {
    margin-bottom: 15px;
    line-height: 1.6;
    word-spacing: 0.1em;
    letter-spacing: 0.03em;
}

.col-lg-12.text-center {
    margin-bottom: 30px;
}

/* ===== 75. TYPOGRAPHY ===== */

/* ----- 75.1 Base Headings ----- */
h1, h2, h3, h4, h5, h6 {
    color: #0088cc;
    font-weight: 200;
    letter-spacing: -0.05em;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* ----- 75.2 Heading Level 1 ----- */
h1 {
    font-size: 2.6em;
    line-height: 44px;
    margin: 0 0 32px 0;
}

/* ----- 75.3 Heading Level 2 ----- */
h2 {
    font-size: 2.2em;
    font-weight: 300;
    line-height: 42px;
    margin: 0 0 32px 0;
}

/* ----- 75.4 Heading Level 3 ----- */
h3 {
    font-size: 1.8em;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 33px;
    text-transform: uppercase;
    color: #0088cc;
}

/* ----- 75.5 Heading Level 4 ----- */
h4 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 27px;
    margin: 0 0 14px 0;
    color: #0088cc;
}

/* ----- 75.6 Heading Level 5 ----- */
h5 {
    font-size: 1em;
    font-weight: 600;
    line-height: 18px;
    margin: 0 0 14px 0;
    text-transform: uppercase;
}

/* ----- 75.7 Heading Level 6 ----- */
h6 {
    color: #333;
    font-size: 1em;
    font-weight: 400;
    line-height: 18px;
    margin: 0 0 14px 0;
}

/* ===== 76. THEMED TYPOGRAPHY ===== */

/* ----- 76.1 Dark Theme Headings ----- */
h1.dark,
h2.dark,
h3.dark,
h4.dark,
h5.dark {
    color: #212529;
}

/* ----- 76.2 Light Theme Headings ----- */
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light {
    color: #FFF;
}

/* ----- 76.3 Text Shadow Headings ----- */
h1.text-shadow,
h2.text-shadow,
h3.text-shadow,
h4.text-shadow,
h5.text-shadow,
h6.text-shadow {
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

/* ===== 94. TYPOGRAPHY UTILITIES ===== */

/* ----- 94.1 Font Weight ----- */
.fw-bolder {
    font-weight: 800;
}

/* ----- 94.2 Line Height ----- */
.lh-1 {
    line-height: 1;
}

.lh-sm {
    line-height: 1.25;
}

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

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

/* ===== 123. TYPOGRAPHY ===== */

/* ----- 123.1 Base Paragraph ----- */
p {
    color: #fff;
    line-height: 26px;
    margin: 0 0 20px;
}

/* ----- 123.2 Featured Text ----- */
p.featured {
    font-size: 1.6em;
    line-height: 1.5em;
}

/* ----- 123.3 Lead Paragraph ----- */
p.lead {
    line-height: 28.8px;
    line-height: 1.8rem;
}

.lead {
    letter-spacing: -.05em;
    font-size: 19.2px;
    font-size: 1.2rem;
}

/* ----- 123.4 Alternative Font Styling ----- */
p .alternative-font {
    display: inline-block;
    margin-top: -15px;
    position: relative;
    top: 3px;
    margin-bottom: -6px;
}


