/* Typography Styles
  -------------------------------------------------------------- */

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-family: var(--primary-font);
}

/* Font chính của website */
body {
    font-size: 14px;
    line-height: 1.6;
}

/* Thu nhỏ các tiêu đề */
h1 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

/* Thu nhỏ font paragraph */
p {
    font-size: 14px;
}

/* Thu nhỏ font trong các box nội dung */
.services-box p,
.about-content p,
.course-content p {
    font-size: 13px;
}

/* Thu nhỏ font tiêu đề trong các section */
.section-title h2 {
    font-size: 32px;
}

.section-title p {
    font-size: 14px;
}

/* Thu nhỏ font cho các card và box */
.course-box h3,
.services-box h3,
.team-box h3 {
    font-size: 16px;
}

/* Thu nhỏ font cho breadcrumb */
.breadcrumb-area .breadcrumb-title h2 {
    font-size: 28px;
}

/* Thu nhỏ font cho sidebar */
.sidebar .widget h3 {
    font-size: 18px;
}

.sidebar .widget p,
.sidebar .widget li {
    font-size: 13px;
}

/* Thu nhỏ font cho footer */
.footer-area p,
.footer-area li,
.footer-area span {
    font-size: 13px;
}

.footer-area h3,
.footer-area h4 {
    font-size: 18px;
}

/* Thu nhỏ font cho blog posts */
.blog-post h2,
.blog-post h3 {
    font-size: 22px;
}

.blog-post p,
.blog-post span {
    font-size: 14px;
}

.blog-deatails-box p,
.blog-deatails-box span {
    font-size: 14px;
}

.blog-deatails-box li {
    font-size: 13px;
}

/* Thu nhỏ font cho meta information */
.blog-meta span,
.course-meta span,
.post-meta span {
    font-size: 12px;
}

/* Thu nhỏ font cho form elements */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    font-size: 13px;
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    body, p {
        font-size: 13px;
    }
}