/* === Footer Modern === */
.footer {
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  color: #555;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.03);
  transition: background 0.3s ease, color 0.3s ease;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  margin: 0 0.4rem;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.footer small {
  display: block;
  margin-top: 1rem;
  color: #888;
  font-size: 0.85rem;
}

/* Dark mode compatibilitate (dacă ai dark.css) */
@media (prefers-color-scheme: dark) {
  .footer {
    background: #1c1c1c;
    color: #aaa;
    border-top-color: #333;
  }
  .footer a {
    color: #4fa3ff;
  }
  .footer a:hover {
    color: #79c0ff;
  }
  .footer small {
    color: #777;
  }
}
