* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* HERO */
.hero {
    height: 280px;
    background:
        linear-gradient(rgba(0, 100, 80, 0.55), rgba(0, 100, 80, 0.55)),
        url("hero.jpg") center/cover no-repeat;
}

/* NAVBAR */
.navbar {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}
/* TOP ROW */
.nav-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 100px;
  width: auto;
}

/* CENTER BRAND */
.brand-center {
  text-align: center;
}

.brand-center h1 {
  font-size: 28px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.brand-center .tagline {
  font-size: 14px;
  color: #f5c400;
  letter-spacing: 0.6px;
}

/* SPACER */
.nav-spacer {
  width: 60px;
}

/* BOTTOM NAV */
.nav-bottom {
  margin-top: 18px;
  text-align: center;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.nav-links a:hover {
  color: #f5c400;
}

/* Donate emphasis */
.donate-btn {
  background: #f5c400;
  color: #0b7d2c;
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.donate-btn:hover {
  background: #095f22;
}

/* MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #f5c400;
}



/* CONTENT */
.content {
    display: flex;
    gap: 60px;
    padding: 50px 80px;
}

.left-column {
    flex: 3;
}

.right-column {
    flex: 1;
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    color: #0b7d2c;
    font-size: 30px;
    margin-bottom: 15px;
}

.section p {
    line-height: 1.6;
    font-size: 17px;
}

.learn-btn {
    display: inline-block;
    margin-top: 10px;
    background: #0b7d2c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: bold;
}

.story-image {
    width: 100%;
    margin-top: 20px;
}
img {
    max-width: 100%;
}

/*image grid*/
.section {
  padding: 20px 20px;
  background: #fff;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 34px;
  color: #0b7d2c;
  margin-bottom: 20px;
}

.section p {
  max-width: 800px;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

.image-grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

.image-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.image-grid img:hover {
  transform: scale(1.04);
}

/* SIDEBAR */
.right-column h3 {
    color: #0b7d2c;
    margin-bottom: 15px;
}

.right-column ul {
    list-style: none;
}

.right-column li {
    margin-bottom: 10px;
}

.right-column a {
    color: #0b7d2c;
    text-decoration: none;
    font-weight: 600;
}

/*donation*/
.donation-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.donation-hero {
  text-align: center;
  margin-bottom: 50px;
}

.donation-hero h1 {
  font-size: 38px;
  color: #0b7d2c;
  margin-bottom: 20px;
}

.donation-hero p {
  font-size: 18px;
  color: #555;
}

.paybill-section {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.paybill-card {
  background: #faf9f5;
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.paybill-details {
  margin: 30px 0;
}

.paybill-item {
  margin-bottom: 15px;
}

.paybill-item .label {
  display: block;
  font-size: 14px;
  color: #777;
}

.paybill-item .value {
  font-size: 22px;
  font-weight: 600;
  color: #0b7d2c;
}

.paybill-note {
  font-size: 14px;
  color: #666;
  margin-top: 25px;
}
/*Accomodation */
.accommodation-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.accommodation-container {
  max-width: 1100px;
  margin: 0 auto;
}

.accommodation-header, .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.accommodation-header h2, .section-header h2 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7a7a7a;
  margin-bottom: 10px;
}

.accommodation-header h3 {
  font-size: 32px;
  color: #0b7d2c;
}

.accommodation-content {
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.accommodation-content p {
  margin-bottom: 20px;
}

/* Image Grid */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.accommodation-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.accommodation-grid img:hover {
  transform: scale(1.03);
}


/*Partners*/
.partners {
  background: #f9f8f3;
  padding: 90px 20px;
  align-content: center;
}

.partners-groups {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 70px;
}

.partner-group h3 {
  font-size: 22px;
  color: #0b7d2c;
  margin-bottom: 5px;
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.logo-grid img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.4s ease;
}

.logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


/* FOOTER */
.footer {
    background: #0b7d2c;
    color: #fff;
    padding: 40px 60px 20px;
}

.footer-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer a {
    color: #f5c400;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
     .nav-top {
    grid-template-columns: auto 1fr;
  }

  .nav-spacer {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin: 0 auto 10px auto;
  }

    .nav-links {
    flex-direction: column;
    gap: 16px;
    display: none;
    
  }

    .nav-links.active {
        display: flex;
        color: #f5c400;
    }

    /*Content*/

    .content {
        flex-direction: column;
        padding: 30px;
    }
}

/* Responsive acccomodation*/
@media (max-width: 900px) {
  .accommodation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .accommodation-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive grid*/
@media (max-width: 900px) {
  .grid-3,
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-3,
  .grid-6 {
    grid-template-columns: 1fr;
  }
}

/*About US Page */
/* PAGE HERO */
.page-hero {
  height: 60vh;
  background: url("images/about-hero.jpeg") center/cover no-repeat;
  position: relative;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.page-hero-overlay h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero-overlay p {
  max-width: 700px;
  font-size: 18px;
}

/* ABOUT SECTIONS */
.about-section {
  padding: 90px 20px;
}

.alt-bg {
  background: #f8f9f6;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 1fr 1fr;
}

.about-text h3 {
  font-size: 30px;
  color: #0b7d2c;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
}

/* STATEMENT */
.about-statement {
  background: #0b7d2c;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.statement-inner {
  max-width: 800px;
  margin: 0 auto;
}

.statement-inner h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* PURPOSE */
.about-purpose {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.purpose-inner {
  max-width: 700px;
  margin: 0 auto;
}

.purpose-inner h3 {
  font-size: 30px;
  color: #0b7d2c;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-overlay h2 {
    font-size: 32px;
  }
}
