@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

body {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background-color: var(--color-background);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.025em;
    /* tracking-tight */
}

h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: var(--font-weight-bold);
}

.text-muted {
    color: var(--color-text-light);
}

.text-primary {
    color: var(--color-primary);
}

/* Material Symbols configuration */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

/* Text Size Utilities */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-2xl {
    font-size: 1.5rem;
}

/* Color Utilities */
.text-inverse {
    color: var(--color-text-inverse);
}

.text-inverse-light {
    color: var(--color-text-inverse-light);
}

/* Line Height Utilities */
.leading-relaxed {
    line-height: 1.625;
}