/* === Brand + Footer overrides (2026-02-01) === */

/* Header brand: show favicon instead of text */
.navbar-modern .navbar-brand {
  width: 40px;
  height: 40px;
  background-image: url('/assets/images/Favicon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  overflow: hidden;
  text-indent: -9999px; /* keep accessible text but hide visually */
  padding: 0;
  margin: 0;
}

/* Footer background using Footer.png */
.site-footer {
  background-image: url('/assets/images/Footer.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  /* preserve base text colors from existing theme */
}

/* Hide inline footer logo images now that it's a background */
img[alt="Greek Squad Footer"] {
  display: none !important;
}

/* Footer brand title: show favicon instead of text */
.site-footer .row > .col-12.col-md-4 > .footer-title {
  width: 40px;
  height: 40px;
  display: block;
  background-image: url('/assets/images/Favicon.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  text-indent: -9999px; /* keep accessible text but hide visually */
  overflow: hidden;
  margin-bottom: 1rem;
}

/* About page minimal footer brand replacement */
footer.py-4.border-top.bg-white .container strong:first-child {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('/assets/images/Favicon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  text-indent: -9999px;
  overflow: hidden;
}
/* Ensure footer content overlays the Footer.png background */
.site-footer { position: relative; }
.site-footer .container,
.site-footer .footer-bottom { position: relative; z-index: 1; }
