/* Be Fruitful Ministries — brand-aligned styles */
:root {
  --sage: #2F5D4A;
  --sage-dark: #244839;
  --sage-soft: #3d725c;
  --gold: #C4A35A;
  --gold-dark: #a8873f;
  --cream: #F7F1E8;
  --cream-dark: #ebe3d6;
  --ink: #1a2e24;
  --ink-muted: #4a5c52;
  --white: #ffffff;
  --shadow: 0 8px 28px rgba(47, 93, 74, 0.12);
  --radius: 12px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1100px;
  --narrow: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--sage-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, var(--narrow));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.logo {
  width: 64px;
  height: auto;
  border-radius: 8px;
}

.logo-link {
  display: inline-flex;
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem 1.5rem;
}

.site-nav a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: none;
  padding: 0.4rem 0.2rem;
}

.site-nav a:hover {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--sage);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--sage);
  border-radius: 1px;
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(247, 241, 232, 0.92) 40%, rgba(47, 93, 74, 0.08) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 163, 90, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.hero h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  color: var(--sage-dark);
}

.tagline {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-dark);
}

.hero-lead {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
  max-width: 36em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}

.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-social {
  min-width: 10rem;
  color: var(--white);
}

.btn-facebook {
  background: #1877f2;
}

.btn-facebook:hover {
  background: #0f5dca;
  color: var(--white);
}

.btn-youtube {
  background: #c4302b;
}

.btn-youtube:hover {
  background: #9e2420;
  color: var(--white);
}

.social-icon {
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--sage-dark);
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--ink-muted);
}

.about {
  background: var(--white);
}

.about p {
  color: var(--ink-muted);
}

.minister-card {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.minister-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.minister-name {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.what-we-do {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.card-icon {
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  color: var(--sage-dark);
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
}

.connect {
  background: var(--white);
}

.connect-panel {
  display: grid;
  gap: 2rem;
  padding: 1.75rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}

.connect-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.email-link {
  font-size: 1.15rem;
  font-weight: 600;
  word-break: break-all;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Footer */
.site-footer {
  background: var(--sage-dark);
  color: var(--cream);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo,
.footer-logo img {
  width: 88px;
  border-radius: 8px;
  background: var(--cream);
}

.footer-copy {
  margin: 0;
  font-weight: 600;
}

.site-footer a {
  color: var(--gold);
}

.site-footer a:hover {
  color: var(--cream);
}

.site-footer p {
  margin: 0;
}

/* Responsive */
@media (min-width: 720px) {
  .logo {
    width: 80px;
  }

  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .connect-panel {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 719px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 0.75rem 1rem 1rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .header-inner {
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}


.acnc-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted, #5a6b62);
  line-height: 1.5;
}
