import Link from "next/link";
import { siteConfig } from "@/data/site";

export default function NotFound() {
  return (
    <main className="error-page-shell">
      <section className="container mpc-form-card error-page-card">
        <p className="eyebrow">Page not found</p>
        <h1>This MPC page is not available.</h1>
        <p>The link may have changed. Use the main planning pages below or email MPC if you were looking for a specific guide or route preview or stay enquiry.</p>
        <div className="hero-actions">
          <Link className="btn btn-gold" href="/">Go to homepage</Link>
          <Link className="btn btn-outline dark-text" href="/stay">View Stay section</Link>
          <Link className="btn btn-outline dark-text" href="/free-kruger-help">View free Kruger help</Link>
          <a className="btn btn-outline dark-text" href={`mailto:${siteConfig.partnerEmail}`}>Email MPC</a>
        </div>
      </section>
    </main>
  );
}
