/* Custom styles for Bourbon Street Sports Bar */

/* Smooth focus styles */
a:focus-visible, button:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: #fbbf24;
    color: #500724;
}

/* Body base */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Image hover effects */
img {
    transition: transform 0.6s ease;
}

/* Card hover glow */
.group:hover .group-hover\:bg-amber-500\/20 {
    background-color: rgba(251, 191, 36, 0.2);
}

/* Reduce 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;
    }
    
    img {
        transition: none;
    }
    
    .hover\:scale-105:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    nav, .reveal, #menuBtn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
