/* 
 * El Paseo Cafe Custom Styles
 * Minimalist, Thin, Elegant
 */

/* Base Reset & Typography */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Subtle floating effect for hero cards */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.delay-200 { animation-delay: 1s; }
.delay-300 { animation-delay: 2s; }

/* Thin Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f4;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #4A2C4A;
}

/* Selection Color */
::selection {
    background: #F3E5F3;
    color: #2D1B2E;
}
