
:root {
    --bg-color: #000000;
    --neon-green: #39FF14;
    --neon-purple: #BC13FE;
    --text-color: #EDEDED;
    --text-muted: #888888;
    --grid-line: rgba(57, 255, 20, 0.15);
    --card-bg: rgba(20, 20, 20, 0.8);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Subtle animated grid background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-green);
}

/* Hero Section */
.hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1rem 2rem 1rem; /* Adjust for fixed nav */
}

h1 {
    font-size: 5rem;
    line-height: 1;
    margin: 1rem 0;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

h1:hover {
    text-shadow: 2px 2px 0px var(--neon-purple), -2px -2px 0px var(--neon-green);
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
}

p.description {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.btn-neon {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 1rem 3rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2), inset 0 0 10px rgba(57, 255, 20, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}

.btn-neon:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    display: inline-block;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    width: 100%;
}

.job-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
    opacity: 0.8;
}

/* Stats Bar */
.stats-bar {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
    background: rgba(0,0,0,0.8);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    margin: 0;
    color: #fff;
}

.stat-item span {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Content Sections */
.content-section {
    padding: 6rem 10%;
}

#expertise,
#about,
#contact {
    scroll-margin-top: 120px; /* keep sections visible below fixed nav */
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 800;
}

.text-neon {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.text-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.4);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.neon-card {
    background: var(--card-bg);
    border: 1px solid #333;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.neon-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.5;
    transition: color 0.3s;
}

.neon-card:hover .card-icon {
    color: var(--neon-green);
    opacity: 0.2;
}

.neon-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #fff;
    text-transform: uppercase;
}

.neon-card p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.neon-card strong {
    color: #fff;
}

.card-sub {
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-bottom: 0 !important;
    margin-top: auto;
}

/* Alternate Background for About */
.alternate-bg {
    background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,0.8) 50%, rgba(20,20,20,0) 100%);
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.large-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding-bottom: 6rem;
}

.contact-box {
    margin-top: 3rem;
    border: 1px solid var(--neon-purple);
    display: inline-block;
    padding: 3rem 5rem;
    background: rgba(188, 19, 254, 0.05);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.1);
}

.email-link {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid var(--neon-purple);
    transition: all 0.3s;
}

.email-link:hover {
    background: var(--neon-purple);
    color: #000;
    padding: 0 10px;
}

.company-info {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    border-top: 1px solid #222;
    padding: 2rem;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .content-section { padding: 4rem 5%; }
    .contact-box { padding: 2rem; width: 100%; }
    .email-link { font-size: 1.5rem; }
}

/* Job Board Styles */
.job-card {
    margin-bottom: 2rem;
    text-align: left;
    display: block; /* Override grid default if needed */
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job-title {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
}

.job-meta {
    font-family: monospace;
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.job-meta span {
    margin-left: 1rem;
}

.tech-tag {
    display: inline-block;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.job-body {
    margin: 1.5rem 0;
}

.job-body p.description {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.requirements h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.requirements ul {
    list-style-type: square;
    color: var(--text-muted);
    padding-left: 1.5rem;
}

.requirements li {
    margin-bottom: 0.5rem;
}


/*# sourceMappingURL=jobs.css.map*/