/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9fdfb;
  color: #222;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  color: #024c25; /* brand dark green */
  font-weight: 700;
}

a {
  color: #024c25;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #4caf50; /* lighter green */
}

/* ===== HEADER / NAV ===== */
header {
  background: #024c25;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.navbar .logo img {
  height: 60px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: #fff;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  background: #4caf50;
  color: #fff;
}

/* ===== HERO SECTION ===== */
.donation-hero {
  position: relative;
  background: url("Images/tkrj8.jpg") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.donation-hero .overlay {
  background: rgba(2, 76, 37, 0.75);
  padding: 60px 20px;
  border-radius: 10px;
  display: inline-block;
  max-width: 800px;
}

.donation-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.donation-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* ===== DONATION CONTENT ===== */
.donation-content {
  padding: 60px 20px;
  background: #fff;
}

.donation-content .container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.donation-content h2 {
  margin-bottom: 20px;
}

.donation-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.donation-box {
  margin: 30px auto;
  padding: 25px;
  background: #f1f8f4;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: inline-block;
}

.donation-images {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.donation-images img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.donation-images img:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
  background: #024c25;
  color: #fff;
}

.footer-top {
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-sitemap ul {
  list-style: none;
}

.footer-sitemap ul li {
  margin: 6px 0;
}

.footer-sitemap ul li a {
  color: #ddd;
  transition: 0.3s;
}

.footer-sitemap ul li a:hover {
  color: #fff;
}

.footer-social .social-icons a {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social .social-icons a:hover {
  color: #4caf50;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

/* ===== SCROLL PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: #024c25;
  width: 0%;
  z-index: 2000;
  transition: width 0.25s ease-out;
}
