/* Typography Styles */

/* Base Typography */
body {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text);
    font-weight: var(--font-normal);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--color-text);
}

h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
}

h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-5);
}

h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

h4 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

h5 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

h6 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

/* Paragraphs */
p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-dark);
}

/* Text Utilities */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }

.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

.font-primary { font-family: var(--font-primary); }
.font-secondary { font-family: var(--font-secondary); }

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

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-light { color: var(--color-text-light); }
.text-white { color: var(--color-white); }

/* Special Typography Styles */
.hero-title {
    font-size: var(--text-6xl);
    font-weight: var(--font-bold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--color-white);
}

.hero-subtitle {
    font-size: var(--text-xl);
    font-weight: var(--font-light);
    line-height: var(--leading-relaxed);
    color: var(--color-white);
    margin-bottom: var(--space-8);
    font-family: var(--font-secondary);
}

.section-title {
    font-size: var(--text-4xl);
    text-align: center;
    margin-bottom: var(--space-12);
    color: var(--color-text);
}

.indicator-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-primary);
    font-family: var(--font-primary);
}

.indicator-label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1, .hero-title {
        font-size: var(--text-4xl);
    }
    
    h2, .section-title {
        font-size: var(--text-3xl);
    }
    
    h3 {
        font-size: var(--text-2xl);
    }
    
    h4 {
        font-size: var(--text-xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .indicator-number {
        font-size: var(--text-3xl);
    }
}
