/* styles.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #FFF5E1;
  color: #A4161A;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F7C6D9;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: #A4161A;
  font-weight: 500;
}

.nav a:hover {
  color: #E63946;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #FADADD, #FFF5E1);
}

.hero h1 {
  font-size: 2.5rem;
  color: #E63946;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.hero-buttons button {
  background-color: #E63946;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
}

.hero-buttons button:hover {
  background-color: #c92c3b;
}

section {
  padding: 3rem 2rem;
  text-align: center;
}

.cards, .help-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.card, .option {
  background-color: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.counters {
  display: flex;
  justify-content: space-around;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 2rem;
}

.counter-labels {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
  font-size: 1rem;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  background-color: white;
  padding: 1.2rem;
  border-left: 4px solid #E63946;
  border-radius: 10px;
  font-style: italic;
}

footer {
  background-color: #A4161A;
  color: white;
  padding: 2rem;
  text-align: center;
}

.footer-links,
.footer-contact,
.social-media,
.newsletter {
  margin: 1rem 0;
}

.footer-links a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
}

.newsletter input {
  padding: 0.5rem;
  border-radius: 20px;
  border: none;
  width: 250px;
}

.newsletter button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: #E63946;
  color: white;
  border-radius: 20px;
  margin-left: 0.5rem;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #c92c3b;
}
/* About Us Section */
.about-section {
  background-color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.about-section h1 {
  font-size: 2.5rem;
  color: #E63946;
  margin-bottom: 1.5rem;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.btn-link {
  background-color: #4b0e18; /* dark burgundy */
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
  display: inline-block;
  text-decoration: none; /* remove underline */
  text-align: center;
}

.btn-link:hover {
  background-color: #7a1d2a; /* lighter burgundy hover */
  transform: translateY(-3px); /* subtle lift */
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #F7C6D9;
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #E63946;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 16px;
  display: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #c92c3b;
}
.social-icons a {
  color: #A4161A;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #E63946;
}
.team-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  color: #E63946;
  margin-bottom: 0.5rem;
}

.team-section .subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.member-card {
  background-color: #FADADD;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.member-card h3 {
  font-size: 1.2rem;
  color: #A4161A;
  margin-bottom: 0.3rem;
}

.member-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.social-icons a {
  color: #A4161A;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #E63946;
}
.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #A4161A;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0.5rem;
}

.cta-button:hover {
  background-color: #FF6B6B;
}

.cta-button.donate {
  background-color: #E63946;
}

.cta-button.donate:hover {
  background-color: #FF6B6B;
}
.help-intro {
  background-color: #FADADD;
  text-align: center;
  padding: 3rem 1.5rem;
}
.help-intro h2 {
  color: #A4161A;
  font-size: 2rem;
}
.help-intro p {
  color: #444;
  max-width: 600px;
  margin: auto;
}

.help-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
}

.option-card1 {
  background-color: #FFF0F3;
  border: 2px solid #F7C6D9;
  border-radius: 12px;
  padding: 2rem;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.option-card1 h3 {
  color: #E63946;
  margin-bottom: 1rem;
}
.option-card1 p {
  color: #555;
  margin-bottom: 1rem;
}
.option-card1 button {
  background-color: #A4161A;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.option-card1 button:hover {
  background-color: #E63946;
}

.impact-quote {
  background-color: #FFE8EC;
  padding: 3rem 2rem;
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  color: #333;
}

.faq {
  padding: 2rem;
  background-color: #FFF5E1;
}
.faq h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #A4161A;
}
.faq ul {
  list-style-type: none;
  padding-left: 0;
  max-width: 800px;
  margin: auto;
}
.faq li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}

.cta-final {
  text-align: center;
  padding: 2rem;
}
.cta-final h3 {
  color: #A4161A;
  margin-bottom: 1rem;
}
.cta-final .cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #A4161A;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  margin: 0.5rem;
  cursor: pointer;
}
.cta-final .cta-button:hover {
  background-color: #E63946;
}
.cta-final .cta-button.donate {
  background-color: #F28482;
}
.cta-final .cta-button.donate:hover {
  background-color: #FF6B6B;
}
/* Donation and Volunteer Forms */
.donation-form, .volunteer-form {
  background-color: #FFF0F3;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 12px;
  border: 2px solid #F7C6D9;
}
.donation-form h3, .volunteer-form h3 {
  text-align: center;
  color: #A4161A;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea, select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
button[type="submit"] {
  background-color: #A4161A;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
button[type="submit"]:hover {
  background-color: #E63946;
}

/* Contact Page */
.contact-info {
  padding: 3rem 2rem;
  text-align: center;
}
.contact-info h2 {
  color: #A4161A;
  margin-bottom: 2rem;
}
.contact-icons a {
  display: inline-block;
  margin: 1rem;
  font-size: 1.2rem;
  text-decoration: none;
  color: #333;
}
.contact-icons i {
  margin-right: 0.5rem;
  color: #A4161A;
}
.contact-icons a:hover {
  color: #E63946;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding:20px;
  max-width: 16000px;
  margin: auto;
}

.member-card {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(81, 2, 28, 0.677); /* PINK shadow */
  font-size: 14px;
}

.member-card img {
  width: 80px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.member-card h3 {
  font-size: 16px;
  margin: 8px 0 4px;
}

.member-card h4 {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

.member-card p {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 8px;
}

.social-icons a {
  margin: 0 4px;
  color: #444;
  font-size: 16px;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #e91e63;
}
@media screen and (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* Share Popup */
.share-popup {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  padding: 10px;
  z-index: 1000;
}

.share-popup.show {
  display: block;
}

.share-popup a, 
.share-popup button {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  border-radius: 5px;
  background: #f5f5f5;
  margin-bottom: 5px;
  text-align: left;
  width: 150px;
  cursor: pointer;
}

.share-popup a:hover, 
.share-popup button:hover {
  background: #e0e0e0;
}
.impact {
  text-align: left;
}
.weare {
  text-align: left;
}
.wedo {
  text-align: left;
}
.help-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center; /* centers the buttons */
  margin-top: 20px;
}

.help-options .option {
  background-color: #4b0e18; /* dark burgundy */
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.help-options .option:hover {
  background-color: #7a1d2a; /* lighter burgundy on hover */
}
.help-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.help-options a {
  background-color: #4b0e18; /* dark burgundy */
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  text-decoration: none; /* removes underline */
  transition: all 0.3s ease;
  display: inline-block;
}

.help-options a:hover {
  background-color: #7a1d2a; /* lighter burgundy hover */
  transform: translateY(-3px); /* subtle lift */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
