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

/* Áp dụng cho toàn site */
* {
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.2px;
    font-size: 14px;
    font-weight: 500; /* từ 400 -> 500 cho đậm hơn chút */
    line-height: 1.6;
}

/* Heading */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important; /* từ 600 -> 700, đậm hơn */
    letter-spacing: 0.3px;
}

/* Tuỳ chỉnh size */
.text-sm {
    font-size: 12px !important;
    font-weight: 500; /* đậm hơn một tí */
}

.text-base {
    font-size: 16px !important;
    font-weight: 500;
}

.text-lg {
    font-size: 18px !important;
    font-weight: 600;
}

.text-xl {
    font-size: 20px !important;
    font-weight: 700;
}

.text-2xl {
    font-size: 24px !important;
    font-weight: 700; /* giữ 700 thôi, không cần 800 */
}