/* Print-specific stylesheet for Rampushpa Agro Processing Company Profile */

@page {
    size: A4 portrait;
    margin: 0;
}

@media print {
    /* Reset margins and set print colors */
    html, body {
        width: 210mm !important;
        height: 297mm !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        color: #111827 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        font-size: 11pt !important;
        font-family: 'Inter', sans-serif;
    }

    /* Hide all UI and web navigation elements */
    .top-action-bar,
    .page-navigator,
    .bottom-dock,
    .main-header,
    .main-footer,
    .whatsapp-float,
    button,
    .no-print,
    .back-btn,
    .toast-notification {
        display: none !important;
    }

    /* Page container setup */
    .page-container {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        background: none !important;
        gap: 0 !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Brochure Page settings */
    .brochure-page {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 210mm !important;
        height: 297mm !important;
        margin: 0 !important;
        padding: 20mm !important; /* Printed page margin */
        box-shadow: none !important;
        border-radius: 0 !important;
        background: #ffffff !important;
        page-break-after: always !important;
        break-after: page !important;
        position: relative !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Cover pages should print edge-to-edge if styled with background images/colors */
    .brochure-page.cover-page {
        padding: 0 !important;
    }

    /* Force dark mode printing off to save ink and look professional */
    body.dark-mode {
        background: #ffffff !important;
        color: #111827 !important;
    }
    
    body.dark-mode .brochure-page {
        background: #ffffff !important;
        color: #111827 !important;
    }
    
    body.dark-mode h1,
    body.dark-mode h2,
    body.dark-mode h4,
    body.dark-mode h5,
    body.dark-mode h6,
    body.dark-mode .company-title {
        color: #019340 !important; /* Green */
    }
    
    body.dark-mode h3 {
        color: #5BA7D1 !important; /* Blue */
    }
    
    body.dark-mode p,
    body.dark-mode li {
        color: #374151 !important;
    }

    body.dark-mode .page-border {
        border-color: #c5a880 !important;
    }
}
