/* Print Styles */
@media print {
    :root {
        --bg-primary: #FFFFFF;
        --bg-secondary: #F9FAFB;
        --text-primary: #000000;
        --text-secondary: #333333;
        --color-primary: #000000;
        --color-secondary: #333333;
    }
    
    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .nav,
    .hero-visual,
    .floating-card,
    .contact-actions,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-name {
        font-size: 2.5rem;
        -webkit-text-fill-color: initial;
        color: var(--text-primary);
    }
    
    .hero-role {
        font-size: 1.5rem;
    }
    
    section {
        padding: 1.5rem 0;
        page-break-inside: avoid;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .skills-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .portfolio-item {
        page-break-inside: avoid;
    }
    
    .btn {
        display: none;
    }
    
    a {
        color: var(--text-primary);
        text-decoration: none;
    }
    
    .container {
        padding: 0 1rem;
    }
}


