/* Custom styles for Antojitos Y Nieves Jaqui */

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0c0a09; /* stone-950 */
    color: #e7e5e4; /* stone-200 */
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Glassmorphism effect for navbar */
.glass-nav {
    background: rgba(12, 10, 9, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1c1917; /* stone-900 */
}

::-webkit-scrollbar-thumb {
    background: #d97706; /* amber-600 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59e0b; /* amber-500 */
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

/* Mobile menu transitions */
#mobile-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu.opacity-0 {
    visibility: hidden;
    pointer-events: none;
}

#mobile-menu.opacity-100 {
    visibility: visible;
    pointer-events: auto;
}

/* Hover effects for menu items */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}
