/* ==========================
   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;
}






/* HERO SECTION */
.hero {
  background-color: #f9f9f9;
  padding: 2rem 0;
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  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);
}



/* ================================
   Therapy Info Section ONLY
   Matches hero style without affecting others
   ================================ */
   .therapy-section {
    background-color: #ffffff;
    padding: 60px 0;
  }
  
  .therapy-section h2 {
    font-size: 1.25rem;
    color: #007acc;
    margin-bottom: 10px;
  }
  
  .therapy-section p {
    font-size: 1.1rem; /* Matches hero paragraph font size */
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .therapy-section .highlight {
    font-weight: bold;
    color: #0056b3;
  }
  











/* ==========================
   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;
}


.modality-header {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.modality-header h2 {
  font-size: 2rem;
  color: #007acc; /* Match the hero h1 color */
  font-weight: bold;
}


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%);
}
