
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #eaeced;
    padding: 2rem;
}

.resume-container {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem 4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
}

header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-info {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.print-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background 0.3s;
}

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

section {
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.15rem;
    color: var(--secondary-color);
}

h4 {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    font-style: italic;
}

.job {
    margin-bottom: 1.5rem;
}

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

.location, .dates {
    font-size: 0.9rem;
    color: #666;
}

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

li {
    margin-bottom: 0.4rem;
}

.skills ul {
    list-style-type: none;
    margin-left: 0;
}

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

@media print {
    body {
        background: #fff;
        padding: 0;
    }
    .resume-container {
        box-shadow: none;
        padding: 0;
        border-top: none;
    }
    .print-btn {
        display: none;
    }
}
