/* ==========================================================
   TYPOGRAPHY.CSS - Text styles, headings, decorative elements
   ========================================================== */

/* ---------------------------------------------------------
   Text color utilities
   --------------------------------------------------------- */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--text-green) !important;
}

.text-blue {
    color: #0d6efd !important;
}

.text-white {
    color: var(--white) !important;
}

.text-grey {
    color: var(--grey-light) !important;
}

/* ---------------------------------------------------------
   Headings and text elements
   --------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
strong, b, .fw-bold, .font-weight-bold,
label, .form-label {
    color: var(--primary-color);
}

p, .lead, .text-muted {
    color: var(--text-green) !important;
}

p {
    font-size: 1.15rem;
}

/* ---------------------------------------------------------
   Lead text (intro paragraphs)
   --------------------------------------------------------- */
.lead {
    font-size: 1.5rem !important;
    font-weight: 400;
    line-height: 1.6;
}

/* ---------------------------------------------------------
   Section titles
   --------------------------------------------------------- */
.section-title {
    font-weight: 700;
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

/* ---------------------------------------------------------
   Decorative underlines
   --------------------------------------------------------- */
.underline {
    position: relative;
    padding-bottom: 30px;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.left-underline {
    position: relative;
    padding-bottom: 15px;
}

.left-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: translateX(0%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}
