* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(128,0,32,0.7), rgba(128,0,32,0.7)),
              url('images/charity1.jpg') center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 60px 0;
}

/* ===== MISSION ===== */
.mission-vision {
  background: #fff3f6;
  padding: 60px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ===== PROGRAMS ===== */
.programs {
  padding: 60px 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.program-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.program-card:hover {
  transform: translateY(-8px);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 60px 0;
  background: #111;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff6f91;
}

/* ===== LIGHTBOX ===== */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* ===== FOOTER ===== */
footer {
  background: #800020;
  color: white;
  text-align: center;
  padding: 15px;
}
