/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #ddd;
    --dark-gray: #666;
    --spacing: 1rem;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
    padding: 0;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing);
}

h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--medium-gray);
    padding-bottom: 0.3rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

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

a:hover {
    text-decoration: underline;
}

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

.header-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.3rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

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

/* Job Styles */
.job, .project, .research-item, .os-project, .education-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.job:last-child, .project:last-child, .research-item:last-child, .os-project:last-child {
    border-bottom: none;
}

.job-header, .project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.job-date, .project-date {
    color: var(--dark-gray);
    font-style: italic;
}

.job-title {
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.tech-stack {
    margin-top: 1rem;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
}

/* Print Button - Commented out as we're using inline styles
.print-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.print-button:hover {
    background-color: #2980b9;
}

@media screen and (min-width: 768px) {
    .print-button {
        margin-top: 0;
        margin-left: auto;
    }
}
*/

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .job-header, .project-header {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {
    body {
        background-color: white;
    }
    
    .container {
        box-shadow: none;
        max-width: 100%;
    }
    
    .print-button {
        display: none;
    }
    
    footer {
        display: none;
    }
}

/* Navigation Styles */
nav {
    margin-left: auto;
}

.nav-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: var(--light-gray);
    text-decoration: none;
}

/* Project Item Styles */
.project-item {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.project-item:last-child {
    border-bottom: none;
}

.project-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.project-item p {
    margin-bottom: 0.75rem;
}

.project-item ul {
    margin-bottom: 1rem;
}

.view-more {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2980b9;
    text-decoration: none;
}

.btn i {
    margin-left: 0.5rem;
}

/* Main Navigation */
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.main-nav .nav-link {
    margin-right: 0.5rem;
}

.main-nav .nav-link.highlight {
    background-color: var(--secondary-color);
    color: white;
}

.main-nav .nav-link.highlight:hover {
    background-color: #2980b9;
}

/* Call to Action */
.cta-container {
    text-align: center;
    margin: 3rem 0 2rem;
}

/* Section Note */
.section-note {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* Citation Links */
.citation {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.citation a {
    display: inline-block;
    background-color: var(--light-gray);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    border: 1px solid var(--medium-gray);
    font-family: monospace;
    transition: background-color 0.2s ease;
}

.citation a:hover {
    background-color: var(--medium-gray);
    text-decoration: none;
}

/* Disclaimer */
.disclaimer {
    background-color: var(--light-gray);
    border-left: 4px solid var(--secondary-color);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.disclaimer p {
    font-size: 0.95rem;
    margin-bottom: 0;
} 