/* Print Stylesheet for SP Websmiths — Optimized for readability and ink saving */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
        font-family: serif !important;
        font-size: 12pt;
        line-height: 1.5;
    }

    /* Hide non-printable elements */
    header, 
    footer, 
    nav, 
    button, 
    .tech-badge, 
    .tech-dot,
    .tech-glow-card::before,
    .tech-glow-card::after,
    #inquiry-modal, 
    .skip-link,
    form,
    iframe {
        display: none !important;
    }

    /* Reset background grids and decorative shadows */
    main, 
    section, 
    div, 
    p, 
    h1, 
    h2, 
    h3, 
    h4, 
    h5, 
    h6 {
        background: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
        color: #000000 !important;
    }

    main {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Print URL destination next to anchor text for physical reference */
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
        color: #555555;
    }

    /* Prevent printing relative links that are useless on paper */
    a[href^="#"]:after, 
    a[href^="javascript:"]:after {
        content: "";
    }

    /* Page breaks management */
    h1, h2, h3 {
        page-break-after: avoid;
    }
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}
