/* Custom Styles for Salvadorean Family Restaurant */

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

body {
    /* Fallback font */
    font-family: 'Lato', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #1c1917;
}

::-webkit-scrollbar-thumb {
    background: #4a0404;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gold Gradient Text Utility */
.text-gradient-gold {
    background: linear-gradient(to right, #fcd34d, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 300px;
}

/* Form Focus Effects */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 1px #f59e0b;
}

/* Button Hover Effects */
button, a.button {
    transition: all 0.3s ease;
}

/* Decorative Elements */
.gold-border {
    border: 1px solid rgba(251, 191, 36, 0.3);
}
