/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #2d5a27;
  --green-mid:    #4a7c40;
  --green-light:  #7aab6e;
  --harvest-gold: #c8922a;
  --harvest-tan:  #f5efe3;
  --white:        #ffffff;
  --text-dark:    #1e1e1e;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --border:       #ddd6c8;
  --shadow:       0 2px 12px rgba(0,0,0,0.08);
  --radius:       8px;
  --max-width:    1100px;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--green-dark);
}

a { color: var(--green-mid); text-decoration: none; }
a:hover { color: var(--harvest-gold); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--harvest-gold);
  color: var(--white);
  border-color: var(--harvest-gold);
}
.btn-primary:hover {
  background: #b07d22;
  border-color: #b07d22;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.btn-green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

/* ========== HEADER / NAV ========== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .church-name {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--green-dark);
  font-weight: 700;
}

.nav-logo-text .church-sub {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-logo-img {
  height: 48px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.15s, color 0.15s;
}

nav ul li a:hover,
nav ul li a.active {
  background: var(--harvest-tan);
  color: var(--green-dark);
}

nav ul li a.nav-give {
  background: var(--harvest-gold);
  color: var(--white);
  border-radius: var(--radius);
}
nav ul li a.nav-give:hover {
  background: #b07d22;
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--harvest-gold) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://i0.wp.com/harvestfellowshipfiler.com/wp-content/uploads/2026/01/pexels-zozz-544555.jpg') center/cover;
  opacity: 0.12;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 580px;
  margin: 0 auto 32px;
  opacity: 0.92;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== SERVICE TIMES STRIP ========== */
.service-strip {
  background: var(--harvest-tan);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
}

.service-strip .strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-item .icon {
  font-size: 20px;
}

.service-item strong {
  display: block;
  font-size: 15px;
  color: var(--green-dark);
}

.service-item span {
  font-size: 13px;
  color: var(--text-mid);
}

/* ========== SECTION DEFAULTS ========== */
section {
  padding: 72px 0;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: var(--harvest-gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.section-intro {
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 40px;
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--harvest-tan);
}

.card-icon {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--harvest-tan);
  font-size: 2.5rem;
}

.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card-body p { font-size: 14px; color: var(--text-mid); }

/* ========== SPLIT SECTION ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-img img { width: 100%; height: 380px; object-fit: cover; }

/* ========== QUOTE / VERSE ========== */
.verse-block {
  background: var(--green-dark);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.verse-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.verse-block cite {
  font-size: 14px;
  opacity: 0.75;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ========== FOOTER ========== */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .church-name {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}

footer h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
footer ul li a:hover { color: var(--harvest-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 8px;
}

/* ========== PAGE BANNER ========== */
.page-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.page-banner h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-banner p { opacity: 0.85; margin-top: 10px; font-size: 1.05rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; }
  nav ul.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow);
  }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .service-strip .strip-inner { gap: 24px; }
}
