/* ============================================================
   BROTHERHOOD IN CHRIST — Global Styles
   Colors: Navy Blue · White · Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;600;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

:root {
  --navy:        #0D1B3E;
  --navy-mid:    #122352;
  --navy-deep:   #091228;
  --navy-light:  #1A2E6B;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    #8A6B2A;
  --gold-pale:   #F5E9C4;
  --white:       #FFFFFF;
  --off-white:   #F8F5EE;
  --cream:       #EDE0C4;
  --blue-accent: #2A5298;
  --blue-mid:    #1E3F7A;
  --shadow:      rgba(9,18,40,0.85);
  --glow-gold:   rgba(201,168,76,0.25);
  --glow-blue:   rgba(42,82,152,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--navy-deep);
  font-family: 'Crimson Pro', Georgia, serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 3rem;
  background: rgba(9,18,40,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
}
.nav-brand-main {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.1;
}
.nav-brand-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.8rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-donate {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 700;
  border-radius: 2px;
}
.nav-donate:hover { background: var(--gold-light) !important; color: var(--navy-deep) !important; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(9,18,40,0.99);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== PAGE HERO (shared) ===== */
.page-hero {
  padding: 10rem 2rem 6rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 50%, var(--blue-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.page-hero-label::before,
.page-hero-label::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.page-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

/* ===== SHARED SECTION STYLES ===== */
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: normal;
  color: var(--blue-accent);
}
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }
.section-body {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #3a3a4a;
  max-width: 620px;
}
.section-body.light { color: rgba(255,255,255,0.8); }

/* ===== BUTTONS ===== */
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 0.95rem 2.2rem;
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}
.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.95rem 2.2rem;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.95rem 2.2rem;
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ===== DIVIDER ===== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-divider-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-crest {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.footer-brand h2 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.footer-contact-info span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-verse {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  nav { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
