html {
  scroll-behavior: smooth;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(8px, 2vw, 16px) clamp(12px, 4vw, 24px);
  background: #fff;
  color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Logo */
.logo img {
  height: clamp(55px, 10vh, 90px); /* increased size */
  width: auto;
  max-width: 200px; /* allow a wider logo */
}

/* Nav links (desktop) */
.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(12px, 3vw, 28px);
  transition: all 0.3s ease;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 18px);
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #d4145a;
  transition: 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  .hamburger {
    display: flex;
  }
}

/* Small fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1520706004450-f170ae7d8176?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
}

.hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.hero-buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #d4145a;
  color: #fff;
}

.btn-primary:hover {
  background: #a10f45;
}

.btn-secondary {
  background: #fff;
  color: #d4145a;
}

.btn-secondary:hover {
  background: #f1f1f1;
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons a {
    width: 90%;
    text-align: center;
    font-size: 1.1rem;
    padding: 14px 0;
    border-radius: 8px;
    margin-bottom: 12px; /* 👈 adds gap between stacked buttons */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  /* remove the margin from the last button so it doesn't push extra space */
  .hero-buttons a:last-child {
    margin-bottom: 0;
  }

  .btn-primary {
    background: linear-gradient(135deg, #d4145a, #f26a8d);
    color: white;
  }

  .btn-secondary {
    background: white;
    color: #222;
    border: 2px solid #f26a8d;
  }
}





/* Section base */
.section {
  padding: 60px 20px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

.section p {
  max-width: 800px;
  margin: 0 auto 15px;
  text-align: center;
  line-height: 1.7;
  color: #444;
}

.gray-bg {
  background: #f9f9f9;
}

/* Styled list */
.styled-list {
  list-style: none;
  max-width: 700px;
  margin: 20px auto 0;
  padding: 0;
}

.styled-list li {
  margin: 12px 0;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.card p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
}
.highlights {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.highlights h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

/* Highlights Section */
.highlights {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.highlights h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlights h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d4145a;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Stats container */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Individual stat cards */
.stat {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 200px;
  max-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Number counters */
.counter {
  font-size: 2.8rem;
  font-weight: 700;
  color: #d4145a; /* Accent color */
  display: block;
  margin-bottom: 8px;
}

/* Description text */
.stat p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}
/* Gallery Section */
.gallery {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.gallery h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d4145a;
  margin: 12px auto 0;
  border-radius: 2px;
}

.gallery-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Performance list */
.performance-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.performance {
  padding: 20px;
  border-left: 4px solid #d4145a;
  background: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performance:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.performance h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 8px;
}

.performance h3 span {
  color: #d4145a;
  font-weight: 600;
}

.performance p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
/* Photos & Videos Section */
.media-section {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.media-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.media-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d4145a;
  margin: 12px auto 0;
  border-radius: 2px;
}

.media-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.media-grid img,
.media-grid video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-grid img:hover,
.media-grid video:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Support Section */
.support {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.support h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.support h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d4145a;
  margin: 12px auto 0;
  border-radius: 2px;
}

.support-intro {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Benefits Cards */
.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.benefit {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 220px;
  max-width: 250px;
  font-weight: 500;
  color: #222;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Donation Section */
.donation-section {
  background: #fff8fb; /* very light pink background */
  padding: 60px 20px;
  border-radius: 16px;
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Heading */
.donation-section h3 {
  font-size: 28px;
  color: black;
  margin-bottom: 25px;
  font-weight: 700;
}

/* List */
.ways-to-give {
  list-style: disc;
  max-width: 700px;
  margin: 0 auto 30px;
  padding-left: 40px;
  text-align: left;
  color: #444;
  font-size: 18px;
  line-height: 1.7;
}

.ways-to-give li {
  margin-bottom: 14px;
}

.ways-to-give a {
  color: #d4145a;
  text-decoration: none;
  font-weight: 600;
}

.ways-to-give a:hover {
  text-decoration: underline;
}
.donation-section h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d4145a;
  margin: 12px auto 0;
  border-radius: 2px;
}
/* Message */
.donate-msg {
  font-size: 20px;
  color: #333;
  margin-bottom: 30px;
  font-style: italic;
}

/* Button */
.donate-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #d4145a;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.donate-btn:hover {
  background: #b1124c;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}




/* Donate Button */
.donate-btn {
  display: inline-block;
  background: #d4145a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.donate-btn:hover {
  background: #e63946;
  transform: translateY(-3px);
}

/* Join Us Section */
.join-us {
  margin-top: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.join-us h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 12px;
}

.join-us p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.join-us h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d4145a;
  margin: 12px auto 0;
  border-radius: 2px;
}
/* Footer */
/* Footer */
/* Footer */
.site-footer {
  background: #f8f8f8; /* light background */
  color: #333;
  padding: 30px 40px;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid #d4145a; /* subtle accent */
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center items horizontally */
  gap: 40px; /* space between items */
  font-size: 1rem;
  margin-bottom: 15px;
  align-items: center;
}

.footer-content span {
  transition: transform 0.3s ease;
}

.footer-content span:hover {
  transform: translateY(-2px); /* subtle hover lift */
}

.site-footer a {
  color: #d4145a; /* signature site color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #f06292; /* lighter pink on hover */
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 12px;
  }
}


#whatwedo h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d4145a;
  margin: 12px auto 0;
  border-radius: 2px;
}
#mission h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d4145a;
  margin: 12px auto 0;
  border-radius: 2px;
}
#about h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d4145a;
  margin: 12px auto 0;
  border-radius: 2px;
}



.carousel-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.carousel-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-item img,
.carousel-item video {
  width: 100%;
  height: 450px;     /* or any height you want */
  object-fit: cover; /* keeps proportions, crops excess */
  border-radius: 12px;
}


/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  padding: 12px;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-section h2 {
    font-size: 1.6rem;
  }

  .carousel-btn {
    font-size: 1.2rem;
    padding: 10px;
  }
}

.video-gallery {
  padding: 60px 20px;
  text-align: center;
}

.video-gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.video-item video {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.video-item video:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox video {
  width: 80%;
  max-width: 900px;
  border-radius: 12px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
