
/* ===========================
   RESUME PAGE STYLES
   =========================== */

/* The "Digital Paper" effect for web view */
.resume-paper {
    transition: all 0.3s ease;
}

/* Custom list bullet colors using the accent red */
.resume-paper ul.list-disc > li::marker {
    color: var(--accent);
}

/* Print Styles - Overrides everything to be clean white paper */
@media print {
    body {
        background-color: #ffffff !important;
        color: #000000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Hide Navigation, Footer, and Print Buttons */
    .no-print, nav, footer, #theme-toggle {
        display: none !important;
    }

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

    .resume-paper {
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: #ffffff !important;
        max-width: 100% !important;
    }

    /* Ensure text is black/dark gray for readability */
    h1, h2, h3, h4, p, span, div, a {
        color: #000000 !important;
        text-shadow: none !important;
    }

    .text-text-muted {
        color: #444444 !important;
    }

    .text-accent {
        color: #b81a1d !important; /* Keep the red accent for headers if desired, or set to black */
    }

    /* Remove backgrounds */
    .bg-card-bg, .bg-section-bg, .bg-bg {
        background-color: transparent !important;
    }

    /* Borders */
    .border-gray-200, .dark\:border-gray-800 {
        border-color: #eeeeee !important;
    }

    /* Page Breaks */
    h3, h4 {
        break-after: avoid;
    }
    
    section {
        break-inside: avoid;
    }
}