/* Minimal styles for blank landing pages (e.g. /donation/) */

:root {
  --tpsil-font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --tpsil-text: #1a1a1a;
  --tpsil-text-muted: #444;
  --tpsil-brand-blue: #1D6F8F;
}

body {
  margin: 0;
  background: #fff;
  overflow-x: hidden;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--tpsil-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--tpsil-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.tpsil-blank-main {
  position: relative;
  z-index: 1;
}

.tpsil-landing-header {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 18px 16px 8px;
}

.tpsil-landing-logo {
  text-align: center;
}

.tpsil-landing-logo-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 101;
  cursor: pointer;
}

.tpsil-landing-logo-link:hover {
  opacity: 0.85;
}

.tpsil-landing-logo img {
  max-width: min(280px, 85vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.tpsil-landing-logo-fallback {
  font-family: Bebas Neue, Oswald, Arial Narrow, sans-serif;
  font-size: clamp(28px, 6vw, 48px);
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

/* Donation page typography - professional look */
.tpsil-blank-main {
  font-family: var(--tpsil-font);
}

/* Card titles (Info Box headers) - larger, bolder */
.tpsil-blank-main .aio-icon-title {
  font-family: var(--tpsil-font) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--tpsil-text);
}

/* Card body / description */
.tpsil-blank-main .aio-icon-description {
  font-family: var(--tpsil-font) !important;
  font-size: 1.0625rem !important;
  font-weight: 400;
  line-height: 1.6;
  color: var(--tpsil-text-muted);
}

/* Wire/ACH transfer info - larger, clearer */
.tpsil-wire-info {
  font-family: var(--tpsil-font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--tpsil-text);
}

.tpsil-wire-info .tpsil-wire-heading {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.75em;
  letter-spacing: 0.02em;
}

.tpsil-wire-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4em 2em;
  margin: 0 0 1em;
}

.tpsil-wire-info dt {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.tpsil-wire-info dd {
  font-weight: 400;
  font-size: 1.0625rem;
  margin: 0;
  padding-left: 0;
}

.tpsil-wire-info .tpsil-wire-note {
  font-size: 1rem;
  font-weight: 500;
  margin: 1em 0 0;
  font-style: italic;
  color: var(--tpsil-text-muted);
}

/* Credit card link text (exclude button) */
.tpsil-blank-main .aio-icon-description a:not(.vc_btn3) {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Inline donate button (when placed inside Info Box description) */
.tpsil-donate-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6em 1.25em;
  font-family: var(--tpsil-font);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: #333;
  background: transparent;
  border: 2px solid #333;
  border-radius: 4px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.tpsil-donate-btn:hover {
  background: #333;
  color: #fff;
}

/* DONATE HERE button inside Info Box: no underline, smooth hover */
.tpsil-blank-main .aio-icon-description .vc_btn3-container .vc_btn3 {
  text-decoration: none !important;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tpsil-blank-main .aio-icon-description .vc_btn3-container .vc_btn3:hover {
  background-color: #333 !important;
  color: #fff !important;
  border-color: #333 !important;
}

/* Hero section headings (Ultimate VC dual color) */
.tpsil-blank-main .ult-dual-heading-text,
.tpsil-blank-main .ult-dual-adv-heading-text,
.tpsil-blank-main .ult-highlight-text {
  font-family: var(--tpsil-font) !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
}

/* Subtitle under hero */
.tpsil-blank-main .vc_custom_heading {
  font-family: var(--tpsil-font) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
}

/* Federal ID button */
.tpsil-blank-main .vc_btn3 {
  font-family: var(--tpsil-font) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
}

/* ===================================
   LANDING PAGE FOOTER (same as front page)
   =================================== */
.tpsil-landing-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tpsil-landing-footer {
  background: transparent;
  color: var(--tpsil-text);
  padding: 44px 0 26px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.tpsil-landing-footer .footer-bar {
  max-width: 980px;
  margin: 12px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.tpsil-landing-footer .footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

.tpsil-landing-footer .footer-logo-placeholder {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tpsil-landing-footer .footer-logo-main {
  font-family: var(--tpsil-font);
  font-size: 40px;
  font-weight: 800;
  color: var(--tpsil-brand-blue);
  line-height: 1;
  letter-spacing: -1px;
}

.tpsil-landing-footer .footer-logo-tagline {
  font-size: 9px;
  color: var(--tpsil-brand-blue);
  font-weight: 600;
  letter-spacing: 1.8px;
  font-family: var(--tpsil-font);
  text-transform: uppercase;
}

.tpsil-landing-footer .footer-bar-left { flex: 0 0 auto; }
.tpsil-landing-footer .footer-bar-center { flex: 1 1 auto; text-align: center; }
.tpsil-landing-footer .footer-bar-right { flex: 0 0 auto; }

.tpsil-landing-footer .footer-bar-center,
.tpsil-landing-footer .footer-bar-center a,
.tpsil-landing-footer .footer-bar-center span {
  font-family: var(--tpsil-font);
  font-size: 18px;
  color: var(--tpsil-text);
}

.tpsil-landing-footer .footer-bar-center a {
  text-decoration: none;
  font-weight: 400;
}

.tpsil-landing-footer .footer-bar-center a:hover {
  text-decoration: underline;
}

.tpsil-landing-footer .footer-sep {
  margin: 0 10px;
  color: rgba(0, 0, 0, 0.55);
}

.tpsil-landing-footer .qr-code {
  max-width: 95px;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .tpsil-landing-footer {
    padding: 30px 0 20px;
  }

  .tpsil-landing-footer .footer-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .tpsil-landing-footer .footer-bar-left,
  .tpsil-landing-footer .footer-bar-center,
  .tpsil-landing-footer .footer-bar-right {
    width: 100%;
    text-align: center;
  }

  .tpsil-landing-footer .footer-bar-center {
    line-height: 2;
  }

  .tpsil-landing-footer .footer-bar-center,
  .tpsil-landing-footer .footer-bar-center a,
  .tpsil-landing-footer .footer-bar-center span {
    font-size: 16px;
  }

  .tpsil-landing-footer .footer-logo {
    max-width: 160px;
    margin: 0 auto;
  }

  .tpsil-landing-footer .qr-code {
    max-width: 120px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tpsil-landing-footer {
    padding: 25px 0 18px;
  }

  .tpsil-landing-footer .footer-bar {
    gap: 18px;
  }

  .tpsil-landing-footer .footer-bar-center,
  .tpsil-landing-footer .footer-bar-center a,
  .tpsil-landing-footer .footer-bar-center span {
    font-size: 14px;
  }

  .tpsil-landing-footer .footer-bar-center a {
    display: block;
    margin: 6px 0;
  }

  .tpsil-landing-footer .footer-sep {
    display: none;
  }

  .tpsil-landing-footer .footer-logo {
    max-width: 140px;
  }

  .tpsil-landing-footer .qr-code {
    max-width: 100px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .tpsil-blank-main .aio-icon-title {
    font-size: 1.35rem !important;
  }

  .tpsil-wire-info .tpsil-wire-heading {
    font-size: 1.15rem !important;
  }
}

@media (max-width: 480px) {
  .tpsil-wire-info {
    font-size: 1rem;
  }

  .tpsil-wire-info dl {
    grid-template-columns: 1fr;
    gap: 0.15em 0;
  }

  .tpsil-wire-info dt {
    padding-top: 0.5em;
    font-size: 0.9375rem;
  }

  .tpsil-wire-info dt:first-of-type {
    padding-top: 0;
  }

  .tpsil-wire-info dd {
    padding-bottom: 0.35em;
    font-size: 1rem;
  }
}
