/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom Animation for Floating Button */
@keyframes bounce-slight {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.animate-bounce-slight {
    animation: bounce-slight 2s infinite;
}

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

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

::-webkit-scrollbar-thumb {
    background: #db2777; /* Pink-600 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #be185d; /* Pink-700 */
}

/* Detail summary marker custom style */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* Modal Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

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