
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fafafa;
}

h1, h2, h3 {
  margin: 0 0 15px;
}

p {
  line-height: 1.6;
}

#wrapper {
  width: 100%;
}

#header {
  text-align: center;
  padding: 40px 10%;
  background: white;
}
#header img{
    max-width: 150px;
}
#header h1 {
  font-size: 28px;
  color: #2f6f4e;
}

#header h2 {
  font-size: 16px;
  color: #777;
}


#nav-content {
  background: #2f6f4e;
}

#navigation {
  list-style: none;
  margin: 0;
  padding: 15px 10%;
  display: flex;
  justify-content: center;
}

#navigation li {
  margin: 0 15px;
}

#navigation a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family:Arial, Helvetica, sans-serif;
}

.donate-button {
  background: #d89b3c;

  padding: 10px 18px;
  border-radius: 30px;
}


#main-content {
  width: 100%;
}


.section {
  padding: 70px 12%;
  text-align: center;
  background: white;
  margin-bottom: 0px;
}

.hero {
  background: url("image/image3.JPG") center/cover no-repeat;
  color: white;
  text-align: left;
  padding: 180px 12%;
}


.hero h1 {
  font-size: 56px;
}

.section h2 {
  font-size: 34px;
}

.section h3 {
  font-size: 17px;
}

.button {
   display: inline-block;
   padding: 12px 20px;
   background: #2f6f4e;
   color: white;
   text-decoration: none;
   border-radius: 6px;
   transition: 0.3s ease;
   cursor: pointer;
}

.button:hover {
  background: #24563c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.button-outline {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-left: 12px;
  transition: 0.3s ease;
}

.button-outline:hover {
  background: white;
  color: #2f6f4e;
}

.about {
  background: #e8efe9;
  margin: auto;
}

.gallery {
  background: #f4f4f4;
  display: flex;
  padding: 0;
  gap: 10px;
}

.gallery img {
  width: 50%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}

.services {
  background: #e8efe9;
}

.services .card {
  display: inline-block;
  width: 28%;
  margin: 1%;
  padding: 25px;
  background: white;
}

.card a {
  display: block;
  width: 100%;
  height: 100%;
}
.programmes-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.programme-card {
  flex:1;
  background: white;
  border-radius: 12px;  
  overflow: hidden;
}

.programme-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.programme-card .card-content {
  padding: 20px;
}

.values {
  display: flex;
  background-color: #f4f4f4;
}


.value-card {
  flex: 1;
  position: relative;

  padding: 40px;
  box-sizing: border-box;

  color: white;
  font-weight: bold;

  cursor: pointer;

  border: 1px solid transparent;
  transition: 0.3s ease;
}

.tooltip {
  display: none;

  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);

  width: 220px;

  background: white;
  color: black;

  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  z-index: 999;
}

.tooltip img {
    max-width: 190px;

}

.value-card:hover .tooltip {
  display: block;
  border: 1px solid #999;
}

.value-card:nth-child(1){ background:#3a7d5d; }
.value-card:nth-child(2){ background:#6aa67c; }
.value-card:nth-child(3){ background:#4f8c6b; }
.value-card:nth-child(4){ background:#2f6f4e; }

.icon {
  font-size: 14px;
  opacity: 0.6;
}

.news {
  background: #f4f4f4;
}

.feature{
  background:#e8efe9;
  display:flex;
  align-items:center;
  gap:50px;
}

.feature img{
  width:50%;
  border-radius:18px;
}


.support {
  background: #f4f4f4;
  text-align: center;
}

.support-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
}

.support-grid {
  display: flex;
  gap: 25px;
  margin-top: 40px;
}

.support-card {
  flex: 1;
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.support-card h3 {
  margin-bottom: 15px;
  color: #2f6f4e;
}

.support-card p {
  margin-bottom: 25px;
  color: #666;
}


#footer {
  background: #2f6f4e;
  color: white;
  padding: 70px 12% 30px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-column {
  min-width: 220px;
}

.footer-living {
  flex: 1.2;
}

.footer-partner {
    flex: 1.6;
}

.footer-links {
flex: 0.8;
text-align: right;
}

.footer-links a {
  display: block;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-column a {
  display: block;
  margin-bottom: 8px;
  color: white;
}

.footer-column a:hover {
  opacity: 1;
  transform: translateX(3px);
}


.footer-living img {
    width: 120px;
    margin-bottom: 20px;
}
.socials{
    display: flex;
    gap: 12px;
    align-items: center;
}

.socials a {
    display: inline-block;
}

.socials a img {
  width: 28px;
  margin-right: 10px;
  transition: 0.25s ease;
}

.socials a img:hover {
  transform: translateY(-2px);
}


.footer-bottom {
  border-top: 1px solid grey;
  padding-top: 20px;
  text-align: center;
  opacity: 0.7;
}

.partner-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
}

.partner-item img {
  width: 60px;
  background: white;
  padding: 5px;
}

.partner-item p {
font-size: 14px;
line-height: 1.5;
opacity: 0.85;
}

.partner-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.8;
}

.page-hero-about {
  background:
  linear-gradient(
  rgba(47,111,78,0.45),
  rgba(47,111,78,0.45)
  ),
  url("image/farm\ work.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 12%;
  text-align: center;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.info-card {
  background: white;
  padding: 40px;
  border-radius: 18px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.info-card h3 {
  color: #2f6f4e;
  font-size: 24px;
  margin-bottom: 18px;
}

.info-card p {
  line-height: 1.7;
  margin-bottom: 30px;
  color: #666;
}

.info-card span {
  font-weight: bold;
  color: #2f6f4e;
}

.page-hero-services {
  background:
  linear-gradient(
  rgba(47,111,78,0.45),
  rgba(47,111,78,0.45)
  ),
  url("image/farm\ work1.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 12%;
  text-align: center;
}

.page-hero-visit {
  background:
  linear-gradient(
  rgba(47,111,78,0.45),
  rgba(47,111,78,0.45)
  ),
  url("image/cabin3.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 12%;
  text-align: center;
}

.static-card {
  background: #f4f4f4;
  text-align: left;
  box-shadow: none;
}

.gallery-visit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 60px;
}

.gallery-visit img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.featured-visit {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.visit-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.visit-text {
  flex: 1;
  text-align: left;
}

.info-card-visit {
  background: #e8efe9;
  padding: 40px;
  border-radius: 18px;
  text-decoration: none;
  color: #333;
  transition: 0.3s ease;
}


.info-card-visit h3 {
  color: #2f6f4e;
  font-size: 24px;
  margin-bottom: 18px;
}

.info-card-visit p {
  line-height: 1.7;
  margin-bottom: 30px;
  color: #666;
}


.page-hero-getinvolved {
  background:
  linear-gradient(
  rgba(47,111,78,0.45),
  rgba(47,111,78,0.45)
  ),
  url("image/farm\ work8.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 12%;
  text-align: center;
}

.page-hero-contact {
  background:
  linear-gradient(
  rgba(47,111,78,0.45),
  rgba(47,111,78,0.45)
  ),
  url("image/with\ animal.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 12%;
  text-align: center;
}

.info-card-visit a:not(.button) {
  color: #2f6f4e;
  text-decoration: none;
  font-weight: 600;
}

.info-card-visit a:not(.button):hover {
  border-bottom: 1px solid #2f6f4e;
}

.services-section,
.getinvolved-section{
  background:#e8efe9;

}

.about-section .info-card {
  background:#e8efe9;
  color:white;
}