// data.jsx — design tokens + copy. Form is Bangla; cover/dashboard chrome is English.

// ── Design tokens (light medical blue) ────────────────────────
const TOK = {
  bone: '#F2F7FD',        // light medical-blue background
  boneDeep: '#E2EDF9',
  surface: '#FFFFFF',
  ink: '#112A41',         // deep navy text
  inkSoft: '#34516D',
  muted: '#5E7A96',
  faint: '#9DB2C8',
  line: '#DAE6F2',
  lineSoft: '#EAF1F9',
  accent: '#1C77CE',      // medical blue
  accentDeep: '#1560A8',
  accentSoft: '#E3EFFB',
  white: '#FFFFFF',
};

// ── Brand (English, used on cover + dashboard) ────────────────
const BRAND = {
  name: "Tawfiq's Ortho Care",
  doctor: 'Dr. Md. Tawfiq Alam Siddique',
  caption: 'Hand-Trauma-Orthopedics',
  hospital: 'Mount Adora Hospital, Sylhet',
};

// ── Patient-facing copy (English UI; the free field still accepts Bangla typing) ──
const UI = {
  begin: 'Begin',
  tagline: 'Tell us your problem while you wait.',
  // identity
  name_ph: 'পুরো নাম',
  age: 'বয়স',
  serial: 'সিরিয়াল',
  serial_ph: 'নম্বর',
  phone: 'ফোন নম্বর',
  phone_ph: '01XXXXXXXXX',
  // registration
  reg_title: 'রোগীর তথ্য',
  reg_sub: 'নাম, ফোন, বয়স ও ঠিকানা',
  f_name: 'নাম',
  address: 'ঠিকানা',
  address_ph: 'এলাকা, উপজেলা, জেলা',
  continue: 'পরবর্তী',
  // complaint
  complaint_label: 'আপনার সমস্যা লিখুন',
  complaint_hint: 'বিস্তারিত লিখুন',
  complaint_ph: 'যেমন: তিন সপ্তাহ ধরে ডান হাঁটুতে ব্যথা। সিঁড়িতে উঠতে-নামতে বাড়ে…',
  // attachments
  reports: 'রিপোর্ট',
  reports_sub: 'এক্স-রে, পিডিএফ',
  media: 'ছবি / ভিডিও',
  media_sub: 'ছবি বা ভিডিও',
  optional: 'ঐচ্ছিক',
  // actions
  send: 'পাঠান',
  preview: 'প্রিভিউ',
  edit: 'পরিবর্তন',
  submit: 'পাঠান',
  // preview
  preview_title: 'যাচাই করুন',
  preview_sub: 'পাঠানোর আগে দেখে নিন',
  sec_patient: 'রোগী',
  sec_problem: 'সমস্যা',
  sec_files: 'সংযুক্তি',
  no_files: 'কোনো ফাইল নেই',
  empty: 'লেখা হয়নি',
  // confirm popup
  confirm_title: 'নিশ্চিত করুন',
  confirm_body: 'একবার পাঠালে আর পরিবর্তন করা যাবে না। প্রতি রোগী একবারই পাঠাতে পারবেন।',
  confirm_cancel: 'ফিরে যান',
  confirm_yes: 'হ্যাঁ, পাঠান',
  // duplicate
  dup_title: 'ইতিমধ্যে পাঠানো হয়েছে',
  dup_body: 'এই ফোন নম্বর থেকে আজ ইতিমধ্যে পাঠানো হয়েছে। প্রতি রোগী একবারই পাঠাতে পারবেন।',
  dup_ok: 'ফোন নম্বর পরিবর্তন',
  // done / thank you (ENGLISH — the only English after the cover)
  done_title: 'Thank you',
  done_body: 'Your details are now with the doctor. Please keep your phone and show this screen when your serial is called.',
  done_note: 'We wish you a quick recovery.',
  done_serial: 'Your serial',
  done_again: 'New patient',
};

window.TOK = TOK;
window.BRAND = BRAND;
window.UI = UI;
