:root {
    /* Solarized Light Theme Colors */
    --base03: #002b36;    /* Darkest blue */
    --base02: #073642;    /* Dark blue */
    --base01: #586e75;    /* Dark gray */
    --base00: #657b83;    /* Gray */
    --base0: #839496;     /* Light gray */
    --base1: #93a1a1;     /* Lighter gray */
    --base2: #eee8d5;     /* Lightest gray */
    --base3: #fdf6e3;     /* Lightest yellow */
    --yellow: #b58900;    /* Yellow */
    --orange: #cb4b16;    /* Orange */
    --red: #dc322f;       /* Red */
    --magenta: #d33682;   /* Magenta */
    --violet: #6c71c4;    /* Violet */
    --blue: #268bd2;      /* Blue */
    --cyan: #2aa198;      /* Cyan */
    --green: #859900;     /* Green */

    /* Theme Variables */
    --primary-color: var(--blue);
    --secondary-color: var(--cyan);
    --text-color: var(--base00);
    --light-text: var(--base0);
    --background: var(--base3);
    --section-bg: var(--base2);
    --border-color: var(--base1);
    --timeline-color: var(--base1);
    --success-color: var(--green);
    --warning-color: var(--orange);
    --link-color: var(--blue);
    --link-hover-color: var(--cyan);
    --header-bg: var(--base3);
    --card-bg: var(--base3);
    --card-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --logo-bg: var(--base2);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Source Code Pro', 'Consolas', 'Monaco', monospace;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background-color: var(--background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background-color: var(--section-bg);
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--background);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn.primary {
    background-color: var(--blue);
    color: var(--base3);
}

.btn.primary:hover {
    background-color: var(--cyan);
}

.btn.secondary {
    background-color: var(--section-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn.secondary:hover {
    background-color: var(--border-color);
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: var(--section-bg);
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Experience Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
    width: 100%;  /* Ensure full width */
    max-width: none;  /* Remove any max-width constraint */
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--timeline-color);
}

.experience-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--background);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.company-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 110%;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 0.375rem;
    object-fit: contain;
    flex-shrink: 0;
    background-color: var(--logo-bg);
    padding: 0.5rem;
}

.company-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    width: 110%;
}

.company-info h4 {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 0.25rem;
    width: 110%;
}

.location {
    font-size: 0.875rem;
    color: var(--light-text);
}

.period {
    font-size: 0.875rem;
    color: var(--light-text);
    white-space: nowrap;
}

.achievements {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
    width: 100%;
}

.achievements li {
    margin-bottom: 0.5rem;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

/* Film Credits */
.film-credits {
    text-align: center;
}

.film-credits-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.credits-list {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.film-credit-item {
    background-color: var(--background);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.film-poster {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.movie-poster {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

.movie-poster:hover {
    transform: scale(1.05);
}

.film-info {
    padding: 1rem;
}

.film-info h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.release-year {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-mono);
}

.credit {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0 0 0.25rem 0;
    font-style: italic;
}

.studio {
    color: var(--light-text);
    font-size: 0.85rem;
    margin: 0;
    font-family: var(--font-mono);
}

.footnote-ref {
    color: var(--blue);
    font-size: 0.8em;
    vertical-align: super;
    margin-left: 0.2rem;
    cursor: pointer;
    font-family: var(--font-mono);
}

.footnotes {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.footnotes-list {
    list-style-type: decimal;
    padding-left: 1.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.footnotes-list li {
    margin-bottom: 0.5rem;
}

.imdb-link {
    margin-top: 2rem;
}

.imdb-link a {
    color: var(--blue);
    text-decoration: none;
}

.imdb-link a:hover {
    color: var(--cyan);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-item {
    background-color: var(--background);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.skill-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--blue);
}

.skill-item ul {
    list-style: none;
}

.skill-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.skill-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue);
}

/* Open Source Section */
.open-source-contributions {
    max-width: 800px;
    margin: 0 auto;
}

.contribution-org {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contribution-org h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--blue);
}

.contribution-org ul {
    list-style: none;
}

.contribution-org li {
    margin-bottom: 1rem;
}

.contribution-org a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    font-family: var(--font-mono);
}

.contribution-org a:hover {
    color: var(--blue);
}

.pr-description {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
    padding-left: 1.5rem;
    font-family: var(--font-mono);
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--background);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-email {
    background-image: url('../images/platforms/gmail.webp');
}

.icon-github {
    background-image: url('../images/platforms/github.png');
}

.icon-linkedin {
    background-image: url('../images/platforms/linkedin.png');
}

/* Footer */
footer {
    background-color: var(--section-bg);
    padding: 2rem 0;
    text-align: center;
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .timeline::before {
        left: 0;
    }

    .experience-item {
        margin-left: 1rem;
    }

    .company-header {
        flex-direction: column;
    }

    .period {
        margin-top: 0.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    header, .cta-buttons, footer {
        display: none;
    }

    body {
        background-color: white;
    }

    section {
        page-break-inside: avoid;
    }

    .experience-item, .skill-item {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}

/* Experience section */
.experience {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.experience .container {
    max-width: 1200px;  /* Increased from 1100px to match main container */
    margin: 0 auto;
    padding: 0 2rem;  /* Increased padding for better spacing */
}

/* Code and monospace elements */
code, pre, .mono {
    font-family: var(--font-mono);
    font-size: 0.9em;
}

/* Update specific elements to use monospace font */
.contribution-org a {
    font-family: var(--font-mono);
    font-weight: 500;
}

.release-year {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

.footnote-ref {
    font-family: var(--font-mono);
    color: var(--blue);
    font-size: 0.8em;
    vertical-align: super;
    margin-left: 0.2rem;
    cursor: pointer;
}

.footnotes-list {
    font-family: var(--font-mono);
    list-style-type: decimal;
    padding-left: 1.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.pr-description {
    font-family: var(--font-mono);
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
    padding-left: 1.5rem;
} 
