/* Print Stylesheet for Christ Church Rector Search */

@media print {

    /* Hide non-essential elements */
    header,
    footer,
    .cc-nav,
    .back-to-top,
    #menuBtn,
    #bottomCards,
    .scroll-progress {
        display: none !important;
    }

    /* Reset colors for print */
    body {
        background: white !important;
        color: black !important;
    }

    /* Simplify layout */
    .cc-shell {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .cc-panel {
        border: none !important;
        box-shadow: none !important;
        break-inside: avoid;
    }

    /* Hero section adjustments */
    .parallax-hero {
        height: auto !important;
        max-height: 200px;
        break-inside: avoid;
    }

    /* Improve link visibility */
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    /* Page breaks */
    h1,
    h2,
    h3 {
        break-after: avoid;
        page-break-after: avoid;
    }

    /* Avoid breaking images */
    img {
        max-width: 100% !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    /* Show page URL at bottom */
    @page {
        margin: 1.5cm;
    }

    /* Contact info visibility */
    .cc-footer {
        border-top: 1px solid #000;
        padding-top: 1em;
    }
}