/* ============================================================
   TYPOGRAPHY – Kazuma Ali Portfolio
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #eaf4f0 0%, #b8d9d4 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(78, 205, 196, 0.15);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.15;
}
h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    line-height: 1.2;
}
h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}
h4 {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
}

a {
    color: #6ee0d6;
    text-decoration: none;
    transition: color var(--transition), transform var(--transition);
}
a:hover {
    color: #8cf0e6;
    transform: translateY(-1px);
}

p,
li,
span,
div {
    color: var(--text-secondary);
}