/* Taquería San Jose — Custom Styles */

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Gold gradient text utility */
.gold-gradient {
    background: linear-gradient(135deg, #d97706, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Selection color */
::selection {
    background: rgba(217, 119, 6, 0.3);
    color: #faf5ff;
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Custom gold border animation on hover */
.gold-border-glow:hover::before {
    background: linear-gradient(135deg, #fbbf24, #7e22ce, #fbbf24);
    transition: background 0.5s ease;
}

/* Subtle pulse for decorative dots */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Mobile menu link hover */
.mobile-link:hover {
    padding-left: 8px;
}

/* 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;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    .hero-gradient, .pattern-overlay, nav, #mobile-menu {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .font-display {
        font-size: 1.75rem;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    #hero {
        min-height: auto;
        padding: 80px 1rem;
    }
}
