/* Typography Styles */

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--navy);
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
}

p {
    margin-bottom: 1rem;
}

strong {
    color: var(--navy);
    font-weight: 600;
}

/* Subtitle and tagline */
.subtitle {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.tagline {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    opacity: 1;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Labels */
.framework-label,
.tech-detail-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 500;
    display: block;
}

/* Module numbers */
.module-number,
.tech-card-number {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--muted-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Lists */
ul, ol {
    margin: 0;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Monospace text */
.mono {
    font-family: var(--font-mono);
}

/* Italic text */
.italic {
    font-style: italic;
}

/* Links */
a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--navy);
}
