/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #222;
}

/* HERO SECTION */
.hero {
  height: 75vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.hero .overlay {
  background: rgba(0,0,0,0.55);
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.btn.primary {
  background: #2a5c2a;
  color: #fff;
  border: 2px solid #2a5c2a;
}

.btn.primary:hover {
  background: #1e431e;
  border-color: #1e431e;
}

.btn.ghost {
  background: transparent;
  color: #2a5c2a;
  border: 2px solid #2a5c2a;
}

.btn.ghost:hover {
  background: #e9f5ea;
}

/* DONATION TIERS */
.tiers {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.tiers h2 {
  margin-bottom: 20px;
}

.amount-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.btn.tier {
  background: #fff;
  border: 2px solid #2a5c2a;
  color: #2a5c2a;
}

.btn.tier:hover {
  background: #2a5c2a;
  color: #fff;
}

.other-input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 120px;
  text-align: center;
}

.frequency {
  margin: 15px 0;
}

/* PROOF SECTION */
.proof {
  text-align: center;
  padding: 40px 20px;
  background: #f4f4f4;
}

.proof img {
  max-width: 700px;   /* keeps it from being too big */
  width: 100%;
  border-radius: 6px;
  margin: 20px auto;
  display: block;
}

/* GALLERY */
.gallery {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: 220px;        /* uniform size */
  object-fit: cover;    /* crops instead of stretching */
  border-radius: 6px;
}

/* IMPACT */
.impact {
  text-align: center;
  padding: 30px;
  font-size: 1.2rem;
  background: #e9f5ea;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #2a5c2a;
  color: #fff;
}
.btn.tier.active {
  background: #2a5c2a;
  color: #fff;
}
.hero {
  width: 100%;                   /* full width */
  height: 100vh;                 /* full screen height (instead of 75vh) */
  background-size: cover;        /* always cover space */
  background-position: center;   /* center crop */
  background-repeat: no-repeat;  /* don’t repeat */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}


.site-footer {
  text-align: center;
  padding: 20px;
  background: #f8f8f8; /* light grey */
  margin-top: 40px;
  font-size: 0.95rem;
  color: #444;
}

.site-footer a {
  color: #2a5c2a; /* your green brand color */
  text-decoration: none;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: underline;
}