/* ============================================================
   NEOLOCAL™ — BASE
   Shared tokens, utilities, eyebrow, buttons
   Load order: 1 of 4
   ============================================================ */

/* Fonts loaded via functions.php wp_enqueue_style */

.nl-inner { max-width: 1280px; margin: 0 auto; }

.nl-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #ed8220; margin-bottom: 16px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center; gap: 10px;
}
.nl-eyebrow-line { display: block; width: 24px; height: 1px; background: #ed8220; flex-shrink: 0; }

/* ── SHARED BUTTON SYSTEM ── */
/* All orange + ghost buttons sitewide */
.nl-btn-primary,
.nl-fb-cta,
.nl-proof-cta-bridge-btn,
.nl-pow-compare-cta,
.nl-d3-bar-btn,
.nl-f25-btn-primary,
.nl-f25-bar-btn,
.nl-faq-cta,
.nl-close-btn-primary,
.nlfp-btn-primary,
.nla-btn-primary,
.nlc-btn-primary,
.nlpar-btn-primary,
.nlp-btn-primary {
  display: inline-block;
  background: #ed8220;
  color: #ffffff !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 17px 36px;
  border-radius: 3px;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.nl-btn-primary:hover,
.nl-fb-cta:hover,
.nl-proof-cta-bridge-btn:hover,
.nl-pow-compare-cta:hover,
.nl-d3-bar-btn:hover,
.nl-f25-btn-primary:hover,
.nl-f25-bar-btn:hover,
.nl-faq-cta:hover,
.nl-close-btn-primary:hover,
.nlfp-btn-primary:hover,
.nla-btn-primary:hover,
.nlc-btn-primary:hover,
.nlpar-btn-primary:hover,
.nlp-btn-primary:hover {
  background: #f5a54a !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.nl-btn-ghost,
.nl-f25-btn-ghost,
.nl-close-btn-ghost,
.nlfp-btn-ghost,
.nla-btn-ghost,
.nlc-btn-ghost,
.nlpar-btn-ghost,
.nlp-btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.82) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 3px;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.30);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nl-btn-ghost:hover,
.nl-f25-btn-ghost:hover,
.nl-close-btn-ghost:hover,
.nlfp-btn-ghost:hover,
.nla-btn-ghost:hover,
.nlc-btn-ghost:hover,
.nlpar-btn-ghost:hover,
.nlp-btn-ghost:hover {
  border-color: rgba(255,255,255,0.55) !important;
  color: #ffffff !important;
  background: rgba(255,255,255,0.06) !important;
  text-decoration: none !important;
}

/* Dark section shared texture — used in hero, S4, S6, S8, footer */
.nl-dark-texture {
  position: relative; overflow: hidden;
}
.nl-dark-texture::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* Themify raw module reset */
.themify_builder .module_raw_output,
.themify_builder .module_raw_output > *,
.themify_builder .module-content .module_raw_output {
  padding: 0; margin: 0;
  max-width: 100%; width: 100%;
}

/* Screen reader */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0; white-space: nowrap;
}

/* Shared animations */
@keyframes nl-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes nl-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.2); }
}
@keyframes nl-live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
