/*
 Theme Name: Twenty Twenty Child
 Description: Child Theme for Twenty Twenty
 Author: Shubham Sharma
 Template: twentytwenty
 Version: 1.0
*/

/* =========================
   GLOBAL TYPOGRAPHY
========================= */

 :root {
    --font-body: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, "Helvetica Neue",
                 Arial, sans-serif;

    --font-heading: "Times New Roman", Times, serif;

    --text-color: #474747;
    --heading-color: #0F1011;
} 

/* Default Body Font (Sans-serif) */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    background: #ffffff;
}

/* Headings (Times New Roman) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 12px;
}

/* Specific Sizes */

h1 {
    font-size: 50px;
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
}

h2 { font-size: 40px; }

h3, h4, h5, h6 {
    line-height: 1.4;
    border-bottom: 1px solid #000;
    padding-bottom: 18px;
}

h3 { font-size: 22px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    font-size: 16px;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    h1 { font-size: 36px; }
    h2 { font-size: 34px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }
    h5 { font-size: 16px; }
}

#site-content-area .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}