 @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }
        
        .nav-link-hover-effect::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #d4af37;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link-hover-effect:hover::after {
            width: 100%;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .member-image-hover {
            transition: transform 0.5s ease;
        }
        
        .member-card:hover .member-image-hover {
            transform: scale(1.05);
        }
        
        .event-image-hover {
            transition: transform 0.5s ease;
        }
        
        .event-card:hover .event-image-hover {
            transform: scale(1.05);
        }
         body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f8f9fa;
        }
        .navbar {
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.9) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .gallery-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gallery-item:hover .image-overlay {
            opacity: 1;
        }
        .modal {
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
