/* Resume-specific styling - completely isolated from site styles */

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

body.resume {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background: #fff;
    max-width: 8.5in;
    margin: 0 auto;
    padding: 0.5in;
}

.resume-container {
    width: 100%;
}

.resume-content {
    width: 100%;
}

/* Header (Name) */
h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 8px;
}

/* Section Headers */
h2 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Job Titles / Company Headers */
h3 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 6px;
    color: #34495e;
}

/* Paragraphs */
p {
    margin-bottom: 8px;
}

li {
    margin-bottom: 4px;
}

/* Sections */

/* Summary section */
h2#summary + p {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
    color: #2c3e50;
}

/* Experience section job bullets */
h2#experience ~ h3 + ul {
    margin-left: 12px;
    list-style: none;
}

h2#projects ~ ul {
    margin-left: 12px;
    list-style: none;
}

/* Skills section - more compact */
h2#skills ~ ul {
    columns: 2;
    column-gap: 24px;
    margin-bottom: 8px;
    list-style: none;
}

h2#skills ~ ul li {
    break-inside: avoid;
    margin-bottom: 2px;
}

/* Print styles */
@media print {
    @page {
        page-orientation: portrait;
    }
    
    body.resume {
        padding: 0.25in;
        font-size: 12px;
        max-width: none;
    }
    
    h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    h2 {
        font-size: 14px;
        margin-top: 16px;
        margin-bottom: 6px;
    }
    
    h3 {
        font-size: 13px;
        margin-top: 8px;
        margin-bottom: 4px;
    }
    
    ul {
        margin-bottom: 8px;
    }
    
    li {
        margin-bottom: 2px;
    }
    

    /* Hide links in print but show URLs */
    a {
        text-decoration: none;
        color: inherit;
    }
    
    /* Page break after Earlier Roles section */
    h2#projects {
        break-before: page;
        padding-top: 0.25in;
    }
}

/* Web-only enhancements */
@media screen {
    body.resume {
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        margin: 20px auto;
    }
}