/* Custom styles for El Ranchero Cafe */

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

/* Image hover zoom effect */
img {
    transition: transform 0.7s ease;
}

/* Selection color */
::selection {
    background-color: rgba(212, 168, 75, 0.3);
    color: #faf9f6;
}

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

/* Navbar glass effect */
.navbar-scrolled {
    background: rgba(2, 28, 19, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Gold shimmer animation for special elements */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Subtle pulse for CTA buttons */
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 75, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(212, 168, 75, 0); }
}

/* Reduce motion for accessibility */
@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;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    
    img {
        transition: none !important;
    }
}
