/* =============================================
   C26 Website - Print Stylesheet
   ============================================== */

@media print {
    /* Reset colors for print */
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Hide non-essential elements */
    header,
    footer,
    nav,
    .skip-link,
    .gradient-shape,
    .bg-grid-pattern,
    #mobile-menu,
    #mobile-menu-btn,
    .btn-primary,
    .btn-secondary,
    .btn-teal,
    form,
    .animate-bounce,
    [data-aos] {
        display: none !important;
    }

    /* Show main content */
    main {
        display: block !important;
    }

    /* Typography adjustments */
    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1 {
        font-size: 24pt;
        margin-bottom: 12pt;
    }

    h2 {
        font-size: 18pt;
        margin-bottom: 10pt;
        page-break-after: avoid;
    }

    h3 {
        font-size: 14pt;
        margin-bottom: 8pt;
    }

    p {
        margin-bottom: 8pt;
        orphans: 3;
        widows: 3;
    }

    /* Links */
    a {
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        font-weight: normal;
    }

    a[href^="mailto"]:after,
    a[href^="tel"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }

    /* Page breaks */
    section {
        page-break-inside: avoid;
    }

    /* Images */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    /* Cards - linearize for print */
    .service-card,
    .product-card,
    .value-card {
        display: block;
        border: 1px solid #ccc;
        padding: 10pt;
        margin-bottom: 10pt;
        page-break-inside: avoid;
    }

    /* Grid to single column */
    .grid {
        display: block !important;
    }

    /* Container */
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* Footer info for print */
    body::after {
        content: "C26 s.r.o. | www.c26.cz | info@c26.cz | +420 605 410 915";
        display: block;
        margin-top: 20pt;
        padding-top: 10pt;
        border-top: 1px solid #ccc;
        font-size: 10pt;
        text-align: center;
    }
}
