/* Print Stylesheet */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .navbar,
    .hamburger,
    .scroll-to-top,
    .hero-buttons,
    .skip-link {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        padding: 2rem 0 !important;
        page-break-after: always;
    }

    .section {
        page-break-inside: avoid;
        padding: 1.5rem 0 !important;
    }

    .timeline-content,
    .education-card,
    .cert-card,
    .skill-category {
        page-break-inside: avoid;
        border: 1px solid #ddd !important;
    }

    .company-logo {
        max-height: 30px !important;
    }

    a {
        color: black !important;
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    .contact-section {
        background: white !important;
        color: black !important;
    }

    .footer {
        page-break-inside: avoid;
    }
}

