.footer-copy {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.footer-copy .powered-by {
  font-size: 12px;
  margin-top: 4px;
  font-style: italic;
}

.footer-copy .powered-by a {
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-copy .powered-by a:hover {
  color: #863d3d; /* Bear Traxs brown */
  transform: scale(1.05);
}

/* Starscream – Footer */
.bt-footer{
  background: var(--bt-footer-bg);
  color: var(--bt-footer-text);
  font-family: var(--bt-font, Roboto), system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  padding: 20px;
}
.bt-footer a{ color: inherit; text-decoration: none; }
.bt-footer a:hover{ text-decoration: underline; }

.bt-footer-grid{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}

/* Equal columns */
.bt-footer-col{ flex: 1; }

/* Logo */
.bt-footer-logo img{
  height: 100px;
  width: auto;
  max-width: 100%;
}

/* Copy */
.bt-footer-copy .powered-by{
  font-size: .9em;
  margin-top: 6px;
}
.bt-footer-copy .powered-by a{
  color: var(--bt-accent);
}

/* Socials */
.bt-footer-socials a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}
.bt-footer-socials i{
  font-size: 24px;
  line-height: 1;
  color: var(--bt-accent);
}

/* Mobile stacking */
@media (max-width: 768px){
  .bt-footer-grid{
    flex-direction: column;
    text-align: center;
  }
  .bt-footer-col{ width: 100%; }
  .bt-footer-logo img{ height: 80px; }
}
