
/*---------------------------------------------
# Sticky Footer Fix (applies to all pages)
---------------------------------------------*/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

/*--------------------------------------------------------------
# Footer style homepage 
--------------------------------------------------------------*/
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgb(248, 248, 248);
  margin-top: 3rem;
  background: rgb(0, 0, 0);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 0.75rem;
}

@media (min-width: 767px) {
  .footer-nav ul {
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.footer-nav a {
  color: grey;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-nav a:hover {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
}

/* Footer Logo Styles */
.footer-logo {
  margin: 4rem 0 2rem 0;
  text-align: center;
  width: 100%;
}

.footer-logo-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Footer Copyright */
.footer-copyright {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: grey;
  text-align: left;
  width: 100%;
}



