/* Additional custom styles for BuniHub theme */

/* Smooth transitions */
.slide {
    transition: opacity 0.5s ease-in-out;
}

/* Widget enhancements */
.widget {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.widget:hover {
    transform: translateY(-2px);
}

/* Search form animations */
.search-form-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay {
    transition: all 0.3s ease;
}

/* Responsive improvements */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .main-content {
        gap: 20px;
    }
}