/* Custom Styles for Canaima Venezuelan Delights */

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

/* Custom Utilities */
.text-shadow {
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

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

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

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

/* Geometric Hover Effects */
.hover-geometric:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px 0px rgba(10, 25, 47, 0.2);
}

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
}

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

::-webkit-scrollbar-track {
    background: #0A192F;
}

::-webkit-scrollbar-thumb {
    background: #64FFDA;
    border-radius: 5px;
}

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