/* Shared additions loaded on every page (after the page stylesheet). */

/* ── BACK TO TOP ── */
.btt {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #39C0C5 0%, #43B3E6 50%, #4579BC 100%);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(57,192,197,0.35);
  z-index: 200;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s;
  pointer-events: none;
}
.btt.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.btt:hover {
  box-shadow: 0 8px 28px rgba(57,192,197,0.5);
  transform: translateY(-2px);
}
.btt svg {
  width: 18px; height: 18px;
  color: white; flex-shrink: 0;
}
@media (max-width: 600px) {
  .btt { bottom: 1.25rem; right: 1.25rem; width: 40px; height: 40px; }
  .btt svg { width: 16px; height: 16px; }
}

/* WordPress admin bar offset for the fixed nav */
body.admin-bar nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar nav { top: 46px; }
}
/* reCAPTCHA v3 branding is presented inline beneath every protected form. */
.grecaptcha-badge { display: none !important; visibility: hidden !important; }
.recaptcha-disclosure { display: none !important; }
.footer-site-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.25rem;
}
.footer-site-links a {
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}
.footer-site-links a:hover,
.footer-site-links a:focus-visible {
  color: #39C0C5;
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer .footer-grid { padding-bottom: 2rem; }
.footer-recaptcha-note {
  margin: .45rem 0 0;
  padding: 0;
  color: rgba(255,255,255,.58);
  font-size: .68rem;
  line-height: 1.4;
}
.footer-recaptcha-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal-copy {
  display: flex;
  flex-direction: column;
  max-width: 620px;
}
footer .footer-bottom { padding-top: 1rem; }
.teamsters-search-status {
  min-height: 1.35em;
  margin: .5rem 0 1rem;
  color: var(--muted, #5A6F8A);
  font-size: .84rem;
}
#myInput {
  display: block;
  width: min(100%, 560px);
  min-height: 52px;
  box-sizing: border-box;
  padding: .85rem 1rem;
  border: 1px solid var(--border, #D9E3EE);
  border-radius: 10px;
  background: #F8FBFE;
  color: var(--navy, #071A33);
  font: inherit;
  font-size: 1rem;
  box-shadow: none;
}
#myInput:focus {
  border-color: var(--brand-cyan, #39C0C5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(57,192,197,.13);
  outline: none;
}
#myUL li[hidden] { display: none !important; }

/* Cursor-following spotlight shared by interior dark hero banners. */
.page-hero,
.generic-hero {
  --mouse-x: 72%;
  --mouse-y: 34%;
  --mouse-glow: 0;
  position: relative;
  overflow: hidden;
}
.pointer-glow-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
    rgba(93, 214, 218, .28) 0%,
    rgba(67, 179, 230, .15) 18%,
    transparent 44%);
  opacity: var(--mouse-glow);
  transition: opacity .35s ease;
}
.generic-hero-inner { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
  .pointer-glow-layer { display: none; }
}
