/* ============================================
   LIVING OAK VENTURES — styles.css
   Palette: Espresso · Champagne Gold · Cream
   ============================================ */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --espresso:     #1C0E07;
  --espresso-mid: #2C1A0E;
  --espresso-rim: #3D2512;
  --gold:         #C9A96E;
  --gold-light:   #E0C98A;
  --gold-pale:    #EDD9A3;
  --cream:        #FAF4E8;
  --warm-white:   #FDF9F2;
  --muted:        #8A7055;
  --muted-light:  #B09070;
  --open-green:   #2D6A30;
  --open-green-bg:#1A3D1C;
  --open-green-text: #7DC47F;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--espresso);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Typography ── */
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
}
.display-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--espresso);
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 12px 28px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(232,213,176,0.35);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--cream); color: var(--warm-white); }

/* ── NAV ── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 14, 7, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--espresso-mid);
  border: 1px solid rgba(201,169,110,0.3);
  flex-shrink: 0;
}
.nav-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.nav-wordmark span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
  font-weight: 500;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .nav-donate {
  background: var(--gold);
  color: var(--espresso);
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.nav-links .nav-donate:hover { background: var(--gold-light); color: var(--espresso); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  background: var(--espresso);
  padding: 6rem 2.5rem 5rem;
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-medallion {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.06;
  pointer-events: none;
}
.hero-bg-medallion img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-pillars {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-pill {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 5px 13px;
  border-radius: 2px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.08;
  margin-bottom: 0.5rem;
}
.hero-headline em {
  color: var(--gold);
  font-style: italic;
}
.hero-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(201,169,110,0.75);
  line-height: 1.65;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(201,169,110,0.3);
  margin: 1.5rem 0 2.25rem;
  max-width: 440px;
}
.hero-verse cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.5);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── JOHN 14:6 BANNER ── */
#verse-banner {
  background: var(--espresso-mid);
  border-top: 1px solid rgba(201,169,110,0.18);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  padding: 1.4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.verse-cross {
  color: rgba(201,169,110,0.4);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}
.verse-banner-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(201,169,110,0.85);
  line-height: 1.6;
}
.verse-banner-text cite {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.45);
  margin-left: 10px;
}

/* ── MINISTRIES ── */
#ministries {
  background: var(--espresso);
  padding: 5rem 2.5rem;
}
.section-header {
  margin-bottom: 3rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--warm-white);
  margin-top: 0.5rem;
  line-height: 1.15;
}
.section-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,169,110,0.12);
  border: 1.5px solid rgba(201,169,110,0.12);
}
.ministry-card {
  background: var(--espresso);
  padding: 2.75rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.ministry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.ministry-card:hover { background: #241208; }
.ministry-card:hover::before { height: 100%; }

.ministry-icon-wrap {
  width: 46px; height: 46px;
  border: 1px solid rgba(201,169,110,0.28);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 20px;
}
.ministry-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}
.ministry-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.ministry-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.ministry-link:hover { gap: 10px; color: var(--gold-light); }
.ministry-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── EVENTS ── */
#events {
  background: var(--espresso-mid);
  padding: 5rem 2.5rem;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-row {
  background: var(--espresso);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.event-row:hover {
  border-left-color: var(--gold);
  background: #211006;
}
.event-date { text-align: center; }
.event-month {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1;
}
.event-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 5px;
}
.event-meta {
  font-size: 12px;
  color: var(--muted);
}
.event-meta span { margin-right: 14px; }

.badge {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid;
  white-space: nowrap;
  font-weight: 600;
}
.badge-open {
  background: var(--open-green-bg);
  color: var(--open-green-text);
  border-color: rgba(45,106,48,0.5);
}
.badge-soon {
  background: rgba(201,169,110,0.08);
  color: var(--gold);
  border-color: rgba(201,169,110,0.25);
}

/* ── DONATE ── */
#donate {
  background: var(--espresso);
  padding: 5rem 2.5rem;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.donate-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0.75rem 0 2rem;
  max-width: 420px;
}
.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.amount-btn {
  background: transparent;
  color: var(--muted-light);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.amount-btn:hover,
.amount-btn.selected {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
  font-weight: 700;
}
.donate-custom-row {
  display: flex;
  gap: 10px;
}
.donate-input {
  flex: 1;
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--cream);
  padding: 11px 14px;
  border-radius: 3px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.donate-input::placeholder { color: rgba(201,169,110,0.3); }
.donate-input:focus { outline: none; border-color: var(--gold); }

.impact-panel {
  background: var(--espresso-mid);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 4px;
  padding: 2rem;
}
.impact-panel-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.impact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.impact-item:last-child { margin-bottom: 0; }
.impact-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.impact-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.impact-text strong { color: var(--cream); }

/* ── FOOTER ── */
#footer {
  background: #110901;
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 3.5rem 2.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.footer-logo-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.25);
}
.footer-logo-circle img { width: 100%; height: 100%; object-fit: cover; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(138,112,85,0.7);
  line-height: 1.65;
  max-width: 210px;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(138,112,85,0.6);
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 13px;
  color: rgba(138,112,85,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--muted-light); }

.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy { font-size: 12px; color: rgba(138,112,85,0.4); }
.footer-faith {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(201,169,110,0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ministries-grid { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  #nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--espresso-mid);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(201,169,110,0.15);
    gap: 1.25rem;
    z-index: 99;
  }
  .nav-hamburger { display: flex; }

  #hero { padding: 4rem 1.25rem 3.5rem; min-height: unset; }
  .hero-bg-medallion { display: none; }
  .hero-headline { font-size: 36px; }

  #verse-banner { padding: 1.2rem 1.25rem; }
  .verse-cross { display: none; }

  #ministries,
  #events,
  #donate,
  #footer { padding-left: 1.25rem; padding-right: 1.25rem; }

  .event-row {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }
  .event-row .badge { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
