/* Custom styles for Steel Curtain Lounge */

/* Ensure proper box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Custom selection color */
::selection {
    background: #a32c2c;
    color: white;
}

/* Focus visible styles */
:focus-visible {
    outline: 3px solid #a32c2c;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .float-slow,
    .float-medium,
    .float-fast {
        animation: none;
    }
    
    nav {
        display: none;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Touch device optimizations */
@media (hover: none) {
    .product-card:hover {
        transform: none;
    }
    
    .stat-card:hover {
        transform: none;
    }
}
