/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Global Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}




/* Image Protection Styles */
img.protected-img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}




.contact-link {
  font-size: 1rem;
  color: white;
  text-decoration: underline;
  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;
}

.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;
}

/* Hero Section */
.hero {
  background-color: #f9f9f9;
  padding: 2rem 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #007acc;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
}

.btn:hover {
  background-color: #005f99;
}

/* Impact Section */
.impact {
  background-color: #eef6fb;
  padding: 2rem 0;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
}

.impact-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.impact-box i {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 0.5rem;
}

.impact-box h3 {
  margin-bottom: 0.5rem;
  color: #007acc;
}



/* Program Sections */
.program-section {
  background-color: #f9f9f9;
  padding: 2rem 0;
}

.program-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.program-section.reverse .program-inner {
  flex-direction: row-reverse;
}

.program-image {
  flex: 1;
  text-align: center;
}

.program-image img {
  width: 400px;
  height: auto;
  float: right;
  display: block;
  margin-top: 0;
  border-radius: 6px;
  object-fit: cover;
}


.program-text {
  flex: 1;
}

.program-text h2 {
  color: #007acc;
  margin-bottom: 0.5rem;
}

.program-text p {
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
  background-color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 1rem;
}

.contact-form textarea {
  height: 120px;
}




/* Refined Submit Button Style */
.contact-form button[type="submit"] {
  background-color: #0056b3;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: auto;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background-color: #003d80;
}












.checkboxes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
}

/* Newsletter */
.newsletter-section {
  background-color: #eef6fb;
  padding: 2rem 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.newsletter-form input[type="email"] {
  padding: 0.6rem;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}

.newsletter-form button {
  padding: 0.6rem 1rem;
  border: none;
  background-color: #007acc;
  color: white;
  border-radius: 0 5px 5px 0;
  font-weight: bold;
}

/* 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(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .hero-inner,
  .program-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .logo-area,
  .donate-area {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
  }

  .impact-grid {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 5px;
  }

  .newsletter-form button {
    margin-top: 0.5rem;
  }
}


/* Optional Styling for Transformational Tech Section */
.transformational-tech {
  background-color: #f4f4f4;
  padding: 2.5rem 0;
}

.transformational-tech h1 {
  color: #007acc;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.transformational-tech p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
  margin-bottom: 1.2rem;
}



.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;
}



/* Shared paragraph style for sections */
.section-paragraph {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}


/* ===============================
   Unified Paragraph Styling Across Key Sections
   =============================== */
   .hero-text p,
   .transformational-tech p,
   .section-paragraph,
   .tap-in-text p {
     font-size: 20px;
     line-height: 1.6;
     font-weight: 500;
     color: #333;
     margin-bottom: 1.5rem;
   }

   /*

   .tap-in-text p {
  background: yellow !important;
}
*/
   

/* Align "Dress Right, Dress" image with Hero image */
.program-section .program-image img {
  max-width: 400px; /* Match hero image size */
  float: right;     /* Align image right */
  margin-top: 0;    /* Snap top edge */
  display: block;
}

/* Ensure the text block aligns properly with image */
.program-section .program-inner {
  align-items: flex-start; /* Snap tops together */
}


.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;
}



/* Reusable Primary Button */
.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;
}



/* Section Headings */
h2 {
  font-size: 1.75rem;
  color: #007acc;
  font-weight: 600;
  margin-bottom: 1rem;
}





.program-image img {
  max-width: 400px;
  float: right;
  display: block;
  margin-top: 0;
  border-radius: 6px;
}


/* ===============================
   Top Banner v2.1
   =============================== */
   .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: 13.0rem; /* Adjust this if needed to align with 'About' */
  }
  
  .banner-contact {
    font-size: 1rem;
    color: white;
    text-decoration: underline;
    padding-left: 1rem;
  }
  







  /* Redesigned Get Involved Section */
.get-involved {
  background-color: #eef6fb;
  padding: 2.5rem 0;
  text-align: center;
}

.get-involved h2 {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 1rem;
}

.get-involved p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
}

.options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #003366;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.card i {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 1rem;
  display: block;
}


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;
}







.get-involved-page .get-involved-hero {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
}

.get-involved-page .get-involved-hero h1 {
  font-size: 2rem;
  color: #007acc;
  margin-bottom: 1rem;
}

.get-involved-page .get-involved-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.get-involved-page .get-involved-impact {
  padding: 2.5rem 0;
  background-color: #f9f9f9;
}

.get-involved-page .get-involved-impact h2 {
  font-size: 1.6rem;
  color: #007acc;
  margin-bottom: 1rem;
  text-align: center;
}

.get-involved-page .get-involved-impact ul {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.get-involved-page .get-involved-form {
  padding: 3rem 0;
  background-color: #e0f7fa;
}

.get-involved-page .get-involved-form h2 {
  font-size: 1.6rem;
  color: #007acc;
  margin-bottom: 1rem;
  text-align: center;
}

.get-involved-page form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.get-involved-page label {
  font-weight: bold;
}

.get-involved-page input,
.get-involved-page textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.get-involved-page .btn {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.get-involved-page .btn:hover {
  background-color: #005b99;
}

/* Animation */
.get-involved-page .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.get-involved-page .fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 768px) {
  .get-involved-page .get-involved-hero h1 {
    font-size: 1.5rem;
  }

  .get-involved-page form {
    padding: 0 1rem;
  }

  .get-involved-page .get-involved-impact h2,
  .get-involved-page .get-involved-form h2 {
    font-size: 1.4rem;
  }
}


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%);
}
