/* Minimal Footer - Gestura */

:root{
  --footer-bg:#F5F5F7;
  --footer-text:#1D1D1F;
  --footer-text-secondary:#86868B;
  --footer-border:rgba(0,0,0,0.08);
}

.footer{
  background:var(--footer-bg);
  padding:24px 0;
  border-top:1px solid var(--footer-border);
}

.footer .container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.footer-bottom p{
  margin:0;
  color:var(--footer-text-secondary);
  font-size:0.9rem;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.footer-bottom .fa-heart{
  font-size:0.85rem;
}

/* Accessibility helpers */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);
  white-space:nowrap;border:0;
}

/* Responsive */
@media (max-width:768px){
  .footer .container{ padding:0 16px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .footer-bottom p{ font-size:0.85rem; }
}

/* Optional dark mode */
@media (prefers-color-scheme:dark){
  :root{
    --footer-bg:#1C1C1E;
    --footer-text:#F2F2F7;
    --footer-text-secondary:#8E8E93;
    --footer-border:rgba(255,255,255,0.12);
  }
}
