/**
 * Lynxx Platform Coming Soon Pages - Shared CSS
 * Additional custom styles beyond Tailwind CSS
 * © 2025 Avyrox Solutions
 */

/* 
 * Since we're using Tailwind CSS for all styling, minimal additional CSS is needed.
 * This file serves as a placeholder for any future custom styles that may be required.
 */

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus visibility for accessibility */
*:focus-visible {
    outline: 2px solid #23858e;
    outline-offset: 2px;
}

/* Custom animation for email form submission success */
.form-success-animation {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Ensure proper font loading and fallbacks */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Print styles for better email sharing */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
    }
    
    .bg-gradient-to-br {
        background: white !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bg-white\/70,
    .bg-white\/80 {
        background-color: white !important;
        border: 2px solid #23858e !important;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}