:root {
  --peach: #f5dad2;
  --light-yellow: #fcffe0;
  --sage: #bacd92;
  --forest: #75a47f;
  --dark-gray: #333;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "calibri", sans-serif;
  line-height: 1.6;
  background: white;
  color: var(--dark-gray);
  margin: 0;
  padding: 0;
  height: 100%;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

h1 {
  font-family: "Arial", sans-serif;
  text-align: left;
  color: var(--sage);
  font-size: 1em;
}
h2 {
  font-family: "Times New Roman", sans-serif;
  text-align: center;
  color: var(--forest);
}

h3 {
  font-family: "calibri", sans-serif;
  color: var(--forest);
}

.logo-header {
  background: var(--peach);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
}

.logo-header img {
  max-width: 180px;
}

header {
  background: var(--sage);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  flex-wrap: wrap;
}

header #navigation {
  padding: 10px;
  text-align: center;
  font-family: "georgia", sans-serif;
  font-size: 100%;
}

header li {
  padding: 10px;
  display: inline;
  list-style-type: none;
}

.hero {
  width: 100%;
  height: auto;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  padding: 3rem 2rem;
  background: white;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.img-link {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.img-link img {
  width: 100%;
  height: auto;
  display: block;
}

.img-link:hover {
  transform: scale(1.03);
}

footer {
  background: #222;
  color: white;
  padding: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: left;
}

.footer-column,
.footer-socials h4 {
  color: var(--sage);
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-socials a {
  display: inline-block;
  margin-right: 0.5rem;
}

.footer-socials img {
  width: 24px;
  height: 24px;
}

a:link /* unvisited link */ {
  color: #75a47f;
  text-decoration: none;
  font-weight: bold;
}
a:visited /* visited link */ {
  color: #f5dad2;
  text-decoration: none;
  font-weight: bold;
}
a:hover /* user hovers */ {
  color: #f5dad2;
  text-decoration: underline;
}
a:active /* active link */ {
  color: #75a47f;
  text-decoration: underline;
}

.abouthero {
  display: flex;
  flex-wrap: wrap;
  background: var(--light-yellow);
  padding: 2rem;
}

.abouthero img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

.about-text {
  flex: 1;
  padding: 1rem 2rem;
  text-align: center;
}

.card {
  padding: 1rem;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.card img {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.projecthero {
  display: flex;
  flex-wrap: wrap;
  background: var(--light-yellow);
}

.projecthero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-block {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: left;
}

.project-block img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

.project-content {
  flex: 1;
  min-width: 280px;
}

.sitesection {
  background: var(--light-yellow);
}

.highlight {
  background: var(--peach);
  padding: 0 1rem;
  border-radius: 10px;
}

.volunteerhero {
  display: flex;
  flex-wrap: wrap;
  background: var(--light-yellow);
  padding: 2rem;
  align-items: center;
}

.volunteerhero img {
  width: 100%;
  max-width: 500px;
  height: auto;
  flex: 1;
  padding-right: 2rem;
}

.volunteer-text {
  flex: 1;
  padding: 1rem 2rem;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input,
textarea,
select {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}
button {
  background: #75a47f;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.contacthero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem;
  background: var(--light-yellow);
}

.contacthero .contacttext {
  flex: 1;
  padding: 1rem 2rem;
  min-width: 280px;
}

.contactformsection {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  background: #fff;
  margin-bottom: 3rem;
}

.contactform {
  flex: 1;
  min-width: 300px;
  margin-right: 2rem;
}

.contactform label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contactform input,
.contactform select,
.contactform textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contactform button {
  background: var (--forest);
  font-family: "calibri", sans-serif;
  font-weight: bold;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.contactform button:hover {
  background: #5e8f6e;
}

.newshero {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.newshero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.newsgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  text-align: center;
  background: white;
}
.newsitem {
  background: var(--light-yellow);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.newsitem:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.newsitem img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.newscaption {
  padding: 1rem;
}
.newscaption h3 {
  margin: 0.5rem 0;
  color: #75a47f;
}
.newscaption p {
  margin: 0;
  font-size: 0.95rem;
  color: var (--dark-gray);
}

.sixhero,
.fivehero,
.otherhero {
  text-align: center;
  padding: 2rem;
  background: var(--light-yellow);
}
.sixhero p,
.fivehero p,
.otherhero p {
  font-family: "calibri", sans-serif;
  font-size: 1.1rem;
  color: var (--dark-gray);
  text-align: center;
  margin: 0 auto;
}
.newscontent {
  padding: 2rem;
  background: #ffffff;
}
.event {
  margin-bottom: 3rem;
}

.event img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

.event h2 {
  color: #75a47f;
}
.event h3 {
  margin-top: 0.5rem;
  color: #5e8f6e;
}
.event p {
  line-height: 1.6;
}

.monthnav {
  background: #f5dad2;
  padding: 1rem;
  text-align: center;
}
.monthnav a {
  margin: 0.5rem;
  text-decoration: none;
  color: #75a47f;
}

.newsarticle {
  margin-bottom: 3rem;
}
.newsarticle h2 {
  color: #75a47f;
}
.newsarticle p {
  line-height: 1.6;
}
.morenews {
  padding: 2rem;
  background: #f5dad2;
  text-align: center;
  font-size: 1.1rem;
}
.morenews a {
  color: #75a47f;
  font-weight: 600;
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: white;
  font-size: 0.9rem;
}

.li {
  padding: 10px;
  display: inline;
  list-style-type: none;
}

.donatehero {
  text-align: center;
  position: relative;
}

.donatehero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.donateherocaption {
  padding: 2rem;
  background: white;
  font-size: 1.1rem;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.donationforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
}
.formbox {
  flex: 1;
  min-width: 300px;
  background: #f5dad2;
  padding: 1rem;
  border-radius: 10px;
}
.formbox h3 {
  color: #75a47f;
  margin-top: 0;
}

.formbox form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}
.formbox form input,
.formbox form select {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.formbox form button {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #75a47f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.gift-aid,
.fundraise,
.sponsors {
  padding: 2rem;
  background: #ffffff;
}
.gift-aid p,
.fundraise p {
  line-height: 1.6;
}
.fundraise ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.fundraise a {
  color: rgb(234, 46, 105);
  text-decoration: underline;
}

.sponsor {
  padding: 2rem;
  text-align: center;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
