/* NGF shared utility classes — used to eliminate inline style="" attributes
   so we can drop 'unsafe-inline' from CSP style-src.
   Keep this file small and focused. */

/* --- Brand font family overrides --- */
.font-oswald { font-family: 'Oswald', sans-serif; }
.font-rajdhani { font-family: 'Rajdhani', sans-serif; }

/* --- Site footer (about/legal variant — slightly brighter) --- */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* Darker/smaller footer used on app, blog, blog-post */
.site-footer-dim {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
  line-height: 1.6;
}

/* --- Logout form + button (landing-mobile, landing-v2) --- */
.logout-form-inline { display: inline; }
.logout-btn-inline {
  background: none;
  border: none;
  color: rgba(224, 102, 102, 0.8);
  cursor: pointer;
  font: inherit;
  padding: 0;
}

/* --- Fullscreen pointer-events:none overlays (app.ejs confetti + effects) --- */
.overlay-fixed {
  position: fixed;
  inset: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.overlay-fixed-z1 { z-index: 1; }
.overlay-fixed-z2 { z-index: 2; overflow: hidden; }
.overlay-fixed-pixelated {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* --- Deal card float animation variants (app.ejs) --- */
.card-float-1 { --float-dur: 3.2s; --float-del: 0s; }
.card-float-2 { --float-dur: 2.8s; --float-del: 0.4s; }
.card-float-3 { --float-dur: 3.5s; --float-del: 0.8s; }

/* --- Admin panel fixed heights (behavior.ejs, dashboard.ejs) --- */
.h-admin-300 { height: 300px; }
.h-admin-250 { height: 250px; }
.h-admin-450 { height: 450px; }
.max-h-admin-250 { max-height: 250px; }
.max-h-admin-400 { max-height: 400px; }

/* --- Table cell max-widths built in JS strings (behavior.ejs) --- */
.cell-w-180 { max-width: 180px; }
.cell-w-200 { max-width: 200px; }
.cell-w-250 { max-width: 250px; }

/* --- Force-hide utility (replaces inline "display:none !important") --- */
.ngf-hidden { display: none !important; }
