/* Print Stylesheet for The Fuzion Group */

/* Hide non-essential elements when printing */
@media print {
    /* Hide navigation, buttons, and interactive elements */
    .navbar,
    .menu-toggle,
    .hero-buttons,
    .btn,
    .dropdown-menu,
    .linkedin-card,
    #hubspot-form,
    .footer {
        display: none !important;
    }
    
    /* Remove backgrounds and shadows for cleaner printing */
    * {
        background: white !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Ensure text is black for printing */
    body {
        color: #000 !important;
        background: white !important;
        font-size: 12pt;
        line-height: 1.5;
    }
    
    /* Page setup */
    @page {
        margin: 2cm;
    }
    
    /* Headings */
    h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
        page-break-after: avoid;
        margin-top: 1em;
        margin-bottom: 0.5em;
    }
    
    /* Links */
    a {
        color: #000 !important;
        text-decoration: underline;
    }
    
    /* Show URLs for links */
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
        color: #666;
    }
    
    /* Don't show URLs for anchor links */
    a[href^="#"]:after {
        content: "";
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
    }
    
    /* Sections */
    section {
        page-break-inside: avoid;
        margin-bottom: 1em;
    }
    
    /* Service cards and detail cards */
    .service-card,
    .service-detail-card {
        page-break-inside: avoid;
        border: 1px solid #ccc;
        padding: 1em;
        margin-bottom: 1em;
    }
    
    /* Service badges */
    .service-badge {
        border: 1px solid #ccc;
        display: inline-block;
        padding: 0.25em 0.5em;
        margin: 0.25em;
        background: white !important;
    }
    
    /* Container */
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    /* Hero section */
    .hero {
        min-height: auto !important;
        padding: 1em 0 !important;
    }
    
    /* Prevent page breaks in awkward places */
    p, li {
        orphans: 3;
        widows: 3;
    }
    
    /* Footer info at bottom */
    .footer-bottom {
        display: block !important;
        margin-top: 2em;
        padding-top: 1em;
        border-top: 1px solid #ccc;
        font-size: 0.9em;
        color: #666 !important;
    }
    
    /* Contact section */
    .contact-info {
        margin-bottom: 1em;
    }
    
    /* About section */
    .about-content {
        page-break-inside: avoid;
    }
}

