% =====================================================================
%  MANDY RESUME TEMPLATE  (LaTeX port)
%  Career Reload  |  https://www.careerreload.com/
% ---------------------------------------------------------------------
%  Compile with XeLaTeX:   xelatex mandy-resume.tex
%  (XeLaTeX is required for the system font. pdfLaTeX will not work
%   unless you swap \setmainfont for a pdfLaTeX font package.)
% =====================================================================

\documentclass[10pt,letterpaper]{article}

% --- Page geometry: US Letter, 0.5in margins (matches the Word file) ---
\usepackage[top=0.5in,bottom=0.5in,left=0.5in,right=0.5in]{geometry}

% --- Font: Arial in the original. Liberation Sans is metric-identical. ---
% If you compile on a machine that has Arial installed, change the line
% below to:  \setmainfont{Arial}
\usepackage{fontspec}
\setmainfont{Liberation Sans}

% --- Colors from the original template -------------------------------
\usepackage{xcolor}
\definecolor{accent}{HTML}{F07978}   % coral: name + section headings
\definecolor{bodygray}{HTML}{505050} % body text + rules

% --- Section headings, bullets, spacing ------------------------------
\usepackage{titlesec}
\usepackage{enumitem}
\usepackage{setspace}
\usepackage[hidelinks]{hyperref}

% Body line spacing (~1.15, close to the original's roomy leading)
\setstretch{1.15}

% Kill default paragraph indent; small gap between paragraphs
\setlength{\parindent}{0pt}
\setlength{\parskip}{2pt}

% Bullet list styling: tight, gray bullet markers
\setlist[itemize]{
  leftmargin=1.4em,
  itemsep=1.5pt,
  topsep=3pt,
  parsep=0pt,
  label=\textcolor{bodygray}{\textbullet}
}

% Section header: coral, bold, 11pt, UPPERCASE, thin rule underneath
\titleformat{\section}
  {\color{accent}\bfseries\fontsize{11}{13}\selectfont}
  {}{0pt}{\MakeUppercase}
  [\vspace{1pt}{\color{bodygray}\titlerule[0.6pt]}]
\titlespacing*{\section}{0pt}{10pt}{5pt}

% --- Custom commands -------------------------------------------------

% \resumename{First}{Last}  -> First bold, Last regular, coral, rule under
\newcommand{\resumename}[2]{%
  {\fontsize{22}{26}\selectfont\color{accent}\textbf{\MakeUppercase{#1}} \MakeUppercase{#2}}\par
  \vspace{3pt}
  {\color{bodygray}\rule{\linewidth}{0.6pt}}\par
  \vspace{4pt}
}

% \contactline{...}  -> single gray line, use  /  between items
\newcommand{\contactline}[1]{{\color{bodygray}#1}\par\vspace{6pt}}

% \experience{Job Title}{Company - Location}{Dates}
% Job title bold on the left with dates bold on the right; company italic below.
\newcommand{\experience}[3]{%
  \textbf{#1}\hfill\textbf{#3}\par
  \vspace{1pt}
  {\itshape #2}\par
  \vspace{2pt}
}

% \edu{Institution}{Detail line}{Dates}
% Institution bold on the left with dates bold on the right; detail below.
\newcommand{\edu}[3]{%
  \textbf{#1}\hfill\textbf{#3}\par
  \vspace{1pt}
  #2\par
  \vspace{2pt}
}

% =====================================================================
%  DOCUMENT
% =====================================================================
\begin{document}
\color{bodygray}
\pagestyle{empty}

% ---------- Header ----------
\resumename{Mandy}{Colbert}
\contactline{123 - 456 1234 \textbar{} email@careerreload.com \textbar{} City, State \textbar{} linkedin.com/company/careerreload/}

% ---------- Career Summary ----------
\section{Career Summary}

Use this area for your elevator pitch to promote your awesome skills and achievements that can truly help the company you're applying to. If you have specific numbers or percentages to quantify any achievements, use them. Show why you are uniquely qualified, instead of just saying so. Keep this section short and concise. Integrate keywords and qualifications aligned with the company's specific needs. For more free resume templates visit CareerReload.com 

% ---------- Work Experience ----------
\section{Work Experience}

\experience{Add Your Job Title Here}{Company Name Here - Location}{Sep 20XX - Present}
\begin{itemize}
  \item Highlight your most relevant qualifications and accomplishment for the job by listing them first.
  \item If you have specific numbers or percentages to quantify your accomplishments and qualifications, use them.
  \item Start your bullet points with a powerful action verb like ``managed''.
  \item Bullet points ensure that your key achievements will be seen. Keep it short and concise.
  \item The secret to an outstanding and great resume is to remove the pronouns (he, she, I) entirely.
\end{itemize}

\experience{Add Your Job Title Here}{Company Name Here - Location}{Feb 20XX - Aug 20XX}
\begin{itemize}
  \item Highlight your most relevant qualifications and accomplishment for the job by listing them first.
  \item If you have specific numbers or percentages to quantify your accomplishments and qualifications, use them.
  \item Start your bullet points with a powerful action verb like ``managed''.
  \item Bullet points ensure that your key achievements will be seen. Keep it short and concise.
  \item The secret to an outstanding and great resume is to remove the pronouns (he, she, I) entirely.
\end{itemize}

\experience{Add Your Job Title Here}{Company Name Here - Location}{Feb 20XX - Aug 20XX}
\begin{itemize}
  \item Highlight your most relevant qualifications and accomplishment for the job by listing them first.
  \item If you have specific numbers or percentages to quantify your accomplishments and qualifications, use them.
  \item Start your bullet points with a powerful action verb like ``managed''.
  \item Bullet points ensure that your key achievements will be seen. Keep it short and concise.
  \item The secret to an outstanding and great resume is to remove the pronouns (he, she, I) entirely.
\end{itemize}

% ---------- Education & Certifications ----------
\section{Education \& Certifications}

\edu{New York University}{Bachelor of Arts in Economics}{May 20XX}
\begin{itemize}
  \item CGPA 3.8/4.0
  \item Graduated Cum Laude
\end{itemize}

\vspace{4pt}
\textbf{Certificate Name,} New York, NY \hfill \textbf{May 20XX}

% ---------- Skills ----------
\section{Skills}

\begin{itemize}
  \item \textbf{Software Skills:} MS Office (Word, Excel, Outlook, Access, PowerPoint), Photoshop.
  \item \textbf{Languages:} Bilingual in Spanish and English.
\end{itemize}

\end{document}
