/* ====== GLOBAL STYLES ====== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

h1, h2, h3, h4 {
  font-weight: 600;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1rem;
}

/* ====== HEADER ====== */
header {
  background: #222;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.2rem;
}

header nav a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #f9c74f;
}

/* ====== HERO SECTION ====== */
.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1509099836639-18ba1795216d') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: #fff;
  padding: 20px;
  animation: fadeInUp 1.2s ease-out;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.buttons .btn {
  padding: 12px 25px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.donate {
  background: #f94144;
  color: #fff;
}

.get-involved {
  background: #43aa8b;
  color: #fff;
}

.buttons .btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ====== ABOUT SECTION (Home) ====== */
.about {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* ====== PROGRAMS SECTION ====== */
.programs {
  padding: 60px 20px;
  text-align: center;
}

.programs h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.program-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

/* ====== PAGE HERO (About Page) ====== */
.page-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.page-hero-overlay {
  background: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* ====== FULL ABOUT CONTENT ====== */
.about-full {
  padding: 50px 20px;
  text-align: center;
  background: #f8f9fa;
  animation: fadeInUp 1s ease-out;
}

/* Mission & Vision Cards */
.mission-vision {
  padding: 50px 20px;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.mv-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
}

/* Team Section */
.team {
  padding: 50px 20px;
  background: #f8f9fa;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  border-radius: 50%;
  margin-bottom: 15px;
}

/* ====== FOOTER ====== */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }
  header nav {
    margin-top: 10px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .page-hero-overlay h2 {
    font-size: 2rem;
  }
}
