/* ============================================
   PRINT STYLESHEET
   Optimiert für Druckansicht
   ============================================ */

@media print {
    /* Grundlegende Reset */
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Header & Navigation ausblenden */
    header,
    nav,
    .header-minimal,
    .nav-minimal,
    .menu-toggle,
    .scroll-progress,
    .page-loader,
    .breadcrumbs,
    .cookie-banner,
    .whatsapp-float,
    .lightbox,
    #webgl-canvas {
        display: none !important;
    }
    
    /* Body & Container */
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container-fluid {
        max-width: 100%;
        padding: 0;
    }
    
    /* Typografie */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: #000;
        font-weight: bold;
    }
    
    .hero-main-title,
    .section-title-emotional {
        font-size: 24pt;
        margin-bottom: 12pt;
    }
    
    /* Absätze */
    p {
        orphans: 3;
        widows: 3;
        page-break-inside: avoid;
    }
    
    /* Links */
    a {
        color: #000;
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }
    
    /* Bilder */
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
        page-break-after: avoid;
    }
    
    /* Portfolio Grid */
    .portfolio-grid-modern {
        display: block !important;
    }
    
    .portfolio-item-modern {
        page-break-inside: avoid;
        margin-bottom: 20pt;
        border: 1px solid #ccc;
        padding: 10pt;
    }
    
    /* Sections */
    section {
        page-break-inside: avoid;
        margin-bottom: 30pt;
    }
    
    /* Buttons & CTAs */
    .cta-primary,
    .whatsapp-cta-button,
    .instagram-link-below {
        display: none !important;
    }
    
    /* Footer */
    footer {
        margin-top: 40pt;
        padding-top: 20pt;
        border-top: 1px solid #ccc;
        font-size: 10pt;
    }
    
    /* Seitenumbrüche */
    .page-break {
        page-break-before: always;
    }
    
    /* Keine Animationen beim Drucken */
    * {
        animation: none !important;
        transition: none !important;
    }
    
    /* Kontakt-Informationen */
    .contact-content-centered {
        text-align: left;
    }
    
    /* Stats */
    .stats-minimal {
        display: flex;
        justify-content: space-around;
        margin: 20pt 0;
    }
    
    .stat-minimal {
        text-align: center;
    }
    
    .stat-value {
        font-size: 24pt;
        font-weight: bold;
    }
    
    .stat-label {
        font-size: 10pt;
        margin-top: 5pt;
    }
}

