/* Raleway Font Import */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');

:root {
    /* Font Family */
    --font-primary: 'Raleway', sans-serif;
    
    /* Font Weights */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Typography Scale */
    --h1-size: 36pt;
    --h1-line-height: 48pt;
    
    --h2-size: 32pt;
    --h2-line-height: 42pt;
    
    --h3-size: 22pt;
    --h3-line-height: 30pt;
    
    --h4-size: 22pt;
    --h4-line-height: 30pt;
    
    --b1-size: 18pt;
    --b1-line-height: 26pt;
    
    --b2-size: 16pt;
    --b2-line-height: 28pt;
    
    --caption-size: 14pt;
    --caption-line-height: 18pt;
    
    --input-size: 16pt;
    --input-line-height: 24pt;
}

/* Base Typography */
body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.5;
    color: #333;
}

/* Headers */
h1 {
    font-size: var(--h1-size);
    line-height: var(--h1-line-height);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 1rem 0;
}

h2 {
    font-size: var(--h2-size);
    line-height: var(--h2-line-height);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 1rem 0;
}

h3 {
    font-size: var(--h3-size);
    line-height: var(--h3-line-height);
    font-weight: var(--font-weight-bold);
    margin: 0 0 0.75rem 0;
}

h4 {
    font-size: var(--h4-size);
    line-height: var(--h4-line-height);
    font-weight: var(--font-weight-regular);
    margin: 0 0 0.75rem 0;
}

/* Body Text */
.b1 {
    font-size: var(--b1-size);
    line-height: var(--b1-line-height);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 1rem 0;
}

.b2 {
    font-size: var(--b2-size);
    line-height: var(--b2-line-height);
    font-weight: var(--font-weight-regular);
    margin: 0 0 1rem 0;
}

/* Caption */
.caption {
    font-size: var(--caption-size);
    line-height: var(--caption-line-height);
    font-weight: var(--font-weight-medium);
    margin: 0 0 0.5rem 0;
}

/* Inputs */
input, 
textarea, 
select, 
button {
    font-family: var(--font-primary);
    font-size: var(--input-size);
    line-height: var(--input-line-height);
    font-weight: var(--font-weight-medium);
}

/* Utility Classes */
.font-regular { font-weight: var(--font-weight-regular) !important; }
.font-medium { font-weight: var(--font-weight-medium) !important; }
.font-semibold { font-weight: var(--font-weight-semibold) !important; }
.font-bold { font-weight: var(--font-weight-bold) !important; }
