/**
 * BH Maat Berekenen Online - Print Stylesheet
 * Version: 1.0.0
 * Description: Optimized styles for printing
 */

@media print {
    /* Hide non-essential elements */
    .site-header,
    .main-nav,
    .mobile-menu-toggle,
    .breadcrumbs,
    .cta-buttons,
    .share-section,
    .share-buttons,
    .ad-container,
    .cookie-banner,
    .site-footer,
    .internal-links {
        display: none !important;
    }
    
    /* Reset colors for print */
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Typography */
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 24pt;
        page-break-after: avoid;
    }
    
    h2 {
        font-size: 18pt;
        page-break-after: avoid;
    }
    
    h3 {
        font-size: 14pt;
        page-break-after: avoid;
    }
    
    /* Links */
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }
    
    /* Page breaks */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    img, table, figure {
        page-break-inside: avoid;
    }
    
    /* Tables */
    table {
        border-collapse: collapse;
        width: 100%;
    }
    
    th, td {
        border: 1pt solid black;
        padding: 8pt;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Page margins */
    @page {
        margin: 2cm;
    }
    
    /* Content */
    main {
        padding: 0;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}
