/**
 * Stili per la stampa dei necrologi
 * Ottimizzato per stampa su carta A4
 */

@media print {
    /* Reset generale */
    body {
        margin: 0;
        padding: 15mm;
        font-family: Georgia, serif;
        font-size: 11pt;
        line-height: 1.5;
        color: #000 !important;
        background: #fff !important;
    }

    /* ===== NASCONDI HEADER/FOOTER WORDPRESS E NAVIGAZIONE ===== */
    header,
    footer,
    .site-header,
    .site-footer,
    .entry-header,
    .entry-footer,
    nav,
    .navigation,
    #wpadminbar,
    .admin-bar,

    /* Tab navigation */
    .necrologi-tabs-nav,
    .necrologi-tab-links-front,

    /* Form e pulsanti */
    form,
    button,
    input,
    textarea,
    select,
    .necrologi-condolences-form,
    .necrologi-photos-form,

    /* Social e share */
    .necrologi-share-box,
    .necrologi-share-buttons,
    .necrologi-print-btn,
    .necrologi-qrcode-box,

    /* Link utili e altri tab */
    .necrologi-links-box,
    .necrologi-additional-links,
    #tab-links,
    #tab-photos,
    #tab-ceremony,
    #tab-program {
        display: none !important;
    }

    /* ===== LAYOUT NECROLOGIO ===== */

    .necrologi-single-wrapper {
        display: block !important;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Header con nome */
    .necrologi-single-header {
        text-align: center;
        margin-bottom: 10mm;
        page-break-after: avoid;
    }

    .necrologi-single-title {
        font-size: 22pt;
        font-weight: bold;
        margin: 0 0 3mm 0;
        color: #000 !important;
    }

    .necrologi-single-dates {
        font-size: 13pt;
        color: #333 !important;
        margin: 0;
    }

    /* ===== SIDEBAR CON FOTO (a destra) ===== */
    .necrologi-single-sidebar {
        float: right;
        width: 30%;
        margin-left: 5%;
        margin-bottom: 10mm;
    }

    /* Nascondi tutto nella sidebar tranne la foto */
    .necrologi-single-sidebar > *:not(.necrologi-photo-box) {
        display: none !important;
    }

    .necrologi-photo-box {
        display: block !important;
        margin-bottom: 5mm;
    }

    .necrologi-photo-box img,
    .necrologi-single-photo {
        display: block !important;
        width: 100%;
        height: auto;
        border: 2px solid #333;
    }

    .necrologi-no-photo {
        display: none !important;
    }

    /* ===== CONTENUTO PRINCIPALE ===== */
    .necrologi-single-main {
        display: block;
        overflow: visible;
    }

    /* Nascondi tutti i tab tranne necrologio e condoglianze */
    .necrologi-tab-content-front {
        display: none !important;
    }

    #tab-necrologio,
    #tab-condolences {
        display: block !important;
    }

    /* Tab necrologio */
    #tab-necrologio h2 {
        font-size: 16pt;
        margin: 5mm 0;
        color: #000 !important;
    }

    #tab-necrologio .necrologi-biography {
        text-align: justify;
        margin: 5mm 0;
        line-height: 1.6;
    }

    #tab-necrologio .necrologi-biography p {
        margin-bottom: 3mm;
    }

    /* Informazioni cerimonia */
    #tab-necrologio .necrologi-ceremony-info {
        clear: both;
        margin-top: 10mm;
        padding: 5mm;
        border: 2px solid #333;
        page-break-inside: avoid;
    }

    #tab-necrologio .necrologi-ceremony-info h3 {
        margin: 0 0 3mm 0;
        font-size: 14pt;
        text-align: center;
        color: #000 !important;
    }

    /* ===== CONDOGLIANZE (pagina separata) ===== */
    #tab-condolences {
        page-break-before: always;
        clear: both;
    }

    #tab-condolences h3 {
        font-size: 16pt;
        margin: 0 0 5mm 0;
        border-bottom: 2px solid #333;
        padding-bottom: 2mm;
        color: #000 !important;
    }

    #tab-condolences .necrologi-condolences-list {
        margin-top: 5mm;
    }

    #tab-condolences .necrologi-condolence-item {
        margin-bottom: 5mm;
        padding: 3mm;
        padding-left: 5mm;
        border-left: 3px solid #999;
        page-break-inside: avoid;
    }

    #tab-condolences .necrologi-condolence-author {
        font-weight: bold;
        font-size: 11pt;
        margin-bottom: 2mm;
    }

    #tab-condolences .necrologi-condolence-message {
        font-style: italic;
        margin: 2mm 0;
    }

    #tab-condolences .necrologi-condolence-date {
        font-size: 9pt;
        color: #666 !important;
        margin-top: 2mm;
    }

    /* ===== EVITA INTERRUZIONI DI PAGINA ===== */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    p {
        orphans: 3;
        widows: 3;
    }

    img {
        page-break-inside: avoid;
    }

    /* ===== FORZA COLORI STAMPA ===== */
    * {
        color: #000 !important;
        background: #fff !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a {
        text-decoration: none !important;
        color: #000 !important;
    }
}
