/* Custom styles and overrides */

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.2s ease-in-out;
}

/* Custom focus styles for accessibility */
*:focus-visible {
    outline: 3px solid #b53636;
    outline-offset: 2px;
}

/* Enhanced hover effects for cards */
.group:hover .group-hover\\:scale-110 {
    transform: scale(1.1);
}

/* Animation for floating badge */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Apply float animation to badge if needed */
.floating-badge {
    animation: float 3s ease-in-out infinite;
}

/* Print styles */
@media print {
    nav, .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    a {
        text-decoration: underline;
        color: black !important;
    }
}

/* 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;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (forced-colors: active) {
    .bg-burgundy-800 {
        background-color: ButtonText;
    }
    
    .text-burgundy-50 {
        color: ButtonText;
    }
}
