:root {
  /* Color palette */
  --graphite: #1a1a1a;
  --white: #f0eff4;
  --skyblue: #3a86ff;
  --blue: #1e96ff;
  --purple: #8338ec;
  --gold: #ffa723;
  --yellow: #ffbe0b;
  --orange: #fb5607;
  --red: #b50e0e;
  --pink: #ff006e;
  --subtitle: #a0a0a0;

  /* Font stack */
  --font-title: 'Space Grotesk', 'Inter', sans-serif;
  --font-subtitle: 'Inter', sans-serif;
  --font-company: 'IBM Plex Mono', monospace;
  --font-position: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-tools: 'IBM Plex Mono', monospace;
  --font-duration: 'Inter', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=IBM+Plex+Mono:wght@400;500&family=Space+Grotesk:wght@500&display=swap');

body {
  background-color: var(--graphite);
  color: var(--white);
  font-family: var(--font-body);
  max-width: 600px;
  margin: 0;
  padding: 2rem 2rem 2rem 2.5rem;
  line-height: 1.4;
  font-size: 0.85rem;
}

.content-column {
  max-width: 380px;
  margin-right: auto;
}

/* Title (Your Name) */
h1 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  margin-bottom: 0.1rem;
}

/* Subtitle (Position/Location) */
.subtitle {
  font-family: var(--font-subtitle);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--subtitle);
  margin-bottom: 1.8rem;
  text-shadow: 0 0 6px rgba(160, 160, 160, 0.3);
  letter-spacing: 0.3px;
}

/* Company Names */
.company {
  font-family: var(--font-company);
  font-weight: 500;
  font-style: italic; /* For subtle differentiation */
  font-size: 0.95rem;
  color: var(--orange);
  margin: 1.4rem 0 0.2rem;
  text-shadow: 0 0 6px rgba(30, 150, 255, 0.3);
  letter-spacing: 0.2px;
}

/* Job Name */
.position {
    font-family: var(--font-company);
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--pink);
    text-shadow: 0 0 6px rgba(30, 150, 255, 0.3);
    letter-spacing: 0.2px;
}

/* Duration */
.duration {
  font-family: var(--font-duration);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--yellow);
  text-shadow: 0 0 5px rgba(255, 167, 35, 0.3);
}

/* Tools Category Header */
.tools {
  font-family: var(--font-tools);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--purple);
  margin: 0.8rem 0 0.3rem;
  text-shadow: 0 0 5px rgba(181, 14, 14, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Individual Tool Items */
.tool-item {
  font-family: var(--font-tools);
  font-weight: 400;
  font-size: 0.7rem;
  background: rgba(181, 14, 14, 0.08);
  color: var(--tools);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  text-shadow: 0 0 4px rgba(181, 14, 14, 0.2);
  letter-spacing: 0.3px;
}

/* Body Text */
p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  margin: 0.5rem 0;
}

/* Links */
a{
  font-family: var(--font-body);
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 1px;
  text-shadow: 0 0 5px rgba(181, 14, 14, 0.3);
  transition: all 0.2s ease;
}

a:hover {
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 6px var(--pink));
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: rgba(240, 239, 244, 0.1);
}

/* Social Links */
.social-link.fab, 
.social-link.far {
  font-size: 1.1rem;
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
  align-items: center;
}

.social-link {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 4px var(--text-glow));
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 6px var(--white));
}

/* Adjust spacing */
.company:first-child {
  margin-top: 0.5rem;
}