/* ═══════════════════════════════════════════════
   SHELL-ONLY STYLES (nav, panel, loader)
   Everything else is in base.css
═══════════════════════════════════════════════ */

/* ── Page load bar ─────────────────────────────────────── */
#load-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 10000;
  transition: width 0.3s var(--ease), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}

#load-bar.loading { opacity: 1; animation: loadpulse 0.9s ease-in-out infinite; }
#load-bar.done    { width: 100% !important; opacity: 0; transition: width 0.2s, opacity 0.5s 0.2s; }

@keyframes loadpulse {
  0%   { width: 10%; }
  50%  { width: 65%; }
  100% { width: 80%; }
}

/* ── Content area ─────────────────────────────────────── */
#app-content {
  min-height: 100svh;
}

/* Page enter animation */
.page-enter {
  animation: pgIn 0.55s var(--ease-out) both;
}

@keyframes pgIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}




/*******EXTRAS*********/

.module-num{
  opacity:0.1;
}
.module-card,
.join-card,
.glass-card,
.support-card,
.cta-full,
.candle-zone,
.cta-banner
{
  border-radius:0px !important;
}