/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: #1A1270; backdrop-filter: blur(10px);
  padding: 0 5%; display: flex; align-items: center;
  justify-content: space-between; height: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 64px; height: 64px; object-fit: contain; }
.nav-logo-text { color: var(--white); }
.nav-logo-text span { display: block; }
.nav-logo-text .church-name { font-size: 15px; font-weight: 600; letter-spacing: 0.3px; }
.nav-logo-text .church-sub  { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 1.2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none; font-size: 14px;
  font-weight: 500; padding: 8px 13px; border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--white); font-weight: 700;
  padding: 9px 20px; border-radius: var(--radius); margin-left: 6px;
}
.nav-links .nav-cta:hover { background: var(--gold-lt); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── SHARED BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--rccg-purple-act); color: var(--white); }
.btn-primary:hover { background: var(--rccg-purple-md); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,63,212,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-gold { background: var(--gold); color: var(--white); font-weight: 700; }
.btn-gold:hover { background: var(--gold-lt); color: var(--text); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,43,0.4); }
.btn-purple { background: var(--rccg-purple); color: var(--white); }
.btn-purple:hover { background: var(--rccg-purple-md); }
.btn-text { background: transparent; color: var(--rccg-purple-act); padding-left: 0; font-weight: 600; font-size: 14px; }
.btn-text:hover { color: var(--rccg-purple); }

/* ── SHARED SECTION STYLES ── */
section { padding: 96px 5%; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text); font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--gray-600); line-height: 1.7;
  max-width: 700px; margin-bottom: 48px;
}
.section-eyebrow, .section-title, .section-sub { text-align: center; }
.section-sub { margin-left: auto; margin-right: auto; }
.section-centered { text-align: center; }
.section-centered .section-sub { margin-left: auto; margin-right: auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 80px; min-height: 340px;
  background: linear-gradient(to bottom, rgba(26,18,112,0.88) 0%, rgba(26,18,112,0.6) 50%, rgba(26,18,112,0.92) 100%),
    url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding-left: 5%; padding-right: 5%;
}
.page-hero-content { max-width: 680px; }
.page-eyebrow {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 20px; margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white); font-weight: 700; line-height: 1.15; margin-bottom: 14px;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(160deg, var(--rccg-purple-dk) 0%, #100C4E 100%);
  color: var(--white); padding: 64px 5% 32px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; margin: 16px 0 24px; }
.footer-logo-img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-logo-name { font-size: 15px; font-weight: 600; color: white; }
.footer-logo-sub  { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1.2px; text-transform: uppercase; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 64px 5%; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--rccg-purple-dk); padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .nav-links.open a { padding: 12px 24px; border-radius: 0; font-size: 15px; }
  .nav-links.open .nav-cta { margin: 8px 24px 4px; border-radius: var(--radius); text-align: center; }
}
