/* Bilingual copy strings + small helper */

const COPY = {
  nav: {
    about:      { fr: "À propos",        en: "About" },
    idia:       { fr: "Initiative IDIA", en: "IDIA Initiative" },
    programs:   { fr: "Formations builders", en: "Builder programs" },
    events:     { fr: "Événements",      en: "Events" },
    media:      { fr: "Médiathèque",     en: "Media" },
    blog:       { fr: "Blog",            en: "Blog" },
    join:       { fr: "Nous rejoindre",  en: "Join us" },
    contact:    { fr: "Contact",         en: "Contact" },
    next_cta:   { fr: "Former vos builders", en: "Train your builders" },
  },
  tagline: { fr: "L'IA pour tous", en: "AI for everyone" },
  hero: {
    eyebrow: { fr: "Formations pratiques · Bamako", en: "Hands-on training · Bamako" },
    pre:     { fr: "Nous formons.",   en: "We train." },
    pre_alt: { fr: "Nous formons. Nous influençons. Nous incluons.", en: "We train. We influence. We include." },
    head_a:  { fr: "Façonner l'IA",   en: "Shaping AI" },
    head_b:  { fr: "depuis", en: "from" },
    head_c:  { fr: "le Mali, à travers l'Afrique.", en: "Mali, across Africa." },
    rotating: { fr: ["Former.", "Influencer.", "Inclure."], en: ["Train.", "Influence.", "Include."] },
    sub: {
      fr: "Enracinée au Mali et active à travers l'Afrique, ImmersIA rend l'intelligence artificielle accessible, éthique et utile par la formation, le plaidoyer et l'inclusion.",
      en: "Rooted in Mali and working across Africa, ImmersIA makes AI accessible, ethical, and useful through training, advocacy, and inclusion.",
    },
    cta_main: { fr: "Voir les formations", en: "Explore training" },
    cta_alt:  { fr: "Découvrir IDIA", en: "Discover IDIA" },
  },
  pillars: {
    eyebrow: { fr: "Notre approche", en: "How we work" },
    head: {
      fr: "Former. Influencer. Inclure.",
      en: "Train. Influence. Include.",
    },
  },
  impact_eyebrow: { fr: "Notre portée", en: "Our reach" },
  partners_eyebrow: { fr: "Partenaires", en: "Partners" },
  events_eyebrow:   { fr: "Formations & communauté", en: "Training & community" },
  testimonials_eyebrow: { fr: "Voix de la communauté", en: "Voices from the community" },
  newsletter: {
    eyebrow: { fr: "Partenariats de formation",  en: "Training partnerships" },
    head: { fr: "Formez vos builders avec ImmersIA.", en: "Train your builders with ImmersIA." },
    sub:  { fr: "Des programmes adaptés à vos publics et à leurs objectifs.", en: "Programs adapted to your people and their goals." },
    placeholder: { fr: "Votre adresse e-mail", en: "Your email" },
    cta: { fr: "S'abonner", en: "Subscribe" },
  },
  footer: {
    rights: { fr: "© 2026 ImmersIA. Tous droits réservés.", en: "© 2026 ImmersIA. All rights reserved." },
    address: { fr: "Sotuba ACI · Bamako, Mali", en: "Sotuba ACI · Bamako, Mali" },
  },
};

function t(path, lang) {
  const node = path.split(".").reduce((o, k) => (o ? o[k] : undefined), COPY);
  if (node && typeof node === "object" && node[lang] !== undefined) return node[lang];
  return path;
}

Object.assign(window, { COPY, t });
