/* --- CYBER THEME VARIABLES --- */
:root {
    --bg-dark: #090a0f;           /* Deep space background */
    --card-bg: rgba(16, 18, 27, 0.85); /* Slightly transparent container */
    --text-main: #e2e8f0;         /* Soft white for readable text */
    --text-muted: #94a3b8;        /* Grey for dates and locations */
    --cyber-blue: #00f0ff;        /* Neon blue accents */
    --cyber-purple: #b026ff;      /* Neon purple accents */
    --border-color: rgba(176, 38, 255, 0.3); /* Subtle purple borders */
}

/* --- BASE STYLES & BACKGROUND --- */
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 3rem 1rem;
    position: relative;
    /* Subtle cyber grid background */
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* --- MAIN CONTAINER --- */
.resume-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 25px rgba(176, 38, 255, 0.1); /* Soft purple glow */
    backdrop-filter: blur(10px);
}

/* --- TYPOGRAPHY & HEADERS --- */
h1, h2, h3 {
    margin-top: 0;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    /* Purple to Blue text gradient */
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

h2 {
    font-size: 1.3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--cyber-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

a {
    color: var(--cyber-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: 0 0 8px var(--cyber-blue);
}

/* --- SECTIONS --- */
.resume-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.resume-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.job {
    margin-bottom: 2.5rem;
}

.company {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    font-style: normal;
}

.company em {
    color: var(--cyber-purple);
    font-weight: 600;
    font-style: normal;
}

/* --- CYBER TECH BADGES (SHIELDS.IO) --- */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Spacing between the badges */
    margin-bottom: 1.2rem;
}

.tech-stack img {
    height: 24px; /* Locks them all to the exact same height */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tech-stack img:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.4); /* Cyber blue glow */
}

/* --- BULLET POINTS --- */
ul {
    padding-left: 1.5rem;
    margin-top: 0;
}

li {
    margin-bottom: 0.6rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* Custom bullet colors */
li::marker {
    color: var(--cyber-purple);
}