import { BookOpen } from "lucide-react";

export default function FooterHoze() {
  return (
    <footer className="bg-linear-to-b from-emerald-900 to-emerald-950 text-white py-12">
      <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
        <div className="flex flex-col md:flex-row justify-between items-center gap-6">
          <div className="flex items-center gap-3">
            <div className="w-12 h-12 bg-white/10 rounded-full flex items-center justify-center">
              <BookOpen className="w-7 h-7" />
            </div>
            <div>
              <div className="text-2xl">حوزه علمیه قم</div>
              <div className="text-sm text-emerald-300">Hoze Elmiyeh Qom</div>
            </div>
          </div>
          <p className="text-emerald-300">
            © ۱۴۰۵ حوزه علمیه قم - تمامی حقوق محفوظ است
          </p>
        </div>
      </div>
    </footer>
  );
}
