/* ==========================
   RESET & BASE
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Image Protection Styles */
img.protected-img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}



body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ==========================
   GLOBAL CONTAINER
========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================
   TOP BANNER
========================== */
.top-banner-section {
  background-color: #0074b8;
  color: white;
  font-size: 13px;
  padding: 6px 0;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.banner-v2-text {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  color: white;
  margin-left: 13rem;
}

.banner-contact {
  font-size: 1rem;
  color: white;
  text-decoration: underline;
  padding-left: 1rem;
  white-space: nowrap;
}

/* ==========================
   HEADER / NAVIGATION
========================== */
.main-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.5rem 0;
  margin-bottom: 2rem;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-area {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo-area img {
  max-height: 52px;
  width: auto;
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #007acc;
  font-weight: bold;
  font-size: 1.05rem;
}

.donate-area {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

.donate-btn {
  background-color: #007acc;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* ==========================
   SUPPORT SECTION
========================== */
.support {
  background-color: #f5faff;
  padding: 3rem 1rem;
  text-align: center;
}

.support h2 {
  font-size: 2rem;
  color: #007acc;
  font-weight: 700;
  margin-bottom: 1rem;
}

.support p {
  font-size: 1.1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.support-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.support-card {
  background: #eaf6fd;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px;
  max-width: 320px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-card h3 {
  font-size: 1.2rem;
  color: #007acc;
  margin-bottom: 1rem;
}

.support-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-card .btn {
  background-color: #007acc;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to the bottom */
  align-self: center; /* Keep it centered */
}

.support-card .btn:hover {
  background-color: #005f99;
}

/* ==========================
   FOOTER
========================== */
.main-footer {
  background-color: #003f5c;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.footer-contact img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 0.25rem 0;
}

.social-icons {
  margin: 1rem 0;
}

.social-icons a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.2rem;
}

.footer-note {
  font-size: 0.85rem;
  color: #ccc;
}

/* ==========================
   FADE-IN ANIMATION
========================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ==========================
   BUTTONS
========================== */
.btn {
  background-color: #007acc;
  color: white;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005f99;
}

/* ==========================
   RESPONSIVE LAYOUT
========================== */
@media (max-width: 768px) {
  .nav-flex,
  .hero-inner,
  .program-inner,
  .support-options {
    flex-direction: column;
    text-align: center;
  }

  .logo-area,
  .donate-area {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
  }

  .support-card {
    width: 100%;
    max-width: 100%;
  }
}


html {
  overflow-y: scroll; /* Reserve scrollbar space */
}


/* ==========================
   Sticky footer baseline setup
========================== */


/* Sticky footer baseline setup */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}




.support-us-page .support-hero {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
}

.support-us-page .support-hero h1 {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 1rem;
}

.support-us-page .support-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.support-us-page .donation-options {
  padding: 2.5rem 0;
  background-color: #f9f9f9;
}

.support-us-page .donation-options h2 {
  font-size: 1.6rem;
  color: #007acc;
  margin-bottom: 1rem;
  text-align: center;
}

.support-us-page .donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.support-us-page .donation-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.support-us-page .donation-card h3 {
  color: #007acc;
  margin-bottom: 0.75rem;
}

.support-us-page .donation-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.support-us-page .btn {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.support-us-page .btn:hover {
  background-color: #005b99;
}

/* Animation */
.support-us-page .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.support-us-page .fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 768px) {
  .support-us-page .support-hero h1 {
    font-size: 1.5rem;
  }

  .support-us-page .donation-card h3 {
    font-size: 1.25rem;
  }
}



/* Existing styles remain unchanged */

.support-us-page .donation-block {
  padding: 2rem 0;
  background-color: #fff;
  text-align: center;
}

.support-us-page .donation-block .donation-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.support-us-page .donation-block .primary-btn {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}




.support-us-page .support-hero {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
}

.support-us-page .support-hero h1 {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 1rem;
}

.support-us-page .support-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.support-us-page .donation-block {
  padding: 2rem 0;
  background-color: #fff;
  text-align: center;
}

.support-us-page .donation-block .donation-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: center;
  padding: 0 1rem;
}

.support-us-page .donation-block .primary-btn {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.support-us-page .donation-block .primary-btn:hover {
  background-color: #005b99;
}

.support-us-page .donation-block .coming-soon-text {
  font-size: 0.95rem;
  color: #999;
  margin-top: 0.75rem;
}

.support-us-page .donation-options {
  padding: 2.5rem 0;
  background-color: #f9f9f9;
}

.support-us-page .donation-options h2 {
  font-size: 1.6rem;
  color: #007acc;
  margin-bottom: 1rem;
  text-align: center;
}

.support-us-page .donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.support-us-page .support-option {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.support-us-page .support-option h3 {
  color: #007acc;
  margin-bottom: 0.75rem;
  text-align: center;
}

.support-us-page .support-option p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.support-us-page .btn {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.support-us-page .btn:hover {
  background-color: #005b99;
}

.support-us-page .donation-footer-note {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-top: 1rem;
}

.support-us-page .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.support-us-page .fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .support-us-page .support-hero h1 {
    font-size: 1.5rem;
  }

  .support-us-page .donation-block .donation-text {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .support-us-page .donation-block .primary-btn {
    width: auto;
  }

  .support-us-page .support-option h3 {
    font-size: 1.25rem;
  }
}



/* Reserve space for PayPal button to prevent layout jump */
#paypal-container-DDFL7TSX7MMXJ {
    min-height: 100px;
}


.coming-soon-text {
    text-align: center;
    font-size: 0.85rem;
    color: #333;   /* ✅ Dark gray for better readability */
    margin-top: 10px;
}


img {
  -webkit-user-drag: none;
  user-drag: none;
}


.icon-tooltip {
  position: relative;
  display: inline-block;
}

.icon-tooltip .tooltip {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: opacity 0.3s;
  font-size: 0.75rem;
  white-space: nowrap;
}

.icon-tooltip:hover .tooltip {
  visibility: visible;
  opacity: 1;
}




/* Force Bluesky SVG to display in correct blue */
.bluesky-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(37%) sepia(70%) saturate(733%) hue-rotate(176deg) brightness(92%) contrast(90%);
}

.youtube-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  /* Apply red filter (YouTube red) */
  filter: brightness(0) saturate(100%) invert(22%) sepia(99%) saturate(7494%) hue-rotate(358deg) brightness(96%) contrast(112%);
}
