/* Taqueria La Fondita — Custom Styles */

/* Base styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 80px;
}

body {
    background-color: #050303;
    color: #e5e7eb;
}

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

/* Smooth focus */
a:focus-visible, button:focus-visible {
    outline: 2px solid #d4a843;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Image loading placeholder */
img {
    background-color: #0f0a0a;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0707;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7a1717, #5c1212);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9f1b1b, #7a1717);
}

/* Burgundy text utilities */
.text-burgundy-400 {
    color: #e97070;
}

/* Gold utilities */
.text-gold-gradient {
    background: linear-gradient(135deg, #f5d98e 0%, #d4a843 50%, #e8c460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    .img-zoom img {
        transition: none;
    }
    .card-hover {
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
}
