/* =========================
   TENANT FOOTER (styled to match public footer)
   Works with existing tenant_footer.php markup:
   <footer> ... .footer-content .footer-info .footer-logo .footer-links .copyright
   ========================= */

footer{
  background: var(--dark);
  color: #fff;
  padding: 60px 0 30px;
}

/* Layout */
footer .footer-content{
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  margin-bottom: 40px;
  align-items: start;
}

footer .footer-info{
  max-width: 520px;
}

/* Logo block
   If you later swap the text for an <img> in tenant_footer.php, this will style it automatically */
footer .footer-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

footer .footer-logo img{
  height: 34px;
  width: auto;
  display: block;
}

/* Info copy */
footer .footer-info p{
  color: rgba(255,255,255,0.80) !important;
  font-weight: 600 !important;
  margin: 0;
}

/* Link columns */
footer .footer-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

footer .footer-links h3{
  margin-bottom: 16px;
  font-size: 16px;
  color: #e5e7eb;
  font-weight: 700;
}

footer .footer-links ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer-links ul li{
  margin-bottom: 10px;
}

footer .footer-links ul li a{
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-weight: 650;
  transition: color 0.25s;
}

footer .footer-links ul li a:hover{
  color: #fff;
}

/* Divider + copyright */
footer .copyright{
  text-align: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 650;
}

footer .copyright p{
  margin: 0;
}

/* Responsive */
@media (max-width: 992px){
  footer .footer-content{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  footer .footer-links{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  footer .footer-links{
    grid-template-columns: 1fr;
  }
}
