/* ==========================================================================
   TYPOGRAPHY STYLES - Text, headings, and font treatments only
   ========================================================================== */

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-2);
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.25rem;
    color: var(--gold);
}

h3 {
    font-size: 1.875rem;
    color: var(--text-primary);
}

h4 {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

h5 {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

h6 {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Body Text */
p {
    margin-bottom: var(--space-2);
    color: var(--text-secondary);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.text-purple { color: var(--purple); }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* Special Text Effects */
.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Lists */
.list-styled {
    list-style: disc;
    margin-left: var(--space-3);
}

.list-styled li {
    margin-bottom: var(--space-1);
    color: var(--text-secondary);
}

.list-numbered {
    list-style: decimal;
    margin-left: var(--space-3);
}

.list-numbered li {
    margin-bottom: var(--space-1);
    color: var(--text-secondary);
}

/* Code and Preformatted Text */
code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.125rem 0.25rem;
    border-radius: var(--radius-sm);
    color: var(--gold);
}

pre {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-2);
    border-radius: var(--radius-md);
    overflow-x: auto;
    color: var(--text-secondary);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
} 