/* Print Stylesheet for Hillhouse Watch */

@media print {
    /* Reset colors to black and white */
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Page setup */
    @page {
        margin: 2cm;
        size: A4;
    }
    
    /* Hide navigation and interactive elements */
    .site-nav,
    .nav-toggle,
    .footer-contact-section,
    .contact-form,
    .form-submit,
    button,
    input,
    textarea {
        display: none !important;
    }
    
    /* Hide decorative elements */
    .hero::before,
    .section.dark::before,
    .gradient-bg {
        display: none !important;
    }
    
    /* Typography adjustments */
    body {
        font-family: "Times New Roman", serif !important;
        font-size: 12pt !important;
        line-height: 1.4 !important;
    }
    
    h1 {
        font-size: 18pt !important;
        margin-bottom: 12pt !important;
        page-break-after: avoid;
    }
    
    h2 {
        font-size: 16pt !important;
        margin: 16pt 0 8pt 0 !important;
        page-break-after: avoid;
    }
    
    h3 {
        font-size: 14pt !important;
        margin: 12pt 0 6pt 0 !important;
        page-break-after: avoid;
    }
    
    p {
        margin: 8pt 0 !important;
        orphans: 3;
        widows: 3;
    }
    
    /* Links */
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
    
    /* Show URLs for external links */
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
    
    /* Tables */
    table {
        border-collapse: collapse !important;
        width: 100% !important;
        margin: 12pt 0 !important;
    }
    
    th, td {
        border: 1pt solid #000 !important;
        padding: 4pt 8pt !important;
        text-align: left !important;
    }
    
    th {
        background: #f0f0f0 !important;
        font-weight: bold !important;
    }
    
    /* Lists */
    ul, ol {
        margin: 8pt 0 !important;
        padding-left: 20pt !important;
    }
    
    li {
        margin: 4pt 0 !important;
    }
    
    /* Page breaks */
    .page-break-before {
        page-break-before: always;
    }
    
    .page-break-after {
        page-break-after: always;
    }
    
    .no-page-break {
        page-break-inside: avoid;
    }
    
    /* Footer info - keep minimal footer */
    .footer-info {
        margin-top: 20pt !important;
        padding-top: 8pt !important;
        border-top: 1pt solid #000 !important;
        font-size: 10pt !important;
    }
    
    .build-version {
        display: none !important;
    }
    
    /* Layout adjustments */
    .container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .section {
        padding: 0 !important;
        margin: 12pt 0 !important;
    }
    
    /* Content sections */
    .hero {
        padding: 0 !important;
        background: none !important;
    }
    
    .hero-title {
        font-size: 20pt !important;
        margin: 0 0 12pt 0 !important;
    }
    
    .hero-subtitle {
        font-size: 14pt !important;
        margin: 0 0 16pt 0 !important;
    }
    
    /* Statistics and data */
    .stats-grid,
    .data-grid {
        display: block !important;
    }
    
    .stat-item,
    .data-item {
        margin: 8pt 0 !important;
        border: 1pt solid #000 !important;
        padding: 8pt !important;
    }
    
    .stat-number {
        font-size: 16pt !important;
        font-weight: bold !important;
    }
}