@import 'index.css?v=13';

/* ── About Page Specific Overrides ── */
:root {
  /* Specific amber accent used in About page for extra warmth */
  --about-accent: #f0c040;
  --about-accent-glow: rgba(240, 192, 64, 0.15);
}

/* ── Layout Overrides ── */
body {
  font-family: var(--font-ui);
}

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(180deg, #0a0704 0%, var(--surface-dark-2) 50%, var(--ink) 100%);
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 12vw, 140px) var(--space-md);
  border-bottom: 2px solid var(--about-accent);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 50% -20%, var(--about-accent-glow), transparent 70%),
    url('/about-hero.jpg') no-repeat center center;
  background-size: auto, cover;
  opacity: 0.4;
  filter: contrast(1.1) brightness(0.8);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 900px; margin: 0 auto; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--about-accent);
  margin-bottom: var(--space-md);
  display: block;
}

.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--body-dim);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  font-style: italic;
}

.gold-line {
  width: 100px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--about-accent), transparent);
  margin: 0 auto;
}

/* ── Content Wrapper ── */
.content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 100px) var(--space-md);
}

/* ── Article Cards ── */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--rounded-xl);
  padding: clamp(32px, 6vw, 48px);
  margin-bottom: var(--space-lg);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--about-accent-glow);
  background: rgba(255, 255, 255, 0.04);
}

.card-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--about-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.card h2 {
  font-family: var(--font-headline);
  font-size: clamp(28px, 5vw, 36px);
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.card h3 {
  font-family: var(--font-accent);
  font-size: 24px;
  color: var(--gold-light);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
  letter-spacing: 1px;
}

.card p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--body-dim);
  margin-bottom: var(--space-sm);
}

.card p:last-child { margin-bottom: 0; }
.card em { color: var(--white); font-weight: 600; font-style: normal; }

/* ── Verse Blocks ── */
.verse-block {
  background: var(--gold-tint-sm);
  border-left: 4px solid var(--about-accent);
  border-radius: 0 var(--rounded-xl) var(--rounded-xl) 0;
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-lg) 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.verse-block p {
  font-family: var(--font-headline);
  font-size: clamp(17px, 2.5vw, 21px);
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.verse-ref {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--about-accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Pillars Grid ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin: 60px 0;
}

.pillar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--rounded-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar:hover {
  background: var(--gold-tint-sm);
  border-color: var(--about-accent);
  transform: translateY(-5px);
}

.pillar-icon {
  font-size: 40px;
  margin-bottom: var(--space-sm);
  display: block;
}

.pillar h3 {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: var(--space-xs);
  letter-spacing: 1px;
}

.pillar p {
  font-size: 15px;
  color: var(--body-dim);
  line-height: 1.6;
}

/* ── Founder Card ── */
.founder-card {
  background: linear-gradient(135deg, var(--surface-dark-2), var(--surface-dark));
  border: 1px solid rgba(201, 151, 42, 0.2);
  border-radius: var(--rounded-xl);
  padding: clamp(32px, 8vw, 56px);
  margin: 60px 0;
  position: relative;
}

.founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 600px) {
  .founder-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

.founder-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 3px solid var(--about-accent);
  padding: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.founder-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
}

.founder-text .name {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}

.founder-text .title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--about-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
  display: block;
}

.founder-text p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--body-dim);
  margin-bottom: var(--space-sm);
}

/* ── Contact Info ── */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--body-dim);
}

.contact-item a { color: var(--about-accent); text-decoration: none; font-weight: 600; }
.contact-item a:hover { color: var(--gold-light); text-decoration: underline; }
.contact-icon { font-size: 20px; }

/* ── CTA Row ── */
.cta-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-tint-sm);
  color: var(--about-accent);
  border: 1px solid rgba(201, 151, 42, 0.3);
  padding: 15px 36px;
  border-radius: var(--rounded-full);
  font-family: var(--font-accent);
  font-size: 20px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover { background: var(--gold-tint-md); border-color: var(--about-accent); transform: translateY(-2px); }

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: var(--space-2xl) 0;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.divider span { color: var(--about-accent); font-size: 20px; opacity: 0.5; }

/* ── Navigation Overrides (if needed) ── */
.nav-strip .nav-link {
  font-family: var(--font-accent);
  font-size: 15px;
}

/* ── Nav Button Pulses ── */
@keyframes pulse-nav { 0%,100%{opacity:1} 50%{opacity:0.8} }
@keyframes donate-pulse-nav {
  0%,100% { box-shadow: 0 0 8px rgba(220,60,60,0.3); }
  50%      { box-shadow: 0 0 16px rgba(220,60,60,0.6); }
}
