:root {
  --forest: #2f5d3a;
  --pine: #3f7a4b;
  --brown: #6b4f3f;
  --tan: #f5efe6;
  --blue: #4a7c9c;
  --text: #2b2b2b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--tan);
  color: var(--text);
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: white;
  border-bottom: 2px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand img { height: 48px; }

.nav a {
  margin-left: 16px;
  text-decoration: none;
  color: var(--forest);
  font-weight: 600;
}

/* BUTTONS */
.btn {
  background: var(--brown);
  color: white !important;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  display: inline-block;
}

.btn:hover { background: #5a4032; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--brown);
  color: var(--brown) !important;
  box-shadow: none;
}

/* HERO */
.hero {
  padding: 90px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--forest);
}

.hero p {
  font-size: 18px;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* SECTIONS */
.section {
  padding: 64px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.section h2 {
  color: var(--forest);
  margin: 0 0 16px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.card h3 { color: var(--pine); margin-top: 0; }

.note { color: #555; font-size: 14px; }

/* FOOTER */
.footer {
  background: var(--forest);
  color: white;
  padding: 32px 24px;
  text-align: center;
}
/* DONATION SECTION */
.donate {
  text-align: center;
}

.donate-intro {
  max-width: 60ch;
  margin: 0 auto 32px;
  font-size: 18px;
}

.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.donate-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  overflow: hidden;          
  text-align: center;        
}


.donate-card h3 {
  color: var(--forest);
  margin-top: 0;
}

.qr {
  width: 320px;        
  max-width: 90vw;     
  margin: 24px auto;
  display: block;
  border-radius: 16px;
}
/* ABOUT SECTION BACKGROUND PHOTO (RESTORED) */
.about-bg {
  position: relative; /* critical so ::before stays inside About only */
  background-image: url("assets/chh-first-camp.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 80px 32px;
  overflow: hidden;
}

/* overlay to keep text readable */
.about-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 239, 230, 0.92);
  z-index: 0;
}

/* Ensure text sits above overlay */
.about-bg > * {
  position: relative;
  z-index: 1;
}


/* Camper butterfly photo — show full image */
.camper-photo {
  width: 100%;
  height: 200px;          /* controls visible size */
  object-fit: contain;   /* 🔑 shows the whole image */
  background: #f5efe6;   /* matches site tan background */
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
}
/* Staff application photo */
.staff-photo {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #f5efe6;
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
}


