/* Modern Typography System - Raleway & Sora */

/* Base typography */
* {
    font-feature-settings: "cv03", "cv04", "cv11";
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.011em;
}

/* Headings with Sora */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75em;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.015em;
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: -0.012em;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.008em;
}

/* Text elements */
p {
    margin-bottom: 1em;
    font-size: 1rem;
    line-height: 1.65;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: none;
}

/* Lists */
ul, ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.25em;
    line-height: 1.6;
}

/* Buttons */
.btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    letter-spacing: -0.005em;
    border: none;
    transition: all 0.2s ease;
}

/* Form elements */
input, textarea, select {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    letter-spacing: -0.008em;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0.5em;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print styles */
@media print {
    body {
        font-family: 'Raleway', serif;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Sora', serif;
    }
}