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

:root {
  --green:  #2d6a2d;
  --gold:   #c8922a;
  --light:  #f9f5ee;
  --text:   #222;
  --muted:  #555;
  --white:  #fff;
  --radius: 8px;
}

body { font-family: Georgia, 'Times New Roman', serif; color: var(--text); background: var(--white); }

/* NAV */
nav {
  background: var(--green);
  padding: 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
nav .brand { color: var(--white); font-size: 1.1rem; font-weight: bold; text-decoration: none; }
nav ul { list-style: none; display: flex; gap: 1.2rem; flex-wrap: wrap; }
nav ul a { color: #d4ebc4; text-decoration: none; font-size: 0.9rem; font-family: Arial, sans-serif; }
nav ul a:hover { color: var(--white); }


/* ACTION BUTTONS */
.actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem;
  padding: 2.5rem 1rem;
  background: var(--light);
}
.action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  background: var(--white); border: 2px solid var(--green);
  border-radius: var(--radius); padding: 1.4rem 1rem;
  text-decoration: none; color: var(--green);
  font-family: Arial, sans-serif; font-size: 0.95rem; font-weight: bold;
  transition: background 0.2s, color 0.2s;
  width: 140px; text-align: center;
}
.action-btn img { width: 60px; height: 60px; object-fit: contain; }
.action-btn:hover { background: var(--green); color: var(--white); }

/* ABOUT */
.about { max-width: 860px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.about h2 { color: var(--green); font-size: 1.6rem; margin-bottom: 1rem; }
.about p { line-height: 1.75; margin-bottom: 1rem; color: var(--muted); font-size: 1.05rem; }
.stat-bar {
  background: var(--green); color: var(--white);
  text-align: center; padding: 1.4rem;
  font-size: 1.3rem; letter-spacing: 0.03em;
  margin: 0;
}

/* SUPPORT */
.support { background: var(--light); padding: 2.5rem 1.5rem; text-align: center; }
.support h2 { color: var(--green); font-size: 1.5rem; margin-bottom: 0.8rem; }
.support p { max-width: 680px; margin: 0 auto 1.5rem; color: var(--muted); line-height: 1.7; }
.support .need { font-size: 1.1rem; color: var(--gold); font-weight: bold; margin-bottom: 1.5rem; }
.paypal-wrap { margin: 1rem 0; }
.donate-levels { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1rem; }
.level-badge {
  background: var(--white); border: 2px solid var(--gold);
  border-radius: 20px; padding: 0.3rem 0.9rem;
  font-family: Arial, sans-serif; font-size: 0.85rem; color: var(--gold);
}

/* BOARD */
.board { max-width: 860px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.board h2 { color: var(--green); font-size: 1.5rem; margin-bottom: 1.2rem; text-align: center; }
.board-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 1.5rem; }
.board-member { text-align: center; min-width: 160px; --ada-readable: 1; }
.board-member .name  { font-weight: bold; font-size: 1rem; }
.board-member .title { font-size: 0.85rem; color: var(--muted); font-family: Arial, sans-serif; }

/* SPONSORS */
.sponsors { background: var(--light); padding: 2.5rem 1.5rem; }
.sponsors h2 { color: var(--green); font-size: 1.5rem; text-align: center; margin-bottom: 2rem; }
.tier-section { max-width: 900px; margin: 0 auto 2rem; }
.tier-header {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.15rem; font-weight: bold; color: var(--gold);
  border-bottom: 2px solid var(--gold); padding-bottom: 0.4rem; margin-bottom: 1rem;
}
.tier-icon { font-size: 1.4rem; }
.tier-amount { font-size: 0.85rem; color: var(--muted); font-weight: normal; margin-left: 0.4rem; font-family: Arial, sans-serif; }
.sponsor-year-group { margin-bottom: 1rem; }
.sponsor-year-label { font-family: Arial, sans-serif; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.sponsor-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sponsor-item {
  background: var(--white); border: 1px solid #ddd; border-radius: var(--radius);
  padding: 0.4rem 0.8rem; font-family: Arial, sans-serif; font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
  --ada-readable: 1;
}
.sponsor-item a { text-decoration: none; color: var(--green); }
.sponsor-item a:hover { text-decoration: underline; }
.sponsor-logo { height: 36px; width: auto; vertical-align: middle; }

/* CONTACT */
.contact { max-width: 680px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.contact h2 { color: var(--green); font-size: 1.5rem; margin-bottom: 1.2rem; }
.contact form { display: flex; flex-direction: column; gap: 0.9rem; }
.contact input, .contact textarea, .contact select {
  padding: 0.65rem 0.9rem; border: 1px solid #ccc; border-radius: var(--radius);
  font-size: 1rem; font-family: inherit; width: 100%;
}
.contact textarea { height: 130px; resize: vertical; }
.contact .checkboxes { display: flex; flex-wrap: wrap; gap: 1rem; }
.contact .checkboxes label { display: flex; align-items: center; gap: 0.4rem; font-family: Arial, sans-serif; font-size: 0.95rem; cursor: pointer; }
.btn-submit {
  background: var(--green); color: var(--white);
  border: none; padding: 0.8rem 2rem; border-radius: var(--radius);
  font-size: 1rem; cursor: pointer; align-self: flex-start;
  font-family: Arial, sans-serif;
}
.btn-submit:hover { background: #1e4d1e; }
.msg-success { background: #d4edda; color: #155724; padding: 0.8rem 1rem; border-radius: var(--radius); }
.msg-error   { background: #f8d7da; color: #721c24; padding: 0.8rem 1rem; border-radius: var(--radius); }

/* MAP */
.map-section { text-align: center; }
.map-section iframe { width: 100%; max-width: 100%; height: 300px; border: 0; display: block; }

/* FOOTER */
footer {
  background: var(--green); color: #c8e6c8;
  text-align: center; padding: 1.5rem 1rem;
  font-family: Arial, sans-serif; font-size: 0.88rem;
}
footer a { color: #a8d8a8; }

/* STATIC HEADER */
.site-header { width: 100%; display: block; }
.site-header img { width: 100%; height: auto; display: block; }

/* SLIDER — smaller, lower on page */
.slider { position: relative; width: 100%; height: 260px; overflow: hidden; background: var(--light); }
.slider .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.slider .slide.active { opacity: 1; }
.slider img { width: 100%; height: 100%; object-fit: contain; }
.slider-section { padding: 2rem 0 10px; background: var(--light); }

/* RESPONSIVE */
@media (max-width: 600px) {
  .slider { height: 180px; }
  .actions { padding: 1.5rem 0.5rem; }
}

/* BACK TO TOP */
#back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--green); color: var(--white);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 999;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
