/* ============================================================
   i18n.jsx — shared bilingual copy: navigation, CTAs, footer.
   Page bodies carry their own {pl,en} content objects.
   ============================================================ */

/* Feature flags — flip to true to re-enable when ready (June 2026: 1:1 only). */
const FLAGS = {
  onlineProducts: false,  // online courses, e-learning, checkout, course pricing
  portfolio: false,       // fictional client case studies — hide until real cases
  testimonials: false,    // client opinions — hide until collected from real clients
};

const NAV_ITEMS = [
  { href: "o-mnie.html",    label: { pl: "O mnie",        en: "About" } },
  { href: "agencja.html",   label: { pl: "Usługi",        en: "Services" } },
  { href: "szkolenia.html", label: { pl: "Szkolenia 1:1", en: "1:1 Training" } },
  { href: "portfolio.html", label: { pl: "Portfolio",     en: "Portfolio" }, flag: "portfolio" },
  { href: "audyt.html",     label: { pl: "Audyt",         en: "Audit" } },
  { href: "blog.html",      label: { pl: "Blog",          en: "Blog" } },
  { href: "kontakt.html",   label: { pl: "Kontakt",       en: "Contact" } },
].filter((it) => !it.flag || FLAGS[it.flag]);

const CTA = { pl: "Współpraca", en: "Work with me" };

const BRAND = {
  name: "Mateusz Bielecki",
  tagline: { pl: "Wideo · Branding · Marketing", en: "Video · Branding · Marketing" },
  oneLiner: {
    pl: "Pomagam markom rosnąć dzięki wideo, brandingowi i mądremu marketingowi — i uczę innych, jak robić to samo.",
    en: "I help brands grow through video, branding and smart marketing — and teach creators to do the same.",
  },
  email: "info@mateuszbielecki.pl",
  panel: "https://panel.mateuszbielecki.pl",
};

const FOOTER = {
  heading: { pl: "Bądźmy w kontakcie", en: "Let's stay in touch" },
  blurb: {
    pl: "Jeden list w miesiącu — kulisy projektów i praktyka 1:1. Zero spamu.",
    en: "One letter a month — behind the scenes and 1:1 practice. No spam.",
  },
  emailPlaceholder: { pl: "Twój e-mail", en: "Your email" },
  subscribe: { pl: "Zapisz się", en: "Subscribe" },
  subscribed: { pl: "Dzięki — sprawdź skrzynkę.", en: "Thanks — check your inbox." },
  navTitle: { pl: "Nawigacja", en: "Navigate" },
  moreTitle: { pl: "Więcej", en: "More" },
  panelLink: { pl: "Panel klienta", en: "Client portal" },
  privacy: { pl: "Polityka prywatności", en: "Privacy policy" },
  terms: { pl: "Regulamin", en: "Terms" },
  rights: { pl: "Wszelkie prawa zastrzeżone.", en: "All rights reserved." },
  madeIn: { pl: "Wielka Brytania · Polska", en: "United Kingdom · Poland" },
};

const SOCIALS = [
  { label: "Instagram", href: "https://www.instagram.com/mattbielecky/" },
  { label: "Facebook", href: "https://www.facebook.com/bielecki.mat" },
  { label: "LinkedIn", href: "https://www.linkedin.com/in/matt-bie/" },
  { label: "YouTube", href: "https://www.youtube.com/@mattbielecky" },
];

Object.assign(window, { FLAGS, NAV_ITEMS, CTA, BRAND, FOOTER, SOCIALS });
