/* 
  global-typography.css
  =========================================
  Standardizes typography across all Peace University pages.
*/

/* Force Times New Roman on everything */
*, *::before, *::after {
    font-family: 'Times New Roman', Times, serif !important;
}

/* Responsive, consistent Heading Sizing */
h1 {
    font-size: 3.5rem !important; /* ~56px */
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

h2 {
    font-size: 2.5rem !important; /* ~40px */
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
}

h3 {
    font-size: 1.75rem !important; /* ~28px */
    line-height: 1.25 !important;
    font-weight: 700 !important;
}

h4, .heading-title {
    font-size: 1.35rem !important; /* ~21px */
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2.0rem !important; }
    h3 { font-size: 1.5rem !important; }
    h4, .heading-title { font-size: 1.2rem !important; }
}

/* Global Body Text styling */
body, p, .body-text {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

/* Inputs, lists, tables, buttons default sizes (without overriding specific smaller font utility classes where possible) */
li, td, th, label, input, textarea, select, button {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Clean forms spacing and styling tweaks */
input::placeholder, textarea::placeholder {
    font-family: 'Times New Roman', Times, serif !important;
    opacity: 0.8 !important;
}

/* Footer specific overrides for elegant sizing */
footer, footer p, footer li, footer a, footer span, footer label, footer div {
    font-size: 0.875rem !important; /* ~14px */
    line-height: 1.5 !important;
}

footer h1, footer h2, footer h3, footer h4, .footer-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.5rem !important;
    color: #fff !important;
}

