/* ===========================
   TYPOGRAPHY STYLES
   =========================== */

/* Base reset for text */
html {
    font-size: 100%; /* 16px by default */
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;   /* 16px */
    line-height: 1.6;
    color: #ffffff;
}

/* ---------------------------
   Headings
   --------------------------- */

h1, h2, h3, h4, h5, h6,
.h1, .h3, .h4, .h5, .h6{
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5em;
    color: #ffffff;
}

h1,.h1 { font-size: 2rem; }   /* ~32px */
h2,.h2 { font-size: 1.75rem; }/* ~28px */
h3,.h3 { font-size: 1.5rem; } /* ~24px */
h4,.h4 { font-size: 1.25rem; }/* ~20px */
h5,.h5 { font-size: 1.125rem; }/* ~18px */
h6,.h6 { font-size: 1rem; }   /* ~16px */

/* ---------------------------
   Paragraphs & text elements
   --------------------------- */

p {
    margin: 0 0 1em;
}

a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
a:hover, a:focus {
    color: #0056b3;
    text-decoration: underline;
}

strong, b {
    font-weight: bold;
}

em, i {
    font-style: italic;
}

small {
    font-size: 0.875rem; /* 14px */
}

/* ---------------------------
   Lists
   --------------------------- */

ul, ol {
    margin: 0 0 1em 1.5em;
    padding: 0;
}

li {
    margin-bottom: 0.5em;
}

/* ---------------------------
   Blockquotes
   --------------------------- */

blockquote {
    margin: 1.5em 0;
    padding: 0.5em 1em;
    border-left: 4px solid #ccc;
    color: #555;
    font-style: italic;
    background-color: #f9f9f9;
}

/* ---------------------------
   Code
   --------------------------- */

code, pre {
    font-family: "Courier New", Courier, monospace;
    background: #f4f4f4;
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

pre {
    padding: 1em;
    overflow-x: auto;
}

/* ---------------------------
   Responsive Typography
   --------------------------- */

@media (min-width: 600px) {
    h1,.h1 { font-size: 2.5rem; }  /* ~40px */
    h2,.h2 { font-size: 2rem; }
    h3,.h3 { font-size: 1.75rem; }
}

@media (min-width: 992px) {
    body { font-size: 1.125rem; } /* ~18px */
    h1,.h1 { font-size: 3rem; }       /* ~48px */
    h2,.h2 { font-size: 2.25rem; }
    h3,.h3 { font-size: 2rem; }
}