% =====================================================================
%  GISELE RESUME TEMPLATE  (LaTeX port)
%  Career Reload  |  https://www.careerreload.com/
%  Layout: left-column section labels, right-column content,
%          full-width rules between sections.
%  Edits from the Word original:
%    - Education section placed before Experience (entry-level friendly)
%    - "PROFILE" renamed to "OBJECTIVE"
%    - Dates right-aligned (section labels stay on the left)
%    - All text black; sans-serif system font
% ---------------------------------------------------------------------
%  Compile with XeLaTeX:   xelatex gisele-resume.tex
% =====================================================================

\documentclass[10pt,letterpaper]{article}

\usepackage[top=0.5in,bottom=0.5in,left=0.7in,right=0.7in]{geometry}

% --- Font: any sans-serif system font. Liberation Sans is used here. --
\usepackage{fontspec}
\setmainfont{Liberation Sans}

% All text is black (the document default).

\usepackage{enumitem}
\usepackage[hidelinks]{hyperref}

\setlength{\parindent}{0pt}
\setlength{\parskip}{2pt}

\setlist[itemize]{
  leftmargin=1.2em,
  itemsep=1.5pt,
  topsep=2pt,
  parsep=0pt,
  label=\textbullet
}

% --- Column widths for the label / content split ----------------------
\newlength{\labelW}\setlength{\labelW}{1.25in}
\newlength{\gapW}\setlength{\gapW}{0.25in}
\newlength{\contentW}\setlength{\contentW}{\dimexpr\textwidth-\labelW-\gapW\relax}

% --- Padding above/below the divider rules ----------------------------
\newlength{\rulepad}\setlength{\rulepad}{10pt}

% --- Separator for the contact line (pipe, no em dash) ----------------
\newcommand{\sep}{~\textbar~}

% --- A full-width divider rule that sits between sections --------------
\newcommand{\sectionrule}{\par\noindent\rule{\linewidth}{0.5pt}\par}

% --- Section: label on the left, content on the right -----------------
% Even padding is applied above and below via \rulepad so the content
% never crowds the dividing lines.
\newenvironment{resumesection}[1]{%
  \par\addvspace{\rulepad}\noindent
  \begin{minipage}[t]{\labelW}\raggedright\strut{\fontsize{10}{12}\selectfont\bfseries\MakeUppercase{#1}}\end{minipage}%
  \hspace{\gapW}%
  \begin{minipage}[t]{\contentW}\strut\ignorespaces
}{%
  \end{minipage}\par\addvspace{\rulepad}
}

% --- Entry with right-aligned date ------------------------------------
% #1 title/degree (bold), #2 date (italic, pushed right)
\newcommand{\entry}[2]{%
  {\bfseries\MakeUppercase{#1}}\hfill{\itshape #2}\par
  \vspace{1pt}
}

% Sub-line under an entry (company/location or school)
\newcommand{\subline}[1]{{#1}\par\vspace{1pt}}

% Skills sub-label (bold)
\newcommand{\sublabel}[1]{{\bfseries #1}\par}

% =====================================================================
%  DOCUMENT
% =====================================================================
\begin{document}
\pagestyle{empty}
\fontsize{9.5}{11.5}\selectfont

% ---------- Header (centered) ----------
\centerline{\fontsize{22}{26}\selectfont\addfontfeature{LetterSpace=8.0}\MakeUppercase{Gisele }\textbf{\MakeUppercase{Brunhuber}}}
\vspace{5pt}
\centerline{\fontsize{11}{14}\selectfont\addfontfeature{LetterSpace=20.0}\MakeUppercase{Professional Title}}
\vspace{11pt}
\noindent\rule{\linewidth}{0.5pt}\par
\vspace{8pt}
\centerline{\fontsize{9.5}{12}\selectfont 123 - 456 1234 \sep{} email@careerreload.com \sep{} linkedin.com/company/careerreload/ \sep{} City, State}
\vspace{5pt}
\noindent\rule{\linewidth}{0.5pt}\par

% ---------- Objective (was Profile) ----------
\begin{resumesection}{Objective}
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 number 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.
\end{resumesection}

\sectionrule

% ---------- Education (moved before Experience) ----------
\begin{resumesection}{Education}
\entry{Masters of Business Administration}{May 20XX}
\subline{New York University}
\begin{itemize}
  \item GPA 3.9
  \item Graduated Cum Laude
\end{itemize}

\vspace{4pt}
\entry{Bachelor of Business Administration}{May 20XX}
\subline{New York University}
\begin{itemize}
  \item Graduated Cum Laude
\end{itemize}
\end{resumesection}

\sectionrule

% ---------- Experience ----------
\begin{resumesection}{Experience}
\entry{Enter Job Position Here}{Sep 20XX - Present}
\subline{Company / Location}
\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 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}

\vspace{5pt}
\entry{Enter Job Position Here}{Sep 20XX - Jan 20XX}
\subline{Company / Location}
\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 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.
\end{itemize}

\vspace{5pt}
\entry{Enter Job Position Here}{Sep 20XX - Jan 20XX}
\subline{Company / Location}
\begin{itemize}
  \item Highlight your most relevant qualifications and accomplishment for the job.
  \item Start your bullet points with a powerful action verb like ``managed''.
  \item Bullet points ensure that your key achievements will be seen.
\end{itemize}
\end{resumesection}

\sectionrule

% ---------- Skills ----------
\begin{resumesection}{Skills}
\sublabel{Software Skills}
\begin{itemize}
  \item Google Workspace (Google Docs, Sheets, Google Slides), Photoshop
\end{itemize}

\vspace{3pt}
\sublabel{Languages}
\begin{itemize}
  \item Bilingual with English and Spanish
\end{itemize}
\end{resumesection}

\end{document}
