/* Prayer Warriors Network — shared stylesheet
   Family DNA shared with bprov.ai, distinct warm/candlelight accent */

:root {
  --pw-navy: #1c2a3a;       /* shared BProvidence-family dark tone */
  --pw-cream: #faf6ee;      /* soft background */
  --pw-gold: #c9962c;       /* Prayer Network's own accent */
  --pw-gold-deep: #9a7220;
  --pw-text: #2b2b2b;
  --pw-muted: #6b6b6b;
  --pw-border: #e6ddc9;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", serif;
  background: var(--pw-cream);
  color: var(--pw-text);
  line-height: 1.6;
}

a { color: var(--pw-gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Family strip: thin bar linking back to bprov.ai --- */
.family-strip {
  background: var(--pw-navy);
  color: #cbd5e0;
  font-size: 0.78rem;
  text-align: center;
  padding: 6px 12px;
  letter-spacing: 0.02em;
}
.family-strip a {
  color: #fff;
  font-weight: 600;
}

/* --- Header --- */
header.pw-header {
  background: var(--pw-cream);
  border-bottom: 1px solid var(--pw-border);
  padding: 22px 24px 18px;
  text-align: center;
}
header.pw-header .brand {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--pw-navy);
  letter-spacing: 0.01em;
}
header.pw-header .brand span {
  color: var(--pw-gold-deep);
}
header.pw-header .tagline {
  font-size: 0.95rem;
  color: var(--pw-muted);
  font-style: italic;
  margin-top: 4px;
}

nav.pw-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
nav.pw-nav a {
  color: var(--pw-navy);
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
}
nav.pw-nav a:hover,
nav.pw-nav a.active {
  border-bottom: 2px solid var(--pw-gold);
  text-decoration: none;
}

/* --- Main content --- */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.hero {
  text-align: center;
  margin-bottom: 44px;
}
.hero h1 {
  font-size: 2.1rem;
  color: var(--pw-navy);
  margin-bottom: 12px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--pw-muted);
  max-width: 600px;
  margin: 0 auto;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.btn {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 4px;
  display: inline-block;
}
.btn-primary {
  background: var(--pw-gold);
  color: #fff;
}
.btn-primary:hover { background: var(--pw-gold-deep); text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--pw-navy);
  border: 1px solid var(--pw-navy);
}
.btn-secondary:hover { background: var(--pw-navy); color: #fff; text-decoration: none; }

.section {
  margin: 48px 0;
}
.section h2 {
  color: var(--pw-navy);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--pw-border);
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.intention-card {
  background: #fff;
  border: 1px solid var(--pw-border);
  border-left: 4px solid var(--pw-gold);
  padding: 20px 24px;
  border-radius: 4px;
}
.intention-card .label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pw-gold-deep);
  margin-bottom: 6px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--pw-border);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}
.card .icon { font-size: 1.8rem; margin-bottom: 8px; }
.card h3 { margin: 6px 0; color: var(--pw-navy); font-size: 1.05rem; }
.card p { font-size: 0.9rem; color: var(--pw-muted); margin: 0; }

/* --- Footer --- */
footer.pw-footer {
  background: var(--pw-navy);
  color: #cbd5e0;
  text-align: center;
  padding: 32px 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
}
footer.pw-footer .fam-links {
  margin-bottom: 12px;
}
footer.pw-footer .fam-links a {
  color: #fff;
  margin: 0 10px;
}
footer.pw-footer .fine-print {
  color: #8291a3;
  font-size: 0.78rem;
  margin-top: 10px;
}
