/* ═══════════════════════════════════════════════
   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); }
}

/* ── Menu trigger — refined ───────────────────────────── */
/* Replaced with a pill-shaped editorial button */
.menu-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 0 10px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.menu-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  border-radius: 100px;
  z-index: 0;
}
.menu-trigger:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.menu-trigger:hover::before { transform: scaleX(1); }
.menu-trigger:hover .mt-lines span { background: var(--bg); }
.menu-trigger:hover .mt-label { color: var(--bg); }

/* Lines cluster */
.mt-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.mt-lines span {
  display: block;
  height: 1.5px;
  background: var(--text2);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55), background 0.25s;
}
.mt-lines span:nth-child(1) { width: 14px; }
.mt-lines span:nth-child(2) { width: 9px; }
.mt-lines span:nth-child(3) { width: 14px; }

/* Open state */
.menu-trigger.open {
  background: var(--gold);
  border-color: var(--gold);
}
.menu-trigger.open::before { transform: scaleX(1); }
.menu-trigger.open .mt-lines span { background: var(--bg); }
.menu-trigger.open .mt-label { color: var(--bg); }
.menu-trigger.open .mt-lines span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
  width: 14px;
}
.menu-trigger.open .mt-lines span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.menu-trigger.open .mt-lines span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
  width: 14px;
}

/* MENU text label */
.mt-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.25s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .mt-label { display: none; }
  .menu-trigger { padding: 0 10px; width: 36px; justify-content: center; }
}


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

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