/* Shared chrome for secondary pages (pray, reports, egypt-june-2026, privacy).
   Keep in sync with the inline copy in index.html if brand vars change. */
:root {
  --black:   #05040a;
  --deep:    #0c0b14;
  --dark:    #111020;
  --card:    #16152a;
  --gold:    #c9a84c;
  --goldLt:  #e2c47a;
  --white:   #f5f0e8;
  --muted:   #9490b0;
  --border:  rgba(201,168,76,0.18);
  --ff-head: 'Cinzel', serif;
  --ff-body: 'Cormorant Garamond', serif;
  --ff-ui:   'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1.1rem;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--goldLt); text-decoration: underline; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(5,4,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}
.nav-brand img { width: 36px; height: 36px; border-radius: 50%; }
.nav-back {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s;
  text-decoration: none;
}
.nav-back:hover { color: var(--gold); text-decoration: none; }

/* ── FOOTER ── */
.simple-footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  color: var(--muted);
}
.simple-footer a { color: var(--gold); }
