/* Money Audit Page Styles */

/* Action Items Checkmarks */
.action-items ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

/* Week Block Arrows */
.week-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #be4afc;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Hero Title */
    .hero-title {
        font-size: 32px !important;
    }
    
    .hero-subtitle {
        font-size: 20px !important;
    }
    
    /* Stats Grid - Stack on mobile */
    .hero-stats {
        grid-template-columns: 1fr !important;
    }
    
    /* Reality Grid - Stack on mobile */
    .reality-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Resources Grid - Stack on mobile */
    .resources-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Drain Card Number - Adjust position */
    .drain-number {
        font-size: 28px !important;
        top: 16px !important;
        right: 16px !important;
    }
    
    /* Drain Card Title - Less padding */
    .drain-card h3 {
        font-size: 20px !important;
        padding-right: 48px !important;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 24px !important;
    }
    
    /* Phase Headers */
    .phase-header h3 {
        font-size: 22px !important;
    }
    
    /* Week Block Titles */
    .week-block h4 {
        font-size: 16px !important;
    }
}

/* Print Styles */
@media print {
    /* Remove shadows for print */
    .drain-card,
    .stat-card,
    .reality-card,
    .timeline-phase,
    .resource-category {
        box-shadow: none !important;
    }
    
    /* Page breaks */
    .drain-card,
    .timeline-phase,
    .resource-category {
        page-break-inside: avoid;
    }
    
    .section-header {
        page-break-after: avoid;
    }
    
    /* Ensure backgrounds print */
    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* List Item Styling */
ul li {
    position: relative;
}

/* Better Typography */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Link Hover Effects */
a {
    transition: color 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

