/** Visitor-facing calendar + auth branding (agent-owned, not company). */
export const AGENT = {
  name: 'Emily Grace',
  firstName: 'Emily',
  title: 'Talent Acquisition Manager',
  calendarName: "Emily Grace's Calendar",
  calendarShort: 'Emily Grace',
  authAppName: 'Emily Grace Calendar',
  tagline: 'Schedule a time to connect',
  bioLine1: 'Talent acquisition & recruitment specialist.',
  bioLine2: 'Connecting great talent with great opportunities.',
  meetingTitle: '30 Minute Meeting',
  meetingDuration: '30 min',
} as const

export const ADMIN = {
  title: 'AT&T Company Console',
  subtitle: `${AGENT.name} · live sessions`,
} as const

/** Company the agent is recruiting for (visitor-facing). */
export const COMPANY = {
  name: 'AT&T Company',
  careersName: 'AT&T Company Careers',
  logoUrl: '/att.png',
  signInTagline: 'Secure sign-in · AT&T Company Careers portal',
} as const

/** AT&T Company brand colors for UI accents (not auth-provider mocks). */
export const BRAND = {
  primary: '#067ab4',
  primaryHover: '##067ab4',
  primaryLight: '#fde8ef',
  navy: '##067ab4',
  navyDark: '##067ab4',
  gold: '##067ab4',
  textOnPrimary: '#FFFFFF',
} as const
