/* Typography CSS File - Font styles */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section h1,
.hero-section .subtitle,
.hero-section p {
    color: var(--color-text-white);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.site-footer h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.site-footer a {
    color: var(--color-gray-300);
}

.site-footer a:hover {
    color: var(--color-white);
}

.logo h2 {
    font-weight: 700;
    margin-bottom: 0;
}

.hero-section .logo h2 {
    color: var(--color-white);
}

.quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--color-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.read-more {
    font-weight: 600;
    color: var(--color-primary);
}

.read-more:hover {
    color: var(--color-primary-dark);
}

.icon {
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 8px;
}

.check-icon {
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.25rem;
    margin-right: 16px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-700);
}