/**
 * Typography Styles
 * Font families, sizes, weights, and text styles
 */

/* Dynamic font sizing based on viewport width */
html {
    font-size: clamp(12px, 2vw, 16px);
}

body {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
    font-family: var(--font-family-primary);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    font-family: var(--font-family-heading);
}

h1 {
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: clamp(0.6rem, 1.5vw, 1.25rem);
}

h3 {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    line-height: 1.4;
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

h4 {
    font-size: clamp(1rem, 3vw, 1.4rem);
    line-height: 1.4;
}

h5,
h6 {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
}

/* Body Text */
p,
li,
td,
th {
    font-size: clamp(0.875rem, 2vw, 1.05rem);
    line-height: 1.6;
}

/* Links */
a {
    color: #60a5fa;
    transition: color var(--transition-base);
    text-decoration: none;
}

a:hover {
    color: #93c5fd;
}

/* Text Utilities */
.text-mukta {
    font-family: var(--font-family-primary);
}

.text-khand {
    font-family: var(--font-family-heading);
}

.text-kalam {
    font-family: var(--font-family-accent);
}
