/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
    /* Tighter for display text */
    text-transform: uppercase;
    /* Match luxury automotive style */
    margin-bottom: 1rem;
}

/* Hero Title - Molde Bold Equivalent */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    /* Extra Bold for impact */
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Section Titles - Molde Semibold Equivalent */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

/* Card Titles - Molde Medium Equivalent */
.card-title,
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    /* SemiBold */
    letter-spacing: -0.01em;
}

/* Body Text - Molde Regular Equivalent */
.body-text,
p {
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .body-text,
    p {
        font-size: 0.95rem;
    }
}

/* Button Text - Molde Medium Equivalent */
.btn {
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* Tracked out for buttons */
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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