/* =========================================================
   Discover Peace Within — Shared Stylesheet
   Color palette:
     Primary Green  : #2E5E2E
     Sage Green     : #7BAE7F
     Light Green bg : #EAF2EA
     Accent Gold    : #B8955A
     Warm White     : #F9F7F4
     Dark Text      : #2C2C2C
     Mid Text       : #555555
     Border         : #D4E4D4
   ========================================================= */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 1.75;
  color: #2C2C2C;
  background-color: #F9F7F4;
}

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

a { color: #2E5E2E; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: #2E5E2E;
  line-height: 1.3;
}

h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 1.9rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: #555555; }

/* ── Layout Helpers ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background-color: #EAF2EA;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header p {
  max-width: 640px;
  margin: 0.5rem auto 0;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: #B8955A;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #2E5E2E;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-logo span { color: #B8955A; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  display: block;
  color: #E8F5E8;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1a3d1a 0%, #2E5E2E 50%, #3d7a3d 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8955A;
  margin-bottom: 1rem;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #B8955A;
  color: #fff;
  border-color: #B8955A;
}
.btn-primary:hover {
  background: #9e7d4a;
  border-color: #9e7d4a;
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

.btn-green {
  background: #2E5E2E;
  color: #fff;
  border-color: #2E5E2E;
}
.btn-green:hover {
  background: #1d3d1d;
  text-decoration: none;
  color: #fff;
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid #D4E4D4;
  border-radius: 10px;
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(46,94,46,0.1);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card h3 { color: #2E5E2E; }

/* ── Event Cards ── */
.event-card {
  background: #fff;
  border: 1px solid #D4E4D4;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.event-card:hover { box-shadow: 0 6px 20px rgba(46,94,46,0.1); }

.event-date-badge {
  background: #2E5E2E;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.event-date-badge .month {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B8955A;
}
.event-date-badge .day {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.event-date-badge .year {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.event-body { padding: 1.25rem 1.5rem; flex: 1; }
.event-meta {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: #7BAE7F;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.event-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #EAF2EA;
  display: flex;
  gap: 0.75rem;
}

/* ── Blog ── */
.blog-card {
  background: #fff;
  border: 1px solid #D4E4D4;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 20px rgba(46,94,46,0.1); }

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, #EAF2EA, #D4E4D4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body { padding: 1.25rem 1.5rem; }

.blog-tag {
  display: inline-block;
  background: #EAF2EA;
  color: #2E5E2E;
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.blog-meta {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: #999;
  margin-top: 0.75rem;
}

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2E5E2E;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #D4E4D4;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Arial', sans-serif;
  color: #2C2C2C;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7BAE7F;
  box-shadow: 0 0 0 3px rgba(123,174,127,0.2);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.82rem;
  color: #999;
  margin-top: 0.3rem;
}

.form-status {
  display: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.form-status--success { display: block; background: #EAF2EA; color: #2E5E2E; border: 1px solid #7BAE7F; }
.form-status--error   { display: block; background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5; }
.form-status--info    { display: block; background: #FFF8EC; color: #92400E; border: 1px solid #F9D38A; }

.form-group input.field-error,
.form-group textarea.field-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

/* ── Contact Tabs ── */
.contact-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid #D4E4D4;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.65rem 1.2rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  color: #555;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s;
}

.tab-btn.active {
  color: #2E5E2E;
  border-bottom-color: #2E5E2E;
  font-weight: 600;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Team / People ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.team-card { padding: 1.5rem 1rem; }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7BAE7F, #2E5E2E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 0.75rem;
  color: #fff;
}

.team-card h4 { color: #2E5E2E; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.88rem; }

/* ── Quote / Highlight ── */
.quote-block {
  background: #2E5E2E;
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.quote-block blockquote {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  color: #fff;
}

.quote-block cite {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: #B8955A;
  letter-spacing: 0.05em;
}

/* ── Page Banner (inner pages) ── */
.page-banner {
  background: linear-gradient(135deg, #1a3d1a, #2E5E2E);
  color: #fff;
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
}

.page-banner h1 { color: #fff; font-size: 2.2rem; margin-bottom: 0.5rem; }
.page-banner p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: #B8955A; }

/* ── Sidebar Layout ── */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid #D4E4D4;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  border-bottom: 2px solid #EAF2EA;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* ── Footer ── */
.site-footer {
  background: #1a3d1a;
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
}

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

.footer-brand h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-col h4 { color: #B8955A; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gold { color: #B8955A; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.full-width { width: 100%; }

/* ── Responsive ── */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.2rem; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #2E5E2E; padding: 1rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .content-sidebar { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
