% =====================================================================
%  KEVIN RESUME TEMPLATE  (LaTeX port)
%  Career Reload  |  https://www.careerreload.com/
% ---------------------------------------------------------------------
%  Compile with XeLaTeX:   xelatex kevin-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 (matches the Word file) ---------------------------
\usepackage[top=0.4in,bottom=0.3in,left=0.5in,right=0.4in]{geometry}

% --- Font: Arial in the original. Liberation Sans is metric-identical -
% On a machine with real Arial installed, change this to \setmainfont{Arial}
\usepackage{fontspec}
\setmainfont{Liberation Sans}

% --- Colors from the original template --------------------------------
\usepackage{xcolor}
\definecolor{slate}{HTML}{4E6071}    % name, section headings, accents
\definecolor{bodygray}{HTML}{595959} % body text
\definecolor{sidebar}{HTML}{F6F7F8}  % right sidebar background

% --- Two-column layout with a full-height shaded sidebar --------------
\usepackage{tikz}
\usepackage{eso-pic}
\usepackage{paracol}
\usepackage{enumitem}
\usepackage[hidelinks]{hyperref}

% Right sidebar band, full page height, drawn behind the content
\AddToShipoutPictureBG*{%
  \begin{tikzpicture}[remember picture,overlay]
    \fill[sidebar] ([xshift=-3.3in]current page.north east) rectangle (current page.south east);
  \end{tikzpicture}%
}

% Column split: left column wider than the right sidebar
\columnratio{0.63}
\setlength{\columnsep}{0.28in}

% No paragraph indent; small gaps
\setlength{\parindent}{0pt}
\setlength{\parskip}{2pt}

% Bullet styling: tight, slate markers
\setlist[itemize]{
  leftmargin=1.2em,
  itemsep=1.5pt,
  topsep=2pt,
  parsep=0pt,
  label=\textcolor{slate}{\footnotesize\textbullet}
}

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

% Name: first name regular, surname bold, slate, large
\newcommand{\resumename}[2]{%
  {\fontsize{24}{27}\selectfont\color{slate}#1\textbf{#2}}\par
  \vspace{1pt}
}

% Role line under the name
\newcommand{\role}[1]{%
  {\fontsize{13}{16}\selectfont\color{bodygray}#1}\par
  \vspace{6pt}
}

% Section heading: slate, bold, uppercase, space above
\newcommand{\sect}[1]{%
  \vspace{9pt}{\fontsize{12}{14}\selectfont\bfseries\color{slate}\MakeUppercase{#1}}\par
  \vspace{3pt}
}

% Experience / education / project entry header
% #1 organization line (bold), #2 role or detail (italic), #3 date (small)
\newcommand{\entry}[3]{%
  {\bfseries\color{bodygray}#1}\,\textperiodcentered\,{\itshape\color{bodygray}#2}\par
  {\fontsize{9}{11}\selectfont\color{bodygray}#3}\par
  \vspace{2pt}
}

% Sidebar sub-label (Professional, Technical, Workshop Or Course)
\newcommand{\sublabel}[1]{%
  \vspace{4pt}{\bfseries\color{slate}#1}\par
  \vspace{1pt}
}

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

\begin{paracol}{2}

% ==================== LEFT COLUMN ====================
\resumename{Kevin }{Maddison}
\role{Data Analyst}

Use this area for your elevator pitch to promote your awesome skills and achievements that can truly help the company you're applying to. Use numbers or percentages to quantify any achievements. For more free resume templates visit CareerReload.com 

\sect{Work Experience}

\entry{Company, Location}{Job Title}{Jan 20XX - Present}
\begin{itemize}
  \item Highlight your most relevant qualifications and accomplishment for the job by listing them first. If you have specific numbers or percentages to quantify your accomplishments and qualifications, use them.
  \item Boldfacing growth percentages, dollar figures, and other key accomplishments is also a good strategy.
  \item Start your bullet points with a powerful action verb like ``managed''.
\end{itemize}

\entry{Company, Location}{Job Title}{Jan 20XX - Dec 20XX}
\begin{itemize}
  \item The secret to an outstanding and great resume is to remove the pronouns (he, she, I). Pronouns are redundant.
  \item Bullet points ensure that your key achievements will be seen. Avoid listing irrelevant experience.
\end{itemize}

\sect{Education}

\entry{School Name, Location}{Degree}{Jan 20XX - Dec 20XX}
Completed coursework in [major or focus area], including [specific subjects or skills]. Developed strong skills in [list 1 to 2 key abilities].

\vspace{4pt}
\entry{School Name, Location}{Degree}{Jan 20XX - Dec 20XX}
Graduated with a focus on [major or specialization]. Led or participated in [clubs, projects, or research]. Gained hands-on experience in [relevant tools, labs, or topics].

\sect{Projects}

\entry{Project Name}{Detail}{}
Developed a [type of project] to improve [goal or outcome].

\vspace{4pt}
\entry{Project Name}{Detail}{}
Collaborated with a team to create a [tool, app, or system] that solved [specific problem].

\vspace{4pt}
\entry{Project Name}{Detail}{}
Researched findings on [topic] using [method or technology].

% ==================== RIGHT COLUMN (SIDEBAR) ====================
\switchcolumn

\sect{Contact}
(123) 456-7890\par
email@careerreload.com\par
linkedin.com/company/careerreload/\par
City, State

\sect{Skills}
\sublabel{Professional}
\begin{itemize}
  \item Leadership and training
  \item Some Relevant Skill
  \item Planning and Forecasting
  \item Management
  \item Some Relevant Skill
\end{itemize}
\sublabel{Technical}
\begin{itemize}
  \item Tableau
  \item Analysis Tool
  \item Tool for Data Analysis
  \item Data Analysis Tool
\end{itemize}

\sect{Professional Development}
\sublabel{Workshop Or Course}
University, Company\par
State, Date

\sublabel{Workshop Or Course}
University, Company\par
State, Date

\sublabel{Workshop Or Course}
University, Company\par
State, Date

\sect{Languages}
\begin{itemize}
  \item Spanish, fluent
  \item French, basic proficiency
\end{itemize}

\end{paracol}
\end{document}
