/* Custom Styles for Lush Lashes by Becky */

/* Smooth Scroll behavior is handled by Tailwind's scroll-smooth on html */

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

.animate-float {
    animation: float 4s ease-in-out infinite;
}

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

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

::-webkit-scrollbar-thumb {
    background: #84243b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6f2136;
}

/* Selection Color */
::selection {
    background-color: #fce7eb;
    color: #6f2136;
}

/* Subtle Pattern for Backgrounds */
.bg-pattern {
    background-image: radial-gradient(#fce7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

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

#mobile-menu.hidden {
    transform: scaleY(0);
    opacity: 0;
}

#mobile-menu:not(.hidden) {
    transform: scaleY(1);
    opacity: 1;
}
