/* Print-Optimized Styles */

@media print {
    /* Remove interactive elements */
    .no-print,
    .theme-toggle,
    .download-btn,
    .contact-section {
        display: none !important;
    }

    /* Reset page styling */
    body {
        background: white;
        color: black;
        font-size: 11pt;
        line-height: 1.4;
    }

    .container {
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
        background: white;
    }

    /* Optimize spacing for print */
    .header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .header-content h1 {
        font-size: 24pt;
        color: black;
    }

    .pronouns {
        font-size: 12pt;
    }

    .title {
        font-size: 14pt;
        color: #2563eb;
    }

    .contact-info {
        gap: 12px;
        margin-top: 12px;
    }

    .contact-link {
        color: black;
        font-size: 9pt;
    }

    /* Section styling */
    .section {
        margin-bottom: 20px;
        page-break-inside: avoid;
    }

    .section h2 {
        font-size: 14pt;
        color: black;
        margin-bottom: 12px;
        border-color: #2563eb;
    }

    .section p {
        color: black;
        font-size: 10pt;
    }

    /* Experience */
    .job {
        margin-bottom: 16px;
        padding-bottom: 16px;
        page-break-inside: avoid;
    }

    .job h3 {
        font-size: 12pt;
        color: black;
    }

    .company {
        font-size: 10pt;
        color: #2563eb;
    }

    .date {
        font-size: 9pt;
        color: #4a5568;
    }

    .achievements {
        margin-left: 15px;
        margin-top: 8px;
    }

    .achievements li {
        color: black;
        font-size: 10pt;
        margin-bottom: 4px;
        line-height: 1.4;
    }

    /* Education */
    .education h3 {
        font-size: 11pt;
        color: black;
    }

    .school {
        font-size: 10pt;
        color: #2563eb;
    }

    /* Skills */
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .skill-category h4 {
        font-size: 10pt;
        color: black;
        margin-bottom: 8px;
    }

    .skill-tag {
        background-color: #eff6ff;
        color: #1e40af;
        padding: 4px 10px;
        font-size: 9pt;
        border: 1px solid #bfdbfe;
    }

    /* Footer */
    .footer {
        margin-top: 30px;
        padding-top: 15px;
        font-size: 8pt;
        color: #4a5568;
    }

    /* Ensure links are visible */
    a {
        text-decoration: none;
    }

    /* Page breaks */
    h2, h3 {
        page-break-after: avoid;
    }

    /* Remove shadows and transitions */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
        transition: none !important;
    }
}
