/* Custom styles for the accounting landing page */
/* Most styling is handled by Tailwind CSS, this file is for any custom overrides */

/* Gradient backgrounds matching Instagram aesthetic */
.bg-gradient-navy {
    background: linear-gradient(to bottom, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
}

.bg-gradient-navy-reverse {
    background: linear-gradient(to top, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
}

.bg-gradient-blue {
    background: linear-gradient(to bottom, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
}

.bg-gradient-blue-light {
    background: linear-gradient(to bottom, #3b82f6 0%, #60a5fa 50%, #dbeafe 100%);
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(to right, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced shadows for depth */
.shadow-gradient {
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.3), 0 8px 10px -6px rgba(30, 58, 138, 0.2);
}

/* Custom focus styles for better accessibility */
.focus\:ring-blue-300:focus {
    --tw-ring-color: rgb(147 197 253 / 0.5);
}

/* Smooth transitions for interactive elements */
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::before {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bg-gray-50 {
        background-color: #ffffff;
    }
    
    .text-gray-600 {
        color: #000000;
    }
    
    .border-gray-300 {
        border-color: #000000;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Note: This is optional as the design is primarily light mode */
    /* Uncomment and customize if dark mode is desired */
    /*
    .dark {
        --tw-bg-opacity: 1;
        background-color: rgb(17 24 39 / var(--tw-bg-opacity));
        color: rgb(243 244 246 / var(--tw-text-opacity));
    }
    */
}
