/* ==========================================
   DEPLOYMENT & CROSS-BROWSER FIXES
   ========================================== 
   
   This file contains general fixes for deployment.
   Hero image styling is now handled by Tailwind CSS.
   ========================================== */

/* General image fixes */
img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Prevent FOUC (Flash of Unstyled Content) */
html {
    visibility: visible;
    opacity: 1;
}

/* Fix for Tailwind CDN loading issues */
body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
