// Data for the portfolio
const RESUME = {
  name: 'Luis Cardona',
  email: 'LCard005@gmail.com',
  phone: '954-610-9434',
  location: 'Fort Lauderdale, FL',
  linkedin: 'linkedin.com/in/lcard005',
};

const WORKS = [
  {
    id: 'building-beyond',
    num: '01',
    title: 'Building Beyond',
    client: 'Oasis Church',
    type: 'Capital Campaign / Anchor Film',
    year: 2024,
    role: 'Creative Director',
    tc: '02:45',
    still: 'photos/p04.jpeg',
    youtube: 'EjeLAraoQ2k',
    stat: '$2.5M RAISED',
    featured: true,
  },
  {
    id: 'oasis-brand',
    num: '02',
    title: 'Oasis Brand System',
    client: 'Oasis Church',
    type: 'Brand / Identity / Guidelines',
    year: 2024,
    role: 'Creative Director',
    tc: 'V1.0',
    still: 'photos/oasis_cover.jpg',
    stat: 'FIRST UNIFIED GUIDE',
    featured: true,
  },
  {
    id: 'short-form',
    num: '03',
    title: 'Short-Form',
    client: 'Oasis Church',
    type: 'Branded Content / Promo / Social',
    year: 2023,
    role: 'Director / Editor',
    tc: '01:18',
    still: 'photos/p11.jpeg',
    youtube: '1keEGeKibfw',
    stat: 'WEEKLY CADENCE',
  },
];

const PHOTOS = [
  { src: 'photos/p01.jpeg', tc: '001 / PORTRAIT' },
  { src: 'photos/p02.jpeg', tc: '002 / NYC' },
  { src: 'photos/p03.jpeg', tc: '003 / BRIDGE' },
  { src: 'photos/p04.jpeg', tc: '004 / STUDIO' },
  { src: 'photos/p05.jpeg', tc: '005 / FIELD' },
  { src: 'photos/p06.jpeg', tc: '006 / KYOTO' },
  { src: 'photos/p07.jpeg', tc: '007 / MIA' },
  { src: 'photos/p08.jpeg', tc: '008 / SF' },
  { src: 'photos/p09.jpeg', tc: '009 / BRICKELL' },
  { src: 'photos/p10.jpeg', tc: '010 / STREET' },
  { src: 'photos/p11.jpeg', tc: '011 / STUDIO' },
];

Object.assign(window, { RESUME, WORKS, PHOTOS });
