/* ===================================================
   THE DOOR OF HOPE — Shared Stylesheet
   Aesthetic: Warm sunrise — dusty rose, terracotta, honey gold
   Fonts: Cormorant Garamond (headings) + Nunito (body)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Serif+Display:ital@0;1&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables — Warm Sunrise Palette ── */
:root {
  --cream:    #FDF7F0;
  --cream-2:  #F5EBE0;
  --green:    #7A5C6E;    /* dusty mauve — warm, feminine, trustworthy */
  --green-2:  #5C3F52;   /* deep mauve */
  --green-lt: #A87D95;   /* light mauve */
  --amber:    #C4724A;   /* terracotta — warm, welcoming */
  --amber-lt: #D99470;   /* light terracotta */
  --gold:     #D4A855;   /* warm honey gold */
  --gold-lt:  #E8C880;   /* light honey */
  --text:     #3A2A30;   /* warm dark brown */
  --text-lt:  #6B5260;   /* warm medium brown */
  --white:    #FFFFFF;
  --shadow:   0 4px 24px rgba(92,63,82,0.10);
  --shadow-lg:0 12px 48px rgba(92,63,82,0.18);
  --radius:   16px;
  --radius-sm:8px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--green);
  font-weight: 500;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: 'Nunito', sans-serif; }
p  { color: var(--text-lt); font-size: 1.05rem; }
.lead { font-size: 1.18rem; font-weight: 500; color: var(--text); }
.italic { font-style: italic; }
em { font-style: italic; color: var(--amber); }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 80px 0; }
.section-sm{ padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-amber { color: var(--amber) !important; }
.text-green { color: var(--green) !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,114,74,0.35);
}
.btn-primary:hover {
  background: #A85C38;
  box-shadow: 0 8px 24px rgba(196,114,74,0.45);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(122,92,110,0.3);
}
.btn-green:hover {
  background: var(--green-2);
  box-shadow: 0 8px 24px rgba(92,63,82,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(92,63,82,0.1);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--amber);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green);
  line-height: 1.1;
  font-weight: 600;
}
.nav-logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-lt);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--cream-2);
  color: var(--green);
}
.nav-cta {
  margin-left: 8px;
  padding: 10px 24px !important;
  background: var(--amber) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 12px rgba(196,114,74,0.3);
}
.nav-cta:hover {
  background: #A85C38 !important;
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s;
}
.nav-mobile a:hover { background: var(--cream-2); color: var(--green); }
.nav-mobile .nav-cta-mobile {
  background: var(--amber);
  color: var(--white) !important;
  text-align: center;
  border-radius: 50px;
  margin-top: 8px;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-2) 0%, var(--green) 60%, var(--green-lt) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(212,168,85,0.12);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.82); max-width: 600px; font-size: 1.1rem; }
.page-hero-breadcrumb {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card-icon.amber { background: rgba(196,114,74,0.12); }
.card-icon.green { background: rgba(122,92,110,0.1); }
.card-icon.gold  { background: rgba(212,168,85,0.15); }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(196,114,74,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label.green {
  color: var(--green);
  background: rgba(122,92,110,0.1);
}

/* ── Divider ── */
.divider {
  width: 60px; height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider.center { margin: 16px auto 24px; }
.divider.green  { background: var(--green); }

/* ── Quote Block ── */
.scripture {
  background: var(--green);
  border-radius: var(--radius);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.scripture::before {
  content: '"';
  position: absolute;
  top: -20px; left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  color: rgba(255,255,255,0.07);
  line-height: 1;
}
.scripture p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  position: relative;
}
.scripture cite {
  display: block;
  margin-top: 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Stat Block ── */
.stat-block { text-align: center; padding: 32px 24px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, #A05030 100%);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

/* ── Footer ── */
.footer {
  background: var(--green-2);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--amber); }
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item span:first-child { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); }

/* ── Decorative shapes ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.22;
  pointer-events: none;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-up  { animation: fadeUp  0.7s ease both; }
.animate-in  { animation: fadeIn  0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .scripture { padding: 28px 24px; }
  .scripture p { font-size: 1.15rem; }
  .cta-banner { padding: 40px 24px; }
  .stat-number { font-size: 2.2rem; }
}
