
body {
  margin: 0;
  background: #000;
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
}

/* ✅ NAVBAR CSS */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
}

.nav-logo {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-toggle {
  width: 32px;
  height: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
  transition: background 0.3s ease;
}

/* Toggle to black */
.nav-toggle.black span {
  background: black;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #0d0d0dcb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.4s ease;
}

.nav-menu ul {
  list-style: none;
  text-align: center;
}

.nav-menu ul li {
  margin: 20px 0;
}

.nav-menu ul li a {
  color: white;
  font-size: 4rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: #ff2aad;
  transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
  width: 60%;
}

.nav-open .nav-menu {
  left: 0;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.section-title, .impact-title {
  text-align: center;
  font-size: 3em;
  font-weight: 900;
  color: white;
  margin-bottom: 60px;
}

.top-banner {
  width: 100%;
  z-index: 10;
  position: relative;
}

.gif-hero {
  background: url('assets/images/hero.gif') no-repeat center center;
  background-size: cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  color: white;
  font-weight: 900;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-size: 1em;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #ee3fb1;
  color: white;
}

.btn.outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.programs-section {
  background: #000;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.section-title {
  font-size: 3em;
  font-weight: 900;
  margin-bottom: 60px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background: #141414;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(255, 110, 63, 0.2);
}

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

.program-info {
  padding: 20px;
  text-align: left;
}

.program-info h3 {
  color: #d239d8;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.program-info p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.testimonial-card {
  background: #141414;
  border-radius: 16px;
  overflow: hidden;
  width: 300px;
  text-align: center;
}

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

.testimonial-text {
  padding: 20px;
}

.testimonial-text strong {
  color: #d738e0;
}

.impact-metrics {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.impact-card {
  text-align: center;
  max-width: 240px;
}

.impact-card img {
  width: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.impact-card h3 {
  font-size: 3rem;
  font-weight: 800;
}

.impact-card .label {
  color: #c92fb2;
  font-weight: 700;
}

.impact-card span {
  font-size: 0.9rem;
  color: #ccc;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  justify-items: center;
}

.logo-card {
  background: #ef34df;
  border-radius: 20px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  transform: scale(1);
  overflow: hidden;
}

.logo-card img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.3s ease;
}

.logo-card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(255, 42, 173, 0.3);
}

.logo-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Team Section Styling */
.team-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.team-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  text-align: left;
}

.overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}

.overlay p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

.donation-section {
  background: #111;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.donation-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #fff;
}

.donation-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.donation-card {
  width: 260px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.donation-card img {
  width: 100%;
  height: auto;
  display: block;
}

.donation-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,105,180,0.5);
}

.btn.donate-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #d92ed9;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn.donate-btn:hover {
  background: transparent;
  border-color: #d92ed9;
}

.get-involved-section {
  background: #000;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.involve-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.involve-card {
  width: 280px;
  height: 200px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.involve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.involve-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 900;
  color: #fff;
}

.involve-card p {
  font-size: 0.95rem;
  color: #eee;
}

.involve-card.orange {
  background-color: #f023f0;
  color: #fff4e6;
}

.involve-card.red {
  background-color: #911f1d;
  color: #fff0f0;
}

.involve-card.blue {
  background-color: #092c5c;
  color: #cfe7ff;
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.footer-brand h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #f53fff;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 1rem;
  color: #ccc;
}

.footer-contact p,
.footer-links a {
  font-size: 0.95rem;
  color: #ccc;
  margin: 6px 0;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff3ffc;
}

.footer-credit {
  font-size: 0.85rem;
  color: #777;
  margin-top: 20px;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 110, 63, 0.3);
}

.parallax-layer {
  transition: transform 0.2s ease-out;
}



@media (max-width: 768px) {
  /* Global typography */
  .section-title {
    font-size: 2rem;
  }

  /* Hero section */
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Testimonial & Impact Grid */
  .testimonial-cards,
  .impact-metrics,
  .program-grid,
  .donation-grid,
  .involve-grid,
  .donate-blocks {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .testimonial-card,
  .impact-card,
  .program-card,
  .donation-card,
  .donate-option,
  .involve-card {
    width: 90%;
    max-width: 360px;
  }

  /* Get Involved Cards */
  .involve-card {
    height: auto;
    padding: 24px 16px;
  }

  .involve-card h3 {
    font-size: 1.3rem;
  }

  .involve-card p {
    font-size: 0.9rem;
  }

  /* Donate block buttons */
  .donate-btn {
    width: 90%;
    max-width: 300px;
    font-size: 1rem;
    padding: 14px 24px;
  }

  /* Footer tweaks */
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-brand h2 {
    font-size: 1.5rem;
  }

  .footer-credit {
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) {
  .impact-card img {
    width: 100px;
  }
}



