/* ══════════════════════════════════════════════════════════
   PRINT STYLESHEET - Professional Document Printing
   ═══════════════════════════════════════════════════════════ */

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

    /* Hide unnecessary elements */
    nav,
    .nav-toggle,
    .scroll-hint,
    .btn-primary,
    .btn-secondary,
    .btn-ghost,
    .video-container,
    .custom-cursor,
    .custom-cursor-follower,
    #hero-canvas-container,
    .scroll-indicator {
        display: none !important;
    }

    /* Optimize page breaks */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    img {
        page-break-inside: avoid;
        max-width: 100% !important;
    }

    article,
    section {
        page-break-inside: avoid;
    }

    /* Typography for print */
    body {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 12pt;
        line-height: 1.5;
    }

    h1 {
        font-size: 24pt;
    }

    h2 {
        font-size: 18pt;
    }

    h3 {
        font-size: 14pt;
    }

    /* Show URLs for links */
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }

    /* Don't show URLs for anchors */
    a[href^="#"]:after {
        content: "";
    }

    /* Optimize spacing */
    .section-breathe {
        padding: 20px 0;
    }

    /* Ensure readability */
    p {
        widows: 3;
        orphans: 3;
    }
}
