/* Big Little WV — Warm Forest Green Community Theme */
:root {
  --primary: #16A34A;
  --primary-light: #22C55E;
  --primary-dark: #15803D;
  --accent: #EA580C;
  --bg: #F0FDF4;
  --bg-alt: #DCFCE7;
  --text: #14532D;
  --text-light: #4D7C5B;
  --text-white: #FFFFFF;
  --border: #BBF7D0;
  --card-bg: #FFFFFF;
  --footer-bg: #052E16;
  --header-bg: #FFFFFF;
  --shadow: rgba(22, 163, 74, 0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; line-height: 1.7; color: var(--text); background: var(--bg); }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.header { background: var(--header-bg); box-shadow: 0 1px 6px var(--shadow); position: sticky; top: 0; z-index: 100; }
.header__inner { max-width: 1100px; margin: 0 auto; padding: .875rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.header__logo { font-size: 1.4rem; font-weight: 800; color: var(--primary-dark); }
.nav__list { list-style: none; display: flex; gap: 1.75rem; }
.nav__list a { color: var(--text); font-weight: 600; font-size: .9rem; padding: .5rem 0; border-bottom: 2px solid transparent; transition: all .2s; }
.nav__list a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #059669 100%); color: var(--text-white); padding: 4.5rem 2rem; max-width: 1100px; margin: 2rem auto; border-radius: 24px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; bottom: -40%; right: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.hero__content { position: relative; z-index: 1; max-width: 650px; }
.hero h1 { font-size: 3rem; line-height: 1.1; margin-bottom: .75rem; }
.hero__accent { color: #FDE68A; }
.hero__tagline { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.5rem; font-weight: 300; }
.hero p { line-height: 1.8; opacity: 0.92; margin-bottom: 1rem; }
.hero__buttons { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.btn { display: inline-block; background: var(--accent); color: #fff; padding: .8rem 2rem; border-radius: 50px; font-weight: 700; font-size: .95rem; transition: all .2s; border: 2px solid transparent; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(234,88,12,0.3); color: #fff; }
.btn--outline { background: transparent; border: 2px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* Features */
.features { margin: 3rem 0; }
.features__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card { background: var(--card-bg); border-radius: 16px; padding: 2rem; text-align: center; box-shadow: 0 2px 12px var(--shadow); border: 1px solid rgba(22,163,74,0.06); transition: transform .3s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: .75rem; }
.feature-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* CTA Section */
.cta-section { background: var(--bg-alt); border-radius: 20px; padding: 3rem 2rem; text-align: center; margin: 3rem 0; border: 1px solid var(--border); }
.cta-section h2 { font-size: 1.8rem; color: var(--primary-dark); margin-bottom: 1rem; }
.cta-section p { max-width: 600px; margin: 0 auto 1.5rem; color: var(--text-light); }

/* Main */
.main { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem; }

/* Page */
.page { background: var(--card-bg); border-radius: 16px; padding: 2.5rem; box-shadow: 0 2px 12px var(--shadow); }
.page h1 { font-size: 2rem; color: var(--primary-dark); margin-bottom: .5rem; }
.page__lead { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2rem; line-height: 1.7; }
.page h2 { font-size: 1.3rem; color: var(--primary); margin: 2rem 0 1rem; }
.page p { margin-bottom: 1.25rem; }
.page ul { margin: 0 0 1.25rem 2rem; }
.page li { margin-bottom: .5rem; }
.cta-box { background: var(--bg-alt); padding: 1.5rem 2rem; border-radius: 12px; margin-top: 2rem; border-left: 4px solid var(--primary); }
.cta-box p { margin-bottom: 0; }

/* Footer */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.85); padding: 3rem 1.5rem 1rem; margin-top: 3rem; }
.footer__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer__col h3 { font-size: 1.05rem; margin-bottom: 1rem; color: var(--primary-light); }
.footer__col p { opacity: 0.75; line-height: 1.7; font-size: .9rem; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: .5rem; }
.footer__col a { color: rgba(255,255,255,0.75); transition: color .2s; }
.footer__col a:hover { color: var(--primary-light); }
.footer__bottom { max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; opacity: 0.5; font-size: .85rem; }

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav__list { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--header-bg); flex-direction: column; padding: 1rem 1.5rem; box-shadow: 0 4px 12px var(--shadow); }
  .nav__list.active { display: flex; }
  .hero { padding: 2.5rem 1.25rem; margin: 1rem; border-radius: 16px; }
  .hero h1 { font-size: 2rem; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .page { padding: 1.5rem; }
}
