import { Logo } from "./Logo";
import { LovableMark } from "./LovableMark";

export function Footer() {
  return (
    <footer className="border-t border-border bg-secondary/40 mt-20">
      <div className="container max-w-7xl mx-auto px-4 py-10 flex flex-col md:flex-row items-start md:items-center justify-between gap-6">
        <div className="space-y-2">
          <Logo />
          <div className="flex items-center gap-3 max-w-md">
            <LovableMark size={48} />
            <p className="text-sm text-muted-foreground">Lovable Credits — bKash/Nagad payment, instant email delivery.</p>
          </div>
        </div>
        <div className="text-xs text-muted-foreground">© {new Date().getFullYear()} দেশি কোর্স</div>
      </div>
    </footer>
  );
}