/* =====================================================
   TYPOGRAPHY SYSTEM
   - Custom IRANSans Fonts
   - Scale
   - Headings
   - Body Text
   ===================================================== */


/* =========================================
   1) Font Faces
   فولدر فونت ها: /blocksy-child/fonts/
   مهم: ترتیب منبع‌ها باید از woff2 → woff باشد.
   ========================================= */
@font-face {
    font-family: "IRANSans";
    src: url("../fonts/IRANSans-Ultra-Light.woff2") format("woff2"),
         url("../fonts/IRANSans-Ultra-Light.woff") format("woff");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IRANSans";
    src: url("../fonts/IRANSans.woff2") format("woff2"),
         url("../fonts/IRANSans.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IRANSans";
    src: url("../fonts/IRANSans-Bold.woff2") format("woff2"),
         url("../fonts/IRANSans-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



/* =========================================
   2) Font Variables (Override Root)
   ========================================= */

:root {
    --font-base: "IRANSans", sans-serif !important;
    --font-heading: "IRANSans", sans-serif !important;

    /* Base line-height */
    --lh-base: 1.75;
    --lh-heading: 1.35;

    /* Scale (clamp responsive) */
    --fs-1: clamp(2.2rem, 1.8rem + 1vw, 3rem);
    --fs-2: clamp(1.8rem, 1.6rem + .8vw, 2.4rem);
    --fs-3: clamp(1.35rem, 1.2rem + .4vw, 1.8rem);
    --fs-4: 1.125rem;
    --fs-5: 1rem;
    --fs-6: .875rem;
}


/* =========================================
   3) Body Text
   ========================================= */

html, body {
    font-family: var(--font-base) !important;
    font-size: var(--fs-5);
    font-weight: 400;
    line-height: var(--lh-base);
    color: var(--text-primary);
}


/* =========================================
   4) Headings
   فقط سبک می‌دهیم — سایزها scale دارن
   ========================================= */

h1, h2, h3, h4  {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    line-height: var(--lh-heading);
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

h5, h6 {
    font-family: var(--font-base) !important;
    font-weight: 400;
    line-height: var(--lh-heading);
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

/* سایز‌دهی با scale دلاری */
h1 { font-size: var(--fs-1); }
h2 { font-size: var(--fs-2); }
h3 { font-size: var(--fs-3); }
h4 { font-size: var(--fs-4); }
h5 { font-size: var(--fs-5); }
h6 { font-size: var(--fs-6); }


/* =========================================
   5) Paragraphs
   ========================================= */

p {
    font-family: var(--font-base) !important;
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}


/* =========================================
   6) Links
   ========================================= */

a {
    font-family: var(--font-base) !important;
    font-weight: 400;
}

a:hover {
    color: var(--brand-blue-hover);
}


/* =========================================
   7) Lists
   ========================================= */

ul, ol {
    padding-inline-start: 1.2rem;
    margin-bottom: var(--space-4);
    line-height: var(--lh-base);
}

li {
    margin-bottom: var(--space-1);
}


/* =========================================
   8) Small Text
   ========================================= */

.small {
    font-size: var(--fs-6);
    color: var(--text-muted);
}
