/* ===========================
   Footer
=========================== */
.site-footer {
  background-color: #072a54; /* navy */
  color: #ffffff;
  font-family: 'Canva Sans', sans-serif;
}

/* Links */
.site-footer a {
  color: #ecaf27; /* gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffd36f;
  text-decoration: underline;
}

/* Footer Top - 3 Columns */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2.2rem 2rem 1.8rem;
  gap: 1.5rem;
}

.footer-top h4 {
  font-family: 'Garet', sans-serif;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 300;
}

.footer-contact p,
.footer-links ul {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.4rem;
}

/* Globe Column */
  .footer-globe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 240px;
  }

  .footer-globe h4 {
    align-self: flex-start;
    margin-bottom: 0.25rem;
  }

  .globe-tagline {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.4;
    max-width: 250px;
    margin-top: 0.2rem;
  }

  .globe-tagline span {
    color: #ecaf27;
  }

  #globe-canvas {
    cursor: grab;
    display: block;
    width: 260px;
    height: 260px;
  }

  #globe-canvas:active {
    cursor: grabbing;
  }




/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 0.8rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
}

/* Mobile Touch Support */
@media (hover: none) and (pointer: coarse) {
  .site-footer a:active {
    color: #ffd36f;
    text-decoration: underline;
  }
  
  
  /* Remove hover underline on mobile, use active instead */
  .site-footer a:hover {
    text-decoration: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem 1.25rem 1.4rem;
  }


      .footer-globe {
      align-items: flex-start;
      gap: 0;
      transform: translateX(-20px);
      
    }
    #globe-canvas {
      align-self: center;
      width: 230px;
      height: 230px;
    }

    .globe-tagline {
      max-width: 230px;
      margin-top: 0.1rem;
    }

}

