/* Typography Styles for Illuminating */

/* ==========================================================================
   TYPOGRAPHY VARIABLES AND BASE
   ========================================================================== */

/* Base typography settings */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: normal;
    color: #000000;
}

/* ==========================================================================
   HEADINGS
   ========================================================================== */

/* Page title - Bebas Neue */
.page-title,
.page-title-main {
    width: 100%;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 43px;
    color: #000000;
    text-align: center;
    margin: 0;
}

/* Section titles */
.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.01em;
    color: #000000;
}

/* Sidebar card titles */
.sidebar-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.01em;
    color: #000000;
}

/* ==========================================================================
   FORM LABELS AND TEXT
   ========================================================================== */

/* Form field labels */
.form-label,
.form-field-label {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.01em;
    color: #000000;
}

/* Form help text */
.form-help,
.form-help-text {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #6D6D6D;
    margin-bottom: 10px;
}

/* Large form help text */
.form-help-large {
    min-height: 40px;
}

/* Small form help text */
.form-help-small {
    min-height: 20px;
}

/* ==========================================================================
   BODY TEXT
   ========================================================================== */

/* Regular body text */
.body-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

/* Secondary text */
.text-secondary {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6D6D6D;
}

/* Small text */
.text-small {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6D6D6D;
}

/* Bold text */
.text-bold {
    font-weight: 700;
}

/* ==========================================================================
   BUTTONS TEXT
   ========================================================================== */

/* Primary button text */
.btn-text-primary {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: #000000;
}

/* Secondary button text */
.btn-text-secondary {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: #000000;
}

/* ==========================================================================
   SPECIAL TEXT STYLES
   ========================================================================== */

/* Example fact title */
.example-fact-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.01em;
    color: #000000;
}

/* References header */
.references-header {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.01em;
    color: #000000;
}

/* References list */
.references-list {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6D6D6D;
}

/* ==========================================================================
   RESPONSIVE TYPOGRAPHY
   ========================================================================== */

@media (max-width: 768px) {
    .page-title,
    .page-title-main {
        font-size: 36px !important;
        line-height: 32px !important;
        margin-bottom: 24px !important;
    }
}

@media (max-width: 480px) {
    .page-title,
    .page-title-main {
        font-size: 28px !important;
        line-height: 32px !important;
        margin-bottom: 24px !important;
    }
}

@media (max-width: 360px) {
    .page-title,
    .page-title-main {
        font-size: 24px !important;
        line-height: 28px !important;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Color utilities */
.text-black {
    color: #000000;
}

.text-gray {
    color: #6D6D6D;
}

.text-primary {
    color: #D5FF2E;
}

/* Font weight utilities */
.font-normal {
    font-weight: 400;
}

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

.font-semibold {
    font-weight: 600;
}

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

/* Margin utilities for text */
.text-no-margin {
    margin: 0;
}

.text-margin-bottom {
    margin-bottom: 10px;
}