/* Import a clean monospace font similar to the original */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap');

:root {
  --bg-color: #0d1117;
  --text-color: #54595e;
  --link-color: #363838;
  --accent: #2e93a0;
  --muted: #8b949e;
  --border: #30363d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Fira Code', monospace;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

nav h1 {
  font-size: 1.2rem;
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

nav ul li a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

nav ul li a:hover {
  color: var(--accent);
}

/* Header */
header {
  margin-bottom: 2rem;
}

header h2 {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

header h1 {
  font-size: 2rem;
  color: var(--link-color);
}

header p {
  color: var(--muted);
}

/* Section Styling */
section {
  margin-bottom: 2.5rem;
}

section h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

section p {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.job, .project {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.job h4, .project h4 {
  color: var(--link-color);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  text-align: center;
  color: var(--muted);
}

footer a {
  color: var(--link-color);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
} 

body {
  background-color: #fff; /* base color */
  background-image: radial-gradient(#ccc 1px, transparent 1px);
  background-size: 20px 20px; /* adjust dot spacing */
}


/* Profile Image Styling */
.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.profile img {
  width: 1200px;
  height: 400px;
  border-radius: 20px;
  border: 2px solid var(--accent);
  object-fit: cover;
  transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.profile img:hover {
  transform: scale(1.05);
  border-color: var(--link-color);
}
/* --- Fix for Headings and Links --- */
h2 a, h3 a, h4 a, h5 a, .text-link {
    color: inherit;        /* Forces link to be black/grey (not violet) */
    text-decoration: none; /* Removes the underline */
}

/* --- Hover State --- */
h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, .text-link:hover {
    text-decoration: underline; /* Adds underline only on hover */
    cursor: pointer;
}

/* --- NUCLEAR FIX: Target the SVG Stroke Directly --- */

/* 1. Force the icons to be Grey (ignoring the link color) */
.right-section a svg {
    stroke: #555 !important;
    transition: stroke 0.2s ease;
}

/* 2. Force the icons to be Black on hover */
.right-section a:hover svg {
    stroke: #000 !important;
}/* --- Fix for "All Projects" Link + Banana Cursor --- */
.clean-link {
    color: inherit !important;
    text-decoration: none;
}

.clean-link:visited {
    color: inherit !important;
}

.clean-link:hover {
    text-decoration: underline;
    color: #000 !important;

    /* BANANA CURSOR */
    /* This pulls a small banana image from the web */
    cursor: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/72x72/1f34c.png') 36 36, auto;
}
/* --- Hover State with SMALLER Banana --- */
.clean-link:hover {
    text-decoration: underline;
    color: #000 !important;

    /* This uses a specific 32x32 pixel image. 
       The ', auto' at the end is REQUIRED for it to work.
    */
    cursor: url('https://img.icons8.com/emoji/32/000000/banana-emoji.png'), auto;
}