File size: 592 Bytes
163abef
710f15a
 
 
 
 
 
 
 
163abef
710f15a
 
 
 
163abef
710f15a
 
163abef
710f15a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

// Google Search functionality would go here
document.addEventListener('DOMContentLoaded', function() {
    // Search box focus effects
    const searchInput = document.querySelector('input[type="text"]');
    if (searchInput) {
        searchInput.addEventListener('focus', function() {
            this.style.boxShadow = '0 1px 6px rgba(32, 33, 36, 0.28)';
        });
        
        searchInput.addEventListener('blur', function() {
            this.style.boxShadow = '';
        });
    }

    // Initialize feather icons
    if (window.feather) {
        feather.replace();
    }
});