/* Custom CSS for Rotary Club Website */
/* This file is for overrides and custom animations that Tailwind does not handle out of the box */

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #012169; /* Rotary Blue */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #005baa; /* Rotary Light Blue */
}

/* Image Hover Effects for Gallery */
.gallery-image {
    transition: transform 0.3s ease, filter 0.3s ease;
}
.gallery-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Fade in animation class */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
