/* 
 * Mari's Mexican Food & Gorditas - Custom Styles
 * Premium Dark Luxury Theme
 */

:root {
    --luxury-black: #050806;
    --luxury-dark: #0a140e;
    --luxury-green: #064e3b;
    --luxury-gold: #d4af37;
    --luxury-gold-light: #f3e5ab;
    --luxury-cream: #fdfbf7;
}

/* 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;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: var(--luxury-black);
}

::-webkit-scrollbar-thumb {
    background: var(--luxury-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--luxury-gold);
}

/* Gold Gradient Text Utility */
.text-transparent.bg-clip-text.bg-gold-gradient {
    background-image: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #b4941f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Image Hover Effects */
img {
    max-width: 100%;
    height: auto;
}

/* Form Focus States */
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Gold Button Glow */
button:hover,
a:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem;
    }
}

@media (min-width: 769px) {
    .font-serif {
        font-size: 4rem;
    }
}
