/* Typography Styles */

a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: var(--transition);
}

a:visited {
    color: var(--primary-orange);
}

a:hover, a:active {
    color: var(--primary-red);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 600;
}

h1 {
    font-size: 3em;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    border-radius: 2px;
}

h3 {
    font-size: 1.5em;
    color: var(--primary-yellow);
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2em;
    color: var(--gray-text);
}

h5, h6 {
    font-size: 1em;
    text-align: center;
}
