html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* -------------------------
   DESIRED SITE COLORS
-------------------------- */
:root {
  /* Background */
  --navy-blue: #003355;
  --blue-jay: #39A4FF;
  --dark-sand: #FFB560;
  --champagne: #FAD6A5;
  --shale: #BDBEBB;
  --pale-blue: #D8EBEF;

  /* Accents */
  --starfleet-blue: #0099FF;
  --yellow-sand: #FFC436;

/* Warm Neutrals (blend well with sand/champagne tones) */
--beige-gray: #D6CFC4;
--stone: #B8B2A7;
--taupe: #9C9185;

/* Cool Neutrals (blend well with navy/blues) */
--mist-gray: #DDE3E8;
--blue-gray: #AAB4BE;
--steel: #7E8A97;

/* =========================
   PRIMARY TEXT COLORS
   ========================= */

--near-black: #121417;   /* near-black, best overall readability */
--dark-gray: #2E3338; /* slightly softer for large text blocks */
--storm-gray: #5A646E;     /* labels, helper text */

/* =========================
   INVERSE TEXT COLORS
   ========================= */

--white: #FFFFFF;        /* primary text on navy/blue accents */
--soft-white: #E6EEF5;   /* slightly softened white for less glare */
--fog-white: #B8C4CE;  /* secondary text on dark surfaces */

/* =========================
   NEUTRAL BACKGROUND TEXT SUPPORT
   ========================= */

--text-mid: #1F2933;            /* strong readable dark for mid backgrounds */
--text-mid-muted: #4B5563;      /* secondary text on light gray/blue surfaces */

/* Effects */
--shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
--shadow-warm: 0 10px 25px rgba(255, 181, 96, 0.18);   /* dark-sand tint */
--shadow-cool: 0 10px 25px rgba(0, 153, 255, 0.18);    /* starfleet-blue tint */

--shadow-hover: 0 15px 40px rgba(0, 153, 255, 0.28);

--radius: 16px;
--transition: 0.3s ease;
}

/* -------------------------
   NAVIGATION BAR
-------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 10px;

  background-color: rgba(0, 51, 85, 0.88);
  backdrop-filter: blur(10px);

  box-shadow: var(--shadow-soft);
  z-index: 1000;
  box-sizing: border-box;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.site-name {
  color: var(--white);
  font-family: 'Helvetica', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--soft-white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(0, 153, 255, 0.15);
  color: var(--white);
}

.nav-link.active {
  background: rgba(255, 181, 96, 0.18);
  color: var(--white);
}

/* -------------------------
   BODY, BACKGROUND, AND IMAGES
-------------------------- */
body {
  font-family: 'Georgia', serif;
  background:
    radial-gradient(circle at top right, rgba(78, 168, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(14, 165, 164, 0.18), transparent 40%),
    linear-gradient(135deg, var(--champagne), var(--dark-sand));

  color: var(--near-black);
  min-height: 100vh;
  line-height: 1.7;
  padding: 0;
  letter-spacing: 0.2px;
}

/* This prevents the fixed navbar from covering the page content */
main {
  padding-top: 90px;
  padding-left: 20px;
  padding-right: 20px;
}

.intro-section, .resume-head {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 1100px;
  margin: 40px auto;
}

.profile-photo {
  width: 490px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.resume-photo {
  width: 327px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.bio-section, .prof-summary, .wegmans-time {
  flex: 1;
}

.home-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  margin-top: 30px;
  margin-bottom: 30px;
}

.home-buttons button {
  font-size: 1.2rem;
  font-weight: 700;

  padding: 14px 28px;
  min-width: 150px;

  border: none;
  border-radius: var(--radius);

  background-color: var(--navy-blue);
  color: var(--white);

  cursor: pointer;
  transition: var(--transition);
}

.home-buttons button:hover {
  background-color: var(--starfleet-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.resume-buttons, .download-pdf {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  margin-top: 30px;
  margin-bottom: 30px;
}

.resume-buttons button, .download-pdf button {
  font-size: 1.2rem;
  font-weight: 700;

  padding: 14px 28px;
  min-width: 150px;

  border: none;
  border-radius: var(--radius);

  background-color: var(--navy-blue);
  color: var(--white);

  cursor: pointer;
  transition: var(--transition);
}

.resume-buttons button:hover, .download-pdf button:hover {
  background-color: var(--starfleet-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contacts {
  text-align: center;
}

.career, .education, .skills {
  max-width: 1100px;
  margin: 40px auto;
}

.education-entry {
  margin: 30px 0;
  padding: 24px;

  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.school-header {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 20px;
}

.school-logo {
  width: 120px;
  height: 80px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.school-info h3 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.school-info p {
  margin-bottom: 0;
  font-weight: 700;
}

.credential-entry {
  padding: 14px 0;
  border-top: 1px solid rgba(0, 51, 85, 0.25);
}

.credential-entry h4 {
  margin-bottom: 4px;
  font-size: 1.15rem;
  font-weight: 700;
}

.credential-entry p {
  margin-bottom: 0;
}

.no-logo {
  padding-left: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 350px);
  gap: 30px;

  justify-content: center;
  align-items: center;

  margin: 40px auto;
}

.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.project-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 20px;
  text-align: center;

  background: rgba(0, 51, 85, 0.78);
  color: var(--white);

  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.project-overlay p {
  color: var(--soft-white);
  font-size: 1rem;
  margin-bottom: 0;
}

.career-entry {
  max-width: 1100px;
  margin: 40px auto;
  padding: 24px;

  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.company-header {
  display: flex;
  align-items: center;
  gap: 24px;

  margin-bottom: 24px;
}

.company-logo {
  width: 140px;
  height: 100px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.company-info {
  flex: 1;
}

.company-info h3 {
  margin-bottom: 4px;
}

.company-info p {
  margin-bottom: 0;
  font-weight: 700;
}

.position-entry {
  margin-top: 24px;
}

.position-entry h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.position-entry ul {
  padding-left: 24px;
}

.position-entry li {
  margin-bottom: 8px;
}

.skills {
  max-width: 1100px;
  margin: 40px auto;
}

.skills h2 {
  margin-bottom: 20px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.skill-category {
  padding: 24px;

  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.skill-category h3 {
  margin-bottom: 12px;
  color: var(--near-black);
}

.skill-category ul {
  padding-left: 24px;
}

.skill-category li {
  margin-bottom: 8px;
}

footer {
  margin-top: 20px;
  text-align: center;
}

/* -------------------------
   TYPOGRAPHY
-------------------------- */
h1, h2, h3, h4 {
  font-family: 'Helvetica', sans-serif;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--near-black);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  color: var(--blue-sky);
}

h3 {
  font-size: 1.5rem;
  color: var(--cyan-bright);
}

p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

/* -------------------------
   SCROLLBAR
-------------------------- */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--blue-midnight);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    var(--champagne),
    var(--dark-sand)
  );

  border-radius: 999px;
}

/* -------------------------
   SELECTION
-------------------------- */
::selection {
  background: var(--champagne);
  color: var(--dark-sand);
}