/* Custom Styles for Gus Latin Cafe */

/* Base Typography */
body {
    font-family: 'Syne', sans-serif;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F5F0E6;
}
::-webkit-scrollbar-thumb {
    background: #C05621;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3D3D3D;
}

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

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

/* Utility */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
