/* Typography Base Styles */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

a {
    transition: all var(--transition-base);
    font-weight: inherit;
}

a:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

