/* ============================================================================
   PRELAUNCH — coming-soon master switch for nolaserveus.com.

   While this file has rules, every public page hides its app CTAs (Join /
   Log in / File a report / Open the app) and shows a "launching soon" banner,
   so the site reads as an informational preview with no way into the app yet.

   ▶ TO GO LIVE: delete the two rules below so this file is EMPTY (keep the
     file), then redeploy the marketing site. The <link> stays in every page
     permanently and does nothing when this file is empty. One file = the whole
     on/off switch — no per-page edits at launch.
   ============================================================================ */

/* 1. Hide anything that links into the app (signup / login / deep links). */
a[href*="app.nolaserveus.com"] { display: none !important; }

/* 2. Coming-soon banner. Flows at the very top of every page and pushes content
      down — no fixed-position overlap with each page's own sticky header. */
body::before {
  content: "NOLAServeUS is launching soon in District E — this is a preview of what's coming.";
  display: block;
  background: #1B3A5B;
  color: #EEF2F6;
  font: 600 13.5px/1.5 'Onest', -apple-system, system-ui, sans-serif;
  text-align: center;
  padding: 11px 18px;
  letter-spacing: 0.2px;
  border-bottom: 2px solid #C98A2E;
}
