/* Base Variables and Reset */
:root {
    --bs-primary: #0056b3;
    --bs-primary-hover: #004494;
    --color-dark-gray: #1a1a1a;
    --color-bg-accent: #e6f0ff;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--color-dark-gray);
    line-height: 1.6;
}

/* Typography and Colors */
.text-primary {
    color: #0056b3 !important;
}

.text-dark-gray {
    color: #1a1a1a !important;
}

.bg-primary {
    background-color: #0056b3 !important;
}

.bg-light-accent {
    background-color: #e6f0ff !important;
}

/* Buttons & Interactive States */
.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #004494;
    border-color: #004494;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.btn-primary:active {
    background-color: #003d7e;
    border-color: #003d7e;
    color: #ffffff;
}

.btn-outline-primary {
    color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #0056b3;
    color: #ffffff;
    border-color: #0056b3;
}

.btn-outline-primary:active {
    background-color: #004494;
    border-color: #004494;
}

/* Navigation */
.navbar-brand {
    color: #0056b3 !important;
}

.nav-link {
    color: #1a1a1a !important;
}

.nav-link:hover,
.nav-link:focus {
    color: #0056b3 !important;
}

.nav-link.active {
    color: #0056b3 !important;
    font-weight: bold;
}

/* Cards */
.card {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #0056b3;
}

/* Forms */
.form-control {
    border: 1px solid #ced4da;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Footer */
footer a {
    transition: color 0.2s ease;
}

footer a:hover {
    color: #0056b3 !important;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: #e6f0ff;
    color: #0056b3;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Utilities */
.min-vh-75 {
    min-height: 75vh;
}

.bullet-point {
    color: #0056b3;
    font-size: 1.5em;
    line-height: 1;
}

/* Link specific styles for dark footer */
footer .link-light {
    color: #e6f0ff !important;
}

footer .link-light:hover {
    color: #0056b3 !important;
    text-decoration: underline;
}
.card img,
.bg-light img,
.container img {
  display: block;
  width: 100%;
  height: auto;
}
/* Font safety overrides */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn,
input,
textarea,
select {
  font-family: var(--font-sans);
}
/* WP Generator feature helpers */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  z-index: 9999;
  transition: width 120ms ease-out;
}
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 9998;
}
.scroll-top.is-visible {
  opacity: 0.95;
  transform: translateY(0);
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

