/* Typography System */

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    font-weight: 400;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--text-6xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 600;
}

h3 {
    font-size: var(--text-3xl);
    font-weight: 600;
}

h4 {
    font-size: var(--text-2xl);
    font-weight: 600;
}

h5 {
    font-size: var(--text-xl);
    font-weight: 600;
}

h6 {
    font-size: var(--text-lg);
    font-weight: 600;
}

/* Paragraph */
p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

/* Hero Heading */
.hero-heading {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subheading {
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

/* Section Heading */
.section-heading {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.section-subheading {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* Text Utilities */
.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.text-small {
    font-size: var(--text-sm);
}

.text-large {
    font-size: var(--text-lg);
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* Mobile Typography Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: var(--text-4xl);
    }

    h2 {
        font-size: var(--text-3xl);
    }

    h3 {
        font-size: var(--text-2xl);
    }

    .hero-heading {
        font-size: 42px;
    }

    .hero-subheading {
        font-size: var(--text-base);
    }

    .section-heading {
        font-size: var(--text-3xl);
    }
}