﻿/* 
 * CV CSS for Abdul Gofur Portfolio
 * Print-optimized styles
 */

@page {
    size: A4;
    margin: 0.75in;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11pt;
    line-height: 1.4;
    color: #2d3748;
    background: white;
}

.cv-container {
    max-width: 210mm;
    margin: 0 auto;
    background: white;
}

.cv-header {
    background: linear-gradient(135deg, #00d4aa 0%, #4f46e5 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.cv-header h1 {
    font-size: 28pt;
    font-weight: 700;
    margin-bottom: 10px;
}

.cv-content {
    padding: 25px 30px;
}

.cv-section {
    margin-bottom: 25px;
}

.cv-section h2 {
    font-size: 14pt;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 15px;
    border-bottom: 2px solid #00d4aa;
    padding-bottom: 8px;
}

/* Print Button */
.print-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4f46e5;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.2s ease;
}

.print-button:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

@media print {
    .print-button {
        display: none !important;
    }
    
    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
