/* 
    Custom Styles for La Chickytita 
    Overrides and enhancements to Tailwind
*/

html {
    scroll-behavior: smooth;
}

body {
    /* Prevent horizontal scroll on mobile */
    overflow-x: hidden;
}

/* Subtle fade-in for elements */
.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);
}

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

::-webkit-scrollbar-track {
    background: #f5f5f4; /* stone-100 */
}

::-webkit-scrollbar-thumb {
    background: #831443; /* plum-800 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #500724; /* plum-950 */
}

/* Typography adjustments */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Lato', sans-serif;
}

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

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