/* --------------------------------------------------------------
  FOOTER STYLES
--------------------------------------------------------------- */
.site-footer {
  background-image: url('/Assets/Images/Pawbackground.png');  /* Footer background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #a8dbcf;  /* Background fallback color */
  color: #136171;             /* Body text color */
  text-align: center;
  padding: 0.75rem 1rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.75rem;
}

.footer-social a {
  text-decoration: none;
  outline: none;
  border: none;
  display: inline-block;
}

.footer-social a img {
  display: block;
  border: none;
}

.footer-info {
  text-align: center;
  margin-top: 0.5rem;
}

.footer-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0.25rem 0;
}

.github-icon {
  width: 18px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

/* ------------------------------------------------------------------
   RESPONSIVE (max‑768px and 600px)
------------------------------------------------------------------ */

@media (max-width: 768px) {
  .site-footer {
    padding: 0.5rem 0.5rem;
    font-size: 0.9rem;
  }
  .footer-logo {
    height: 30px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 0.5rem 0.5rem;
    font-size: 0.8rem;
  }
  .footer-logo {
    height: 25px;
  }
}

/* ------------------------------------------------------------------
   RESPONSIVE (max‑480px and 360px)
------------------------------------------------------------------ */
@media (max-width: 480px) {
  .site-footer {
    padding: 0.25rem;
    font-size: 0.85rem;
    background-size: contain;
    background-position: bottom center;
  }
  .footer-logo {
    height: 30px;
  }
  .footer-info p {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .site-footer {
    padding: 0.2rem;
    font-size: 0.8rem;
    background-size: contain;
    background-position: bottom center;
  }
  .footer-logo {
    height: 30px;
  }
  .footer-info p {
    font-size: 0.5rem;
    line-height: 1.1;
  }
}

/* ------------------------------------------------------------------
   LANDSCAPE ORIENTATION
------------------------------------------------------------------ */
@media screen and (max-width: 1024px) and (orientation: landscape) {
.site-footer {
    padding: 0.3rem 0.5rem;
    font-size: 14px;
    background-size: contain;
    background-position: bottom center;
  }

  .footer-logo {
    height: 30px;
  }

  .footer-info p {
    font-size: 0.6rem;
    line-height: 1.1;
  }
}
